Making A Simple Keylogger?
Jul 31, 2010I 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 RepliesI 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 RepliesI'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)
how to make a simple calculator using vb?
View 11 RepliesThe login box is the first box to appear, but after I successfully enter the right username/pass combo it goes to the next form, but the login form stays open as well? I've tried doing this:
Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK.Click
Dim username As String
Dim password As String
[code]....
However, after I click Login it closes down both windows. I've also tried LoginForm.Close() but that comes up with an error.
I'm making a builder for a simple ftp client, but i have a problem.I have readed a tut about a builder with a stub, thats done but i only can fill in 1 form, but how can i make that my builder fills 2 forms in the client?
My code in the stub is:
Dim options(), text1 As String
Const FileSplit = "@vorfin@"
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
FileOpen(1, Application.ExecutablePath, OpenMode.Binary, OpenAccess.Read, OpenShare.Shared)
[code].....
I'm making a simple HEX Editor with VB 2010. As a result I am trying to automatically leave a DataGridView cell after entering two characters and move onto the next cell
View 1 RepliesIntroduction[INDENT]Since this is my first thread in VB.NET forum(most of the time, I was in C/C++ forum), I want to share something that you might find it useful with your school project or with your works.Button is already a MUST-HAVE element in every program (I couldn't imagine program without a single button would function). Because it is everywhere, its appearance affects your form's appearance greatly. Some people might not care about how their software looks, but to me, it is a very important aspect for my software.
NOTE: I am pretty new to VB.NET myself. If there is any mistake, please correct me.
[/INDENT]
Step 1: Creating UserControl and Essential Properties[INDENT]Creating UserControl into your project. Then imports the following:
Imports System.ComponentModel
Imports System.Windows.Forms
[code]....
Because UserControl already has BackColor and ForeColor properties, you only need to construct Text and BorderColor properties
Private _BorderColor As Color '' Button Border Color
Public Property BorderColor() As Color
Get
[code]....
I'm making a simple game. I want simultaneously go up and left.
Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
' If e.KeyCode = Keys.Z Or e.KeyCode = Keys.Up Then
[CODE]...
Left, right, down and up work. now diagonal.
I am making a simple program that encrypts a text file and then decrypts it: why i get an error when i use this
Public Class Form1
Code:
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
System.IO.File.Encrypt(TextBox1.Text)
[Code].....
Im making a simple image editor and I added Zooming and Drawing with mouse position like a pencil. My problem is When I zoom the image and try to draw on it, everything becomes offset and the lines i drew are not even close to the mouse. Here is My code ( Just add a button1 and Picturebox1 with an image)
Public Class Form1
Dim pen1 As Pen
Dim x1, y1, x2, y2 As Integer
Dim gr As Graphics
[code]....
Spy.net Trojan KEYLOGGER ?
View 2 RepliesHow can i make a keylogger in visual basic 2010 ?
View 1 RepliesI 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)
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?
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]...
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 RepliesNote: 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?
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.
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 RepliesIs there anyone can post a simple code using vb,that start building a simple games ?
View 2 RepliesTrying to make a simple browser with some simple addon's. What Ive done is setup a menu(forum) for the user to enter their email providers web address and it will save it in a xml file. When they click on the email link, it should load the email xml iformation and place that info in the tb_html.text and navigate. I keep getting a null exception and im not sure what going on here. Here is the code:
Browsers:
Private Sub btn_Email_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_Email.Click
'Load Action
Dim SavedEmailObj As Storage
[code].....
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 RepliesI'm a huge music person (got my own lil record thing going) but I'm wanting to design a program that would make music in my way. I have a decent amount of background knowlege of Visual Basic and Java I'm just wondering how could I execute this whole project. The Project is making a MPC Sampler. MPC is a drum machine; a machine with buttons that once you press it that it will play a sound from a drum (ex: snare, kick, tom, ect.) . So I would want to make some pads on my program that each have their own sound. Total of 16 pads. Which the design wouldn't be hard to make nor would the functionality of it having the play back sound (in my opinoin it wouldn't be hard atleast). But the thing is I wanna map out these pads to number keys on the number pad or keyboard. I'm not so sure how to do that. But that's all the easy stuff...
Also finding information is making a sound directory. What I mean by this is that I want to make a User Interface that will open up a file directory of sounds and the user can select what "kick" or "snare" sound he may want for the kick or snare pad. I don't know how to do that or even know what to search; neverless I don't know if this whole project idea is a good idea for Visual Basic or another programing language.
Also LATER ON I am wanting to add a record and export function that alows users to..well...record and export their beat or instrumental ha. That doesn't seem too too complex (mainly due to the fact that all it needs to do is record the users key strokes and then show them and play the sounds, but obviously it would get more complex than that.)
Here is an image of one of many MPCs but one with a directory - [URL]
I am doing a tutorial for a simple calculator. My question is how can I add code to make a botton that add my tax % to the total amount I have.
Option Explicit On
Public Class Form1
Dim firstnumber As Single
[Code]......
I've declared the variable (presume this is correct):
Partial
Class
Bield_Projects_Telephone_Default
[Code].....
What am I doing wrong, can't seem to do anything I used to in classic ASP!?
i want to desing a simple application which will be developed on a pc but will work on a MAC.Now im guessing that if i make an app in pc vb net it will not work on a mac right? So what if i design a web application. could the mac user then use it as it is web based?
View 4 RepliesI have developed a form for Windows VB.Net that uses a number of text boxes that are indidivually bound to separate columns in a database. When one of the textboxes (let's call it XYZ.Text) is bound to the database, it prevents the data from any of the other bound text boxes to enter the database. When the binding for this one text box (XYZ.Text) is removed, then all the other text boxes work fine.
View 1 RepliesI trying to do what seems to be a simple thing but I'm having problems. The answers I find aren't working. I'm still getting casting exceptions:
Dim query = (From l In dePhl.cv_phil Where l.batch = strMmddyyyy
Select l.zipfile.Distinct)
Dim objFileList As List(Of String) = query.ToList() 'Error
[Code]....
how to build a simple calculator in VB; i got the interface with buttons and text box alredy and i figured out how to put more then one number using buttons alredy(Disp.Text = Disp.Text & 1) , Looking at the windows calc, how do you store the number u just entered into a text box and alowe user to enter another to performe calculations, what code should i use for equal button and etc.
View 10 RepliesThere's a number of postings about IMAPI in .NET, including these:
[URL]
But I can't say they're straightforward. First link looks good, though its C# WinForms realization doesn't allow simple re-using in VB.NET project without conversion.I only need to burn a list of files to a CD/DVD and that's it. Any thoughts? Freeware/open-source is preferred.