PDA

View Full Version : [Release] AntiRecoil


maxes21
4th March 2007, 02:42
This Tool is not detected

Hello, well alot of people want no recoil well heres a program i made with help by LIX,

LiX made the raw, and i compliled after changing some settings and other junk,

Pls keap in mind, this is not "No Recoil" this is "Anti Recoil"
thats means you can make it almost perfect, but it will still go side to side or somtimes just a bit of knock up,

To set up, run the program(Befor cod2 or after or while in game) dont matter, and push "]" now when you click your much will go down rather fast, so hold the "+" untill it only goes down a bit and slowly push "]" a few times untill it's choppy and goes down at a rather ok speed and test in game and adjust ,untill it just right,

Well enjoy and good luck,

ps there no preset no saving yoyur config no way of somone thinking your cheating, i dont knowif cal new program detects but good luck

http://www.mpcforum.com/attachment.php?attachmentid=18982&d=1166920728

server123
4th March 2007, 09:22
Thanxs for releasing.
I haven't checked it for virussus, and haven't reversed it (can't do it right now/no time for it)
So be carefull use at your own risk, if your not sure don't use it...

maxes21
4th March 2007, 10:45
i can insure you there no virus's but no matter who posted the file or who made it, its always a good idea to scam new files, but to let people know its a pain to set up until you get the hang of it


also this works for any game, this i released for css a long bit ago,

archerkill30
5th March 2007, 02:49
is it deteched?

maxes21
5th March 2007, 03:49
no its not deteched

Merlin
12th March 2007, 16:39
hmm dont work for me at all ... only the del key to close the program works lol
-> []+- dont work

lndcobra
12th March 2007, 16:59
Complete scanning result of "4N7iR3C0IL_New_fixed_.zip", received in VirusTotal at 03.12.2007, 15:52:54 (CET).

Antivirus Version Update Result
AntiVir 7.3.1.41 03.12.2007 no virus found
Authentium 4.93.8 03.09.2007 no virus found
Avast 4.7.936.0 03.11.2007 no virus found
AVG 7.5.0.447 03.12.2007 no virus found
BitDefender 7.2 03.12.2007 no virus found
CAT-QuickHeal 9.00 03.10.2007 no virus found
ClamAV devel-20060426 03.12.2007 no virus found
DrWeb 4.33 03.12.2007 no virus found
eSafe 7.0.14.0 03.12.2007 no virus found
eTrust-Vet 30.6.3472 03.12.2007 no virus found
Ewido 4.0 03.12.2007 no virus found
FileAdvisor 1 03.12.2007 no virus found
Fortinet 2.85.0.0 03.12.2007 no virus found
F-Prot 4.3.1.45 03.09.2007 no virus found
F-Secure 6.70.13030.0 03.12.2007 no virus found
Ikarus T3.1.1.3 03.12.2007 Backdoor.Win32.Armageddon.c
Kaspersky 4.0.2.24 03.12.2007 no virus found
McAfee 4981 03.09.2007 no virus found
Microsoft 1.2306 03.12.2007 no virus found
NOD32v2 2108 03.12.2007 no virus found
Norman 5.80.02 03.10.2007 no virus found
Panda 9.0.0.4 03.12.2007 no virus found
Prevx1 V2 03.12.2007 no virus found
Sophos 4.15.0 03.10.2007 no virus found
Sunbelt 2.2.907.0 03.10.2007 no virus found
Symantec 10 03.12.2007 no virus found
TheHacker 6.1.6.074 03.12.2007 no virus found
UNA 1.83 03.11.2007 no virus found
VBA32 3.11.2 03.12.2007 no virus found
VirusBuster 4.3.19:9 03.12.2007 no virus found

Incase u cant see where the torjan is here it is :

Ikarus T3.1.1.3 03.12.2007 Backdoor.Win32.Armageddon.c

the site i used to scan is http://www.virustotal.com

Feel free to use that site and find out for yourself :)

Merlin
12th March 2007, 17:27
lol just a trojaner ...to bad ;)

