Make Keylogger - Save The Information In A .txt On The Usb?

Dec 13, 2009

I have made a KeyLogger that send the information to an e-mail but I want it to save as a .txt to the USB drive in a folder called logs. But for example all USB drives are on different names like G, E, and F, they all vary so how do I make my keylogger save the information in a .txt on the usb.

1. How do I save a .txt file to a folder named "logs" on the USB?

2. How do I register the F1 and other keys that are not registered.

3. How can I get the program to close when the USB is pulled out?

View 10 Replies


ADVERTISEMENT

Make A Keylogger In VB 2010?

Jun 9, 2011

How can i make a keylogger in visual basic 2010 ?

View 1 Replies

VS 2008 How To Make A Keylogger

Apr 15, 2009

I searched the Topic how to make a Keylogger, but wasn't what I was asking. I don't want to make a virus, I want a simple user-friendly Application with a textbox that show what is typed on my account, for instance: I start the friendly keylogger, I start up a internet tab, and go to Myspace (don't mean to advertise) and let my brother log in. I want the textbox to say just:

xxTREV0Rxx (example username)
pie249 (example password)

I don't want this to be serious. (Also: ShowInTaskBar: False)

View 3 Replies

Make A Keylogger And Attach It To One Button?

Jan 25, 2010

how I can make a keylogger and attach it to one button. I just want it to send logs to my e mail Say every 2 hours or so And how to make it be on there startup and invisiable in taskmanager So when they press a button on my project it will start up my keylogger

View 2 Replies

Make My Keylogger Auto-run And Auto-hide?

Oct 12, 2011

All functions done, but the main function, the autorun and auto hide didnt work like i wish. for this keylogger, im using checkbox to make it autorun when windows startup and another checkbox to autohide. i already placed the codes but nothing happen. when i tick those checkboxes n restart my pc, nothing happen. is it because im using checkbox?

View 3 Replies

Save Textbox Information - Save The Stuff Written In 3 Text Boxes

Jul 17, 2011

tell me a way that i can save the stuff written in 3 text box (Name,Address,Bday) by using a command btn. And then finding all of their information by just entering Name using another button.

any help would be grateful.

please and thank u

View 1 Replies

Spy.net Trojan KEYLOGGER

May 9, 2010

Spy.net Trojan KEYLOGGER ?

View 2 Replies

How To Save Information In A Database

Jul 22, 2009

I need save some informations, in a table (date, hour, number of points...) I use Vb .NET 2008.

View 5 Replies

Save Information To Another Form?

May 2, 2012

Form 1 code

Me.Validate()
Me. CustomersBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.BoardingschoolDataSet)

[code]....

Therefore that code above works perfectly as both of them saves information to the Customers table and waitingforApproval.The problem is here:When I open form2 which recieves information from WaitinforApproval database table(and I see it getting it from there as tableadapter works), I want to save the received information to the customers.So I have two data sets in here. Just like above So here I have created a button called confirm/save the data to customers. Hence I put this code in confirm button:
Form 2 code

Me.Validate()
Me. CustomersBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.BoardingschoolDataSet)

And the current dataset set for this form is �waitingforApproval.So it doesn�t save the received information from waitingforApproval into the customers�

View 2 Replies

Save The Information To A XML File?

Sep 25, 2009

ok so i made it so i could save the information to a XML file but i want it to have multiple entries insted of having loads of files with so little information in them also i want it so if i click edit it would edit the file and one of the entries and load them in the form fields

View 6 Replies

Making A Simple Keylogger?

Jul 31, 2010

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.

View 10 Replies

BindingSource. To Save Information For Different Form?

May 3, 2012

i have two forms and two database tables in sql. my problem is that, in one form(form1) i can save information to another form (form2) but in form2 can't able to resend data back to form1.

Am using dataAdapters and dataSet to load the data into application.

Having been thinking about this issue but doesn't solve it. i mean shall i use select query or what?

In form2, i don't want to insert new information rather all i want is to resend the loaded data from form1 back to it.

View 1 Replies

Save Information From A Datagridview Without Using A Database?

Aug 31, 2009

I need to be able to save data from a datagrid for recall later. The next day for instance. I dont want to use a database. I dont thing that using the user.config system is the right way.davidbell

View 12 Replies

Save Information From DataGridView As A New DataTable?

Jun 29, 2011

I have compiled some information into a DataGridView.How can I save all this DataGridView info into a DataTable?

dt As New System.Data.DataTable
dt = DataGridView1.DataSource

View 7 Replies

Webbrowser Save User Information?

Aug 29, 2009

Does anyone know how I would go about saving usernames and passwords from websites using a webbrowser control?.Like with IE7 you can save your website passwords and stuff and have it automatically entered when you re-visit the site.

View 4 Replies

Anti Keylogger Using On Screen Keyboard

Sep 1, 2011

im creating an anti keylogger using on-screen keyboard and its work. but the problem is keylogger still can captured the keystroke. So i want to know what code should i add in my program. this is my code so far

[Code]...

View 2 Replies

On Creating A Simple Keylogger (non Malicious)

