Main > Free Download Search >

Free cheat software for linux

cheat

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 44
Gambling-Cheat 1.0

Gambling-Cheat 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-06 License: Freeware Price: Free
208 downloads
Roulette-Cheat 1.0

Roulette-Cheat 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-28 License: Freeware Price: Free
205 downloads
Roulette-Cheats 1.0

Roulette-Cheats 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-27 License: Freeware Price: Free
227 downloads
Online-Casino-Cheat 1.0

Online-Casino-Cheat 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-04 License: Freeware Price: Free
206 downloads
Cheating-Roulette 1.0

Cheating-Roulette 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-08 License: Freeware Price: Free
200 downloads
Roulette Cheat Guide 1.0

Roulette Cheat Guide 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-16 License: Freeware Price: Free
195 downloads
Online-Gambling-Cheat 1.0

Online-Gambling-Cheat 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-02 License: Freeware Price: Free
207 downloads
Tom the Tomato 2.0.1

Tom the Tomato 2.0.1


Tom the Tomato is a clone of Rainbow inslands. more>>
Tom the Tomato is a clone of Rainbow inslands.
Tom must jump higher and higher to survive. Graphic is simple - hand draw.
Enhancements:
- Higher RESOLUTION (320x240 Pixel instead of 256x192!)
- More COLORS (Full 8-bit mode, 262144 color palette instead of 256 colors!)
- More NOISE (New 8-bit square-wave generator! [replaced with a sample in 2.01])
- True programmers` art GRAPHICS (...!)
- True programmers` art MUSIC (turn off speakers!)
- Bounding box COLLISION (with big bounding boxes!)
- 4-way SCROLLING (and simulated 8-way scrolling!)
- 10 LEVELS (hard to beat!)
- unique TILES in every level (with transparent background!)
- 4 unique ENEMIES (animated!)
- 1 PARTICLE effect (rain drops!)
- 1 SPECIAL EFFECT (tainted sprites in water!)
- 1 SOUND effect (might interfere with music though [not anymore in 2.01]!)
- RECORD/PLAYBACK possibilities (9 demo recordings included!)
- Unlimited RESTARTS (instead of load/save cheating!)
- CHEAT CODE (skip levels by pressing IDLEV times during ready screen!)
- Full C++ SOURCE CODE provided (somewhat obfuscated, and protected by GPL!)
- Uses the ALLEGRO library (therefore running on lots of platforms!)
- Uses DUMB for music playback (as of version 2.01!)
<<less
Download (0.12MB)
Added: 2005-08-11 License: GPL (GNU General Public License) Price:
859 downloads
Fwctl 0.28

Fwctl 0.28


Fwctl is a Perl module to configure the Linux kernel packet filtering firewall. more>>
Fwctl is a Perl module to configure the Linux kernel packet filtering firewall.

SYNOPSIS

use Fwctl;

my $fwctl = new Fwctl( %opts );
$fwctl->dump_acct;
$fwctl->reset_fw;
$fwctl->configure;

Fwctl is a module to configure the Linux kernel packet filtering firewall using higher level abstraction than rules on input, output and forward chains. It supports masquerading and accounting as well.

Why Fwctl ? Well, say you are the kind of paranoid firewall administrator which likes his firewalls rules tight. Very tight. Say the kind, that likes to distinguish between a SYN and ACK packet when accepting a TCP connection (anybody configuring packet filters should care about that last point), or like to specify the interface name on each rules. (Whether this is really need, or such a stance is relevant, is not the point.) How would such an administrator proceed ? First of all you deny everything on all interfaces and on all chains (input, forward and output) and turn on logging. Now starting from this configuration (in which Fwctl puts the firewall on initialization), say you want to enable ping from the internal network to the internal ip. What rules do you need ? You need a rule on the input chain to accept the echo-request packet and a rule on the output chain to accept the echo-reply request. Right ? Well, what about the loopback. For sure, when we say from local net to local ip, this imply local ip to local ip ? Then you add a rule to the output chain with the loopback interface, and a rule on the input rule to the loopback chain. And we didnt even start forwarding yet ! Add masquerading to the lot and multi connections protocols like FTP and you got something unmanageable. So you start accepting things you shouldnt to get your job done and in the end your filters look like emmenthal.

Fwctl handles all the complexity of this, so that when you say

accept ftp -src FTP_PROXY -dst INTERNET -noport

you dont accept too much of what you didnt intend. (Well you just opened arbitrary TCP connections to unprivileged ports on the Internet from your proxy server, but thats because of the FTP protocol, not because your cheating on the firewall rules.)

Fwctl works with entity known as service. A service can be ftp, netbios, ping or anything else. The service abstraction handles all the communication necessary for that application. (The UDP and TCP communication in DNS, or the control, data and passive connections for FTP.)

Additionally, to handle all the special case with ANY specification, when the src of dst imply a local IP, or masquerading, in short for Fwctl to be able to deduce the interface implicated by the src and dst portion of a rules you need to provide it with your network topology. Fwctl must guess from your topology the routing decision that will be made in the kernel. In the best of worlds, Fwctl should contains the same routing algorithm as the one in the kernel. Well, it doesnt so if you are using fancy routing feature, Fwctl wont work. In fact, it can only handle something equivalent to simple static routing. You have been warned.

So in short, to configure your packet filters with Fwctl you need to
Define your network topology using the interfaces file.

(Optional) Define meaningful aliases for hosts and networks which are part of your configuration.

Implement your security policy using high level abstract rules in the rules file.
Finally, Fwctl is extensible. You can easily add services modules using the Fwctl::RuleSet module which contains all the primitive you need to handle all the special cases involved in the input, forward and output chain selection.

<<less
Download (0.078MB)
Added: 2007-05-11 License: Perl Artistic License Price:
896 downloads
scanmem 0.07

scanmem 0.07


scanmem is a debugging utility used to isolate the position of a variable in an executing program. more>>
scanmem is a debugging utility used to isolate the position of a variable in an executing program.
The project is similar to pokefinders used to cheat at games.
Enhancements:
- Performance improvements and reduced scan time, including miscellaneous improvements to various commands.
- A dejagnu test suite was started and the build process was autotooled.
- One serious bug where misaligned variables could potentially be missed by scanmem was fixed along with multiple minor bugs.
<<less
Download (0.004MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
872 downloads
Robo Hunt 0.1

Robo Hunt 0.1


Robo Hunt is an action game where you have to run for life and plutonium. more>>
Robo Hunt is an action game where you have to run for life and plutonium.

Take all plutonium and dont be caught. The robot hunters are smart and they do not cheat.

<<less
Download (0.12MB)
Added: 2005-11-23 License: GPL (GNU General Public License) Price:
1432 downloads
Unicode::Overload 0.01

Unicode::Overload 0.01


Unicode::Overload is a Perl source filter to implement Unicode operations. more>>
Unicode::Overload is a Perl source filter to implement Unicode operations.

SYNOPSIS

use charnames :full;
use Unicode::Overload (
"N{UNION}" => infix =>
sub { my %a = map{$_=>1}@{$_[0]};
my %b = map{$_=>1}@{$_[1]};
return keys(%a,$b); },
"N{SUPERSCRIPT TWO}" => postfix => sub { $_[0] ** 2 },
"N{NOT SIGN}" => prefix => sub { !$_[0] },
[ "N{LEFT FLOOR}", "N{RIGHT FLOOR}" ] => outfix =>
sub { POSIX::floor($_[0]) },
);

@union = (@a N{UNION @b); # Parentheses REQUIRED
die "Pythagoras was WRONG!" # Same here
unless sqrt((3)N{SUPERSCRIPT TWO} + (4)N{SUPERSCRIPT TWO}) == 5;
$b = N{NOT SIGN}($b); # Required here too
die "Fell through floor" # Balanced characters form their own parentheses
unless N{LEFT FLOOR}-3.2N{RIGHT FLOOR} == 4;

Allows you to declare your own Unicode operators and have them behave as prefix (like sigma or integral), postfix (like superscripted 2), infix (like union), or outfix (like the floor operator, with the L-like and J-like brackets).

To keep this document friendly to people without UTF-8 terminals, the N{} syntax for Unicode characters will be used throughout, but please note that the N{} characters can be replaced with the actual UTF-8 characters anywhere.
Also, please note that since Perl 5 doesnt support the notion of arbitrary operators, this module cheats and uses source filters to do its job. As such, all "operators" must have their arguments enclosed in parentheses. This limitation will be lifted when a better way to do this is found.

Also, note that since these arent "real" operators there is no way (at the moment) to specify precedence. All Unicode "operators" have the precedence (such as it is) of function calls, as they all get transformed into function calls inline before interpreting.

In addition, due to a weird unicode-related bug, only one character per operator is currently permitted. Despite behaving correctly elsewhere, substr() thinks that one character equals one byte inside Unicode::Overload .

Anyway, this module defines four basic types of operators. Prefix and infix should be familiar to most users of perl, as prefix operators are basically function calls without the parens. Infix operators are of course the familiar + etcetera.

The best analogy for postfix operators is probably the algebraic notation for squares. $a**2 is perls notation, ($a)N{SUPERSCRIPT TWO} is the Unicode::Overload equivalent, looking much closer to a mathematical expression, with the 2 in its proper position.

Outfix is the last operator, and a little odd. Outfix can best be thought of as user-definable brackets. One of the more common uses for this notation again comes from mathematics in the guise of the floor operator. Looking like brackets with the top bar missing, they return effectively POSIX::floor() of their contents.

Since outfix operators define their own brackets, extra parentheses are not needed on this type of operator.

A quick summary follows:

prefix

Operator goes directly before the parentheses containing its operands. Whitespace is allowed between the operator and opening parenthesis. This acts like a function call.

Sample: N{NOT SIGN}($b)

postfix

Operator goes directly after the parentheses containing its operands. Whitespace is allowed between the closing parenthesis and operator. This doesnt have a good Perl equivalent, but there are many equivalents in algebra, probably the most common being:

Sample: ($a+$b)N{SUPERSCRIPT TWO}

infix

Operator goes somewhere inside the parentheses. Whitespace is allowed between either parenthesis and the operator.

Sample: ($a N{ELEMENT OF} @list)

outfix

Operators surround their arguments and are translated into parentheses. As such, whitespace is allowed anywhere inside the operator pairs. There is no requirement that the operators be visually symmetrical, although it helps.

Sampe: $c=N{LEFT FLOOR}$a_+$bN{RIGHT FLOOR}

The requirements for parentheses will be removed as soon as I can figure out how to make these operators behave closer to perl builtins. Nesting is perfectly legal, but multiple infix operators cant coexists within one set of parentheses.

<<less
Download (0.005MB)
Added: 2007-07-12 License: Perl Artistic License Price:
834 downloads
Metapixel 1.0.2

Metapixel 1.0.2


Metapixel is a program for generating photomosaics. more>>
Metapixel is a Photomosaic Generator. It can generate classical photomosaics, in which the source image is viewed as a matrix of equally sized rectangles for each of which a matching image is substitued, as well as collage-style photomosaics, in which rectangular parts of the source image at arbitrary positions (i.e. not aligned to a matrix) are substituted by matching images.
Main features:
- Metapixel generates not only classical mosaics but also collage-style photomosaics (see examples).
- The matching algorithms match not only color but also form.
- Metapixel is fast. It takes about 75 seconds to generate a classical photomosaic for a 2048x2432 image with constituent images of size 64x64 and a database of slightly more than 11000 images on my not-so-fast Alpha. Most of this time is spent loading and saving images.
- Metapixel can generate classical mosaics which contain at most one copy of each constituent image. Alternatively, Metapixel can be instructed to honor a minimum distance between two occurrences of the same image in classical photomosaics.
- Metapixel has a cheat option which overlays the photomosaic with the original image using a user-specified percentage. Small percentages yield noticable improvements but are innocent enough so as not to be noticed without close inspection.
- Metapixel is a command-line program and thus scriptable.
Enhancements:
- This version adds a few minor bugfixes and support for reading GIF and writing JPEG files.
<<less
Download (0.065MB)
Added: 2006-12-10 License: GPL (GNU General Public License) Price:
1058 downloads
battleships 2.7

battleships 2.7


battleships project is a battleship game for VDTs. more>>
battleships project is a battleship game for VDTs.
Battleships is an intrinsically silly game, but I couldnt resist fixing this sucker. It now has a purely visual interface (you place ships and call for shots by moving the cursor around the board using the standard yuhjklbn keys).
Enhancements:
- The default game now disallows placement of ships so that they touch. A new -c option is available to force the older behavior.
- I also removed the `seemiss option (now always on) and `ask (which is only useful for cheating). And I ifdefed out the ditsy opening screen; if you want it back, compile with -DPENGUIN. One strike against featureitis...
- The code now lints as clean as the broken SysV curses lint library will let it.
- Some #ifdefs in the code should result in the right things being done for BSD or USG systems. They key off A_UNDERLINE. If youre using the Linux ncurses library, tell the makefile.
<<less
Download (0.019MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1076 downloads
CjOverkill 4.1.1

CjOverkill 4.1.1


Start your sites traffic from scratch and get more adult traffic than your server can handle! more>>
Start your sites traffic from scratch and get more adult traffic than your server can handle! CjOverkill is the worlds most advanced and secure adult traffic trading script.... And its 100% FREE!!!
CJOverkill is a powerful traffic trading script that keeps its users happy with their sites growing traffic. Tested on high traffic sites and proven its outstanding performance, CJOverkills security measures prevent others from trying to cheat you. With this script ,you can rest assured your site is in good hands.
An advanced, up-to-date script with cutting edge features, CJOverkill will boost your traffic and take your trading to a new level!
Enhancements:
- CjOverkill has integrated with GalaxyCash and now it pays 50% of the revenue the payload traffic generates.
- The adult and non-adult site versions of the script have been merged and can be switched from the settings panel.
- Some minor bugs with specific PHP configurations were fixed.
<<less
Download (0.43MB)
Added: 2006-07-18 License: Other/Proprietary License with Source Price:
692 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3