Zubair1 0 Report post Posted November 13, 2004 Hi Pe ple , Can Any One Tell me how to build a Keylogger on Visual Bais 6.0 that no one could see on the End Task Menu Share this post Link to post Share on other sites
faceofdie 0 Report post Posted November 16, 2004 You Can find Many VB code On http://www.vbcode.com/ you can search for Keylogger on http://www.vbcode.com/ And edit code Share this post Link to post Share on other sites
zachtk8702 0 Report post Posted February 6, 2005 I dont like keyloggers and I despise people that make stuff like that. Share this post Link to post Share on other sites
Arbin Gurung 0 Report post Posted February 24, 2005 You can also get much resources from http://www.planet-source-code.com/. I use this quite often and found it quite fruitful. Share this post Link to post Share on other sites
NotoriousZach 0 Report post Posted February 27, 2005 I have been looking around and I guess this may be a decent post to put this question in...........How would you have a program email a file ???????? I need this for an app other than a keylogged but I guess this guy could also use this information. Share this post Link to post Share on other sites
snlildude87 0 Report post Posted March 10, 2005 My fine feathered friend, I have made a keylogger...in Visual Basic a while back. I will give it to you if you tell me what you plan to do with it. If you need it to find passwords, then forget it, but any legitimate reason will do.My program tracks almost all your keys (alpha-numeric), and saves it into a file as you're typing. Share this post Link to post Share on other sites
Matt1eD 0 Report post Posted March 15, 2005 I have been looking around and I guess this may be a decent post to put this question in...........How would you have a program email a file ???????? I need this for an app other than a keylogged but I guess this guy could also use this information. 54623[/snapback] Do you mean you want to hide a program in an email or write an email client. The former would be verging on illegal - but is also used by many website for various legitimate & illegitimate reasons. You want an ActiveX control if the former. Share this post Link to post Share on other sites
Galahad 0 Report post Posted March 21, 2005 I have been looking around and I guess this may be a decent post to put this question in...........How would you have a program email a file ???????? I need this for an app other than a keylogged but I guess this guy could also use this information. 54623[/snapback] You have two options, you can use OCX that comes with VB, MAPI I believe it is, or, if you are more adventurous, you can download SMTP technical specification (RFC-2821 & RFC-3461), and write your own SMTP code. This is harder, but gives you much more control... Share this post Link to post Share on other sites
John_Cena 0 Report post Posted April 5, 2005 I hate when people use keyloggers to get passwords and stuff Share this post Link to post Share on other sites
FaLgoR 0 Report post Posted April 9, 2005 I think the two guys who said that they don't like keylogger have lost some information because of it hhehehhehe :)But I think its intersting, I'll take a look to, I want to learn vb. Share this post Link to post Share on other sites
Mosquin 0 Report post Posted May 12, 2005 Hi Pe ple , Can Any One Tell me how to build a Keylogger on Visual Bais 6.0 that no one could see on the End Task Menu 28682[/snapback] wel, yo can hide your app from the task menu with this line: App.TaskVisible = False I hope this will be useful Share this post Link to post Share on other sites
Amezis 0 Report post Posted May 12, 2005 What?? Why do you want to make a keylogger?? Tell us what you will need the keylogger for, and maybe you will get more help.... Share this post Link to post Share on other sites
alexia 0 Report post Posted May 21, 2005 oh my godwhy people write key logger with vb6for this job go to http://vbcity.com/ Share this post Link to post Share on other sites
ARNEL 0 Report post Posted June 27, 2005 Hi Pe ple , Can Any One Tell me how to build a Keylogger on Visual Bais 6.0 that no one could see on the End Task Menu 28682[/snapback] There a lots of source code for key logger available on the net. http://www.planet-source-code.com/ offers variety of code wherein you can still modified the whole programs, but when you do so, just don't forget to give compliments to the author. If the keylogger you have. Since you said no one can see it means you tried other program but case is visible in end task menu. If you have the source code for this program just add the code to disabled the program seing from the CTRL+ALT+DEL menu. the code for this function shown below. Private Sub Form_Load() App.TaskVisible=False End Sub That's it... a very short code the will hide your program from the end task menu... Just call the function upon loading of program... Hope this little text help you out... Share this post Link to post Share on other sites
JimiHex 0 Report post Posted August 2, 2005 just useGetAsyncKeyState APIthe syntax is Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer Share this post Link to post Share on other sites