server123
12th March 2007, 21:07
Can you explain Maxes21 why there is a backdoor included? You said: i can insure you there no virus's You have 53 post counts so i thought you would be reliable.
(haven't checked it myself: no time to do it/ and forgot. But i gave a warning: scan before using it.)

Merlin
12th March 2007, 21:17
ok how to get rid of that shitty trojaner? i searched google and theres not much info about removing the ".C" version of backdoor.armageddon

i have zonealarm antivirus and firewall and that doesnt recognise the virus

PS: this is probably the reason why he put a trojaner in it:
Sorry for the double post, but i just got guid banned today, dont ask me how, and i just need a cdkey right, ps no its not hardware

maxes21
12th March 2007, 23:24
dude i dont know why there is a togan, ill give you guy the raw here here,
#include <windows.h>
#include <iostream.h>
#define VK_OEM_PLUS 0xBB
#define VK_OEM_MINUS 0xBD
#define VK_OEM_4 0xDB
#define VK_OEM_6 0xDD
//declares keys PLUS and MINUS and others.....?

static int time_effector = 1;
static int pixel_effector = 0;
//declares integers that makes how much moving-downwards to produce

int main()

{
cout << "ANTIRECOIL by LiX";
while(1) //run forever
{
Sleep(time_effector); //

if(GetAsyncKeyState(VK_LBUTTON)&0x8000) // if MOUSE1 is pressed
{
POINT pos; // declare POINT position
GetCursorPos(&pos); // get cursor position
SetCursorPos(pos.x, pos.y-pixel_effector); //
}

if(GetAsyncKeyState(VK_OEM_PLUS)&1){time_effector++;} // dunno?
if(GetAsyncKeyState(VK_OEM_MINUS)&1){time_effector--;} // dunno?

if(GetAsyncKeyState(VK_OEM_4)&1){pixel_effector++;} // if PLUS is pressed, pixel_effector plus 1
if(GetAsyncKeyState(VK_OEM_6)&1){pixel_effector--;} // if minus is pressed, pixel_effector minus 1

if(GetAsyncKeyState(VK_DELETE)&1){ExitProcess(0);} //as its a forever loop, something must enable program to exit
}
} this is the code i changed and modified to suit me better, and then i used dev-cpp and just ziped it and posted it here, so i dont know if that even a virus, if you know anything good about virus pls imform what that is, also if you do this my file is a virus, just use this code its about the same,

ps when you start this program hit ] three times and +untill its slows and get choppy, it takes alot to scearing around to get it to work just right, also if you push - or [ first, it locks up becaause you cant times 0 by anything to make it go higher

Can you explain Maxes21 why there is a backdoor included? You said: You have 53 post counts so i thought you would be reliable.
(haven't checked it myself: no time to do it/ and forgot. But i gave a warning: scan before using it.)

sorry for the double post,
ty for the respect, and i never knew it had anything, and it shouldent i made it my self, as i said, i been using it alot, and alot of friends have tryed, but nothing bad and nor there virus scanner got anything, so i think it just part of the compiler process to leave that, or maybe that guys computer infected the file, or even a fake, or its turly affected,

i dont know,

ok how to get rid of that shitty trojaner? i searched google and theres not much info about removing the ".C" version of backdoor.armageddon

i have zonealarm antivirus and firewall and that doesnt recognise the virus

PS: this is probably the reason why he put a trojaner in it:
yea i would say the same this but i got like 5 cdkeys from friends lol, also i dont like to be called a "Trganer" i scanning a few files to see if that site lagit, well ever hack i have on my pc has from virus so i dont know, use at your own risk

server123
13th March 2007, 00:38
Yup, got that backdoor too in virustotal : But read below what Blackdove wrote ....

BlackDove
13th March 2007, 03:36
I say it's safe: reason being, it has the imports of GetAsyncKeyState and SetCursorPos - two functions called for anti-recoil programs. Also, I tested this out a few days ago and the program does what you'd expect. I didn't experience anything malicious with it.

Also, since it's already an attachment, chances are that it was approved by a moderator of a different section already.

Of course, use all hacks at your own risk. If someone has 100% indisputable evidence that this program is bad, then it will be removed.

The scanners being used are picking up generic byte patterns - notice only one detected the program as harmful (Ikarus - never heard of it).

server123
13th March 2007, 21:33
Thanxs blackdove for your explanation, I will delete my posts.
;) Sorry maxes21, but i am carefull about virus trojan etc...
But stupit me : i CAN'T code and also can't decode. So i thrust totalvirus till someone special say it's okay ;) :lick:

maxes21
13th March 2007, 23:16
Thanxs blackdove for your explanation, I will delete my posts.
;) Sorry maxes21, but i am carefull about virus trojan etc...
But stupit me : i CAN'T code and also can't decode. So i thrust totalvirus till someone special say it's okay ;) :lick:

dude i dident take any offence at all, for anything you said, because its a trojan and you want the best for these forums, as do i, and i dident even know scanners took this as a virus, and if people are worryed about this they can use the code i posted,

blackdove is there a reason, maybe the complier take this as a virus, like i scanned one of your hacks, and it says it has a worm in it, but i dont know

server123
13th March 2007, 23:50
PFFFfffffffff thnxs m8