Feb 21, 2012

I'm suspicious my spouse is cheating. In the past few months he has systematically locked me out of all of his social media accounts shortly after getting a job with a group of female secretaries that travels for a week at a time. He has been dodging or non-communicative when confronted about this.url...

The only way to avoid interaction with antispyware is to create it myself.I understand that copying text or something into an open notepad session or the clipboard is out of the question; however I'm pretty sure that I could create a (fairly) simple script that does the following:[code]I know this is extremely inneficient but this is the most covert way i can think of, a simple wscript that runs on startup and creates these .txt files in an important looking place (windows/config/system/logs/win32 - example)

View 1 Replies

Windows 7 Keylogger Wont Work?

Jul 9, 2011

Note: This project is for educational purposes only.I've tried many tutorials on how to create basic keyloggers but none work. I then heard Windows 7 won't work for keyloggers with Visual Basic 2008.

My Code is Below:Public Class Form1 Dim result As Integer Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer

Timer1_Tick
For i = 1 To 255
result = 0
result = GetAsyncKeyState(i)
If result = -32767 Then
TextBox1.Text = TextBox1.Text + Chr(i)
End If
Next i

I get no errors from the code it just doesn't put the keys I press in the textbox.If having Windows 7 is the problem is there any solutiions?

View 1 Replies

How To Write Codes To Save Information To PHP Database

Jun 25, 2012

I am designing an interface using vb.net and the values inputted there should be saved in a database and I choose to design my database using mysql in phpmyadmin. I already made my database in php via localhost/phpmyadmin/index.php. But I do not know what commands / codes should I write in vb.net so that i.e. the value of textbox.text would be saved in database.

View 1 Replies

VS 2010 Save Information To A File And Read It?

Jan 22, 2010

Im making a program that can make diffrent profiles. So it have to save: Username, Password, etc. then be able to read it.But I have no clue how to read diffrent lines, and stuff.I was thinking if ex. the pass was like this:<Pass>Pass here</Pass>I can read what was between those things, but I coulnt get it to work ...

View 14 Replies

Make An Auto-save Function To Save Text In A Textbox?

Jun 18, 2009

I have been searching for the past hour to try and find a solution, but I have been unsuccessful. Also, I use VB 2008, so the Common Dialog Suggestion would not work.

View 23 Replies

Keylogger - Recording All Passwords And Stuff Entered

Jun 12, 2011

I an new to visual basic and I was following a tutorial to make this keylogger for my computer to record all my passwords and things entered but i get a Warning1Variable 'key' is used before it has been assigned a value. A null reference exception could result at runtime.
C:\Users\Gene\documents\visual studio 2010\Projects\WindowsApplication1\WindowsApplication1\Form1.vb1812WindowsApplication1
Then the null error occurs.

View 1 Replies

VS 2010 Keylogger Won't Recognize <, >. /? Type Of Keys

Apr 23, 2012

i am trying to make a proper keylogger. i have programmed the qwer QWER 123 and !@# keys but it wont read the ,< .> type ok keys for some reason, how to make the program read these keys

View 10 Replies

Save The Information From Each Activation Of The Code Inside The Loop?

Jun 11, 2011

How do I save the information from each activation of the code inside the loop. I decided to try this a different way. I also need to know how to create colums in a label?

For countInteger As Integer = 0 To 3
seatsSoldInteger = ticketDetail(countInteger).seatsSoldInteger
costDecimal = ticketDetail(countInteger).costDecimal
totalTicketSalesDecimal = ticketDetail(countInteger).totalCostDecimal

[code].....

View 1 Replies

VS 2008 : Save Information In Forum To A Text File?

May 21, 2009

I need to be able to know how to save information in my forum to a text file.

View 6 Replies

VS 2008 Save Putting Information In Form At Run Time?

Jun 30, 2010

How Do i save my informaion i put in form at run time i think i need a data base but im not sure..

View 12 Replies

VS 2008 Make A Save Button To Save To A New Text Fil?

Nov 4, 2010

I want to make a save button to save to a new text file with the data in the text box if modified. Currently the program just opens Data.txt and displays a sentence in the text box.

Public Class frmAddress
Private Sub btnDisplay_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDisplay.Click

[Code]....

View 2 Replies

Particular(one Cell) Should Edit And Change The Information And Save To Database In Row Or Column

Nov 1, 2011

in row or column..particular(one cell) should edit and change the information...and save to database...

View 2 Replies

Make A Program That Gets Information Of The Net?

Aug 8, 2010

I'm having a tough time with fixing this problem i'm to make a program that gets information of the net and when the information changes it should show a message box.

[Code]...

View 6 Replies

C# - Use To Make Two .net Programs Transfer Information?

Aug 27, 2009

I currently have two programs that need to comunicate one with another. It doesn't have to be something complicated, it's just passing data from one to another, all very simple. I was thinking of using .net remoting, but I've heard there's a new thing WCF. Should I go for the .net remoting or try WCF? Or is there something simpler to use?

edit: Both applications are simple, I don't want to have anything to do with IIS, services and such.

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved