|
-
Jul 31st, 2010, 12:14 PM
#1
Thread Starter
Junior Member
Help in making a simple keylogger
Dear Friends.
I want to make a simple key logger in VB.Net in console mode which runs on background. So, I m not getting any logic, how to made it.
If some one can help, I will be thankful.
-
Jul 31st, 2010, 12:19 PM
#2
Hyperactive Member
Re: Help in making a simple keylogger
 Originally Posted by rashid_farooq
Dear Friends.
I want to make a simple key logger in VB.Net in console mode which runs on background. So, I m not getting any logic, how to made it.
If some one can help, I will be thankful.
Why is it you want to create one of these???? Only reason I can see is so you can infect other computers and steal information, or dupe users into using your machine and get their info that way????????
If so you won't be helped here!!!!!!!!!!!!!!!!!
-
Jul 31st, 2010, 12:26 PM
#3
Re: Help in making a simple keylogger
Keyloggers are considered malicious. As such, you will not receive any help here from us.
-
Jul 31st, 2010, 12:45 PM
#4
Thread Starter
Junior Member
Re: Help in making a simple keylogger
I have not any intention as you suspected. I just want to know that what logic can i use to store the keys from keyboard all the time.
I don't have any purpose of stealing the information from others computers.
I have always been a positive person. Because I m practicing VB.Net, So I share all of my problems here.
Any way, If you think so, Don't tell me the logic. I shall not mind.
-
Jul 31st, 2010, 01:29 PM
#5
Re: Help in making a simple keylogger
Keyloggers are generally malicious, but it actually isn't quite clear whether you mean the same thing as we do with that term.
If you are wondering how to store something, anything, then consider these points:
1) What type of data is it? Keys can actually be bytes, integers, or characters. Bytes are smallest, and might make most sense, but integers might make more sense in some cases.
2) Will the amount of data change? If yes, then a List (of T) would make most sense...probably.
3) Do you need to persist the data over time? In that case, you will want to save the data in memory, then push it out to a file, which could be either binary serialization, text files, XML, or even a database. Which one is best depends largely on what you want to do with the data.
So those are the considerations.
My usual boring signature: Nothing
 
-
Jul 31st, 2010, 01:51 PM
#6
Re: Help in making a simple keylogger
Please use normal text when typing. You can't imagine how annoying it is to read that.
CodeBank contributions: Process Manager, Temp File Cleaner
 Originally Posted by SJWhiteley
"game trainer" is the same as calling the act of robbing a bank "wealth redistribution"....
-
Jul 31st, 2010, 02:27 PM
#7
Re: Help in making a simple keylogger
When it comes to things like keyloggers we give people the benefit of the doubt.
-
Jul 31st, 2010, 02:29 PM
#8
Re: Help in making a simple keylogger
I might've jumped the gun, but you wouldn't be the first to ask about it for...other intentions.
I just want to know that what logic can i use to store the keys from keyboard all the time.
As Shaggy suggested, you can use a List(Of T) (Where T is the type of list you want) to store the KeyData. You say you want to know the logic, but I guess I should try to dig a bit deeper: Your overall intention is to learn the logic behind such a thing?
-
Jul 31st, 2010, 02:45 PM
#9
Re: Help in making a simple keylogger
 Originally Posted by MartinLiss
When it comes to things like keyloggers we give people the benefit of the doubt.
Are you saying we should help people make keyloggers and other things that could very easily be used for malicious purposes?
-
Jul 31st, 2010, 03:03 PM
#10
Re: Help in making a simple keylogger
 Originally Posted by chris128
Are you saying we should help people make keyloggers and other things that could very easily be used for malicious purposes?
That's up to you. All I'm saying is that lacking any evidence of malicious intent there's nothing wrong with the question.
-
Jul 31st, 2010, 04:10 PM
#11
Re: Help in making a simple keylogger
I have a link in my sig for a simple keylogger. It is not a console app (would that even work?), but you can see the logic that is used.
In itself, it does not allow remote logging, which is by design to prevent "off-the-shelf" malicious use so...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|