BlackDove
14th March 2007, 01:52
I use a protector on my hacks to prevent novice reverse engineers from viewing the code. Some malicious software is also protected by the same program so there are similiar byte patterns. These byte patterns are detected by anti-virus software and flagged as malicious. They feel it's better to be safe than sorry.

...because its a trojan...

Hopefully that's a typo, maxes21.

maxes21
14th March 2007, 02:55
when i said "because its a trojan," i ment its says its a trojan, and yea i should watch how i word my myself, but my little program should into way try to acces your files and if its does try to delete it,

Merlin
19th March 2007, 21:26
sry but i cant get it to work for me - wheres the prob?only the exit key (del) works ... all other dont do anything

maxes21
20th March 2007, 05:33
Merlin, as soon as you start the program, push ] and =/+,
hole +untill it goes down real slow, then push ] a few more time it will become choppy, if you push -/[ the multipler becomes 0 so it wont work

Merlin
20th March 2007, 12:01
i have german keyboard layout:
which keyboard layout are you using? i figured out that the keys you are talking about are others which i have to push to get it working - but i only found the keys:
\ faster
+ slower
´ go downwards

maxes21
21st March 2007, 01:37
merlin, im sorry i dont know for german layout, if you know the ms key codes, there
#define VK_OEM_PLUS 0xBB my +
#define VK_OEM_MINUS 0xBD my -
#define VK_OEM_4 0xDB my ]
#define VK_OEM_6 0xDD my [

i dont know ther there that i dont know, sorry i cant help yea more

Tamp0n
25th March 2007, 00:47
My mouse-cursor goes down in windows when running the program, but when I' m in-game it doesnt work.. Any suggestions?

maxes21
25th March 2007, 08:09
Tamp, glad to see you post, did you make sure when your in game, the program is still on, because you could of pushed delete by mistake, or the settings can be to low and look like its not moving when it real is, other then that i dont know goodluck

Tamp0n
25th March 2007, 12:17
Tamp, glad to see you post, did you make sure when your in game, the program is still on, because you could of pushed delete by mistake, or the settings can be to low and look like its not moving when it real is, other then that i dont know goodluck

I'm sure it's running when I'm in-game, cause when I went back to windows it worked for my mouse-corsor :). And it moved really fast down, so I should noticed it in-game too but it's just not doing that..

Thanx anyway for your reply.

mannn I want this to work so badly :D!

Tamp, glad to see you post, did you make sure when your in game, the program is still on, because you could of pushed delete by mistake, or the settings can be to low and look like its not moving when it real is, other then that i dont know goodluck

I'm sure it's running when I'm in-game, cause when I went back to windows it worked for my mouse-corsor :). And it moved really fast down, so I should noticed it in-game too but it's just not doing it then..

Thanx anyway for your reply.

mannn I want this to work so badly :D!

maxes21
27th March 2007, 01:06
i turly dont know, but if your rez in the game is real high, i beleiave that it take the settings of the program alot higher settings to work, but i dont know im sorry it dont work for you

ADX
21st August 2007, 13:16
Hi all, and sorry for re-open this old post.
I fixed up the codes, and tested out. It's working perfectly, and I understand all the code, so, no viruses or other bad stuff here.

It's a bit difficult to adjust this, but I tested it working with my MP44 on my localhosted server.

Did everyone check google?...
#define VK_OEM_PLUS 0xBB
#define VK_OEM_MINUS 0xBD
#define VK_OEM_4 0xDB
#define VK_OEM_6 0xDD
These are the key definitions, essentialy to work.

The best way to share this is by sending the sources...you can compile them satefy...if you want ;)

Thanks!

iCheet007
23rd September 2007, 10:44
Got kicked by PB from using this.
I checked my cod2 folder, everythings in order there, so it's the hack.

Deadnesser
25th September 2007, 00:42
!cheet you need to get banned for making so many useless posts that anyone with eyes could see, don't expect a public hack to stay undetected for long even if its external.

jvstin
18th October 2007, 19:15
fok it, second hack i downloaded with a virus.

BD says: Warned (8) points - general illegality - spreading false information

Lukeirado
18th October 2007, 20:21
jvstin, dont be stupid, it has no trojans in it.

WilliamSul
19th October 2007, 16:54
detected byPB

fiskem
6th November 2007, 01:42
as an reverse engineer, i simply analyzed the file, i dont know about trojan but it seems not have access windows registry, which keeps CDKEYS

isn't that right BLACKDOVE?

Holz
6th November 2007, 01:57
Gee, this tool is totally clean and only does what it's supposed to do: pull your mouse up/down.

And he even provided the original bit of code (by LiX) this is based on.

BlackDove
6th November 2007, 02:06
Yes, that's right fiskem. Technically, a CD key can read the CD key from another place, but this isn't the place to post such ideas. The file is fine.