Advertisement
Guest User

Untitled

a guest
Nov 4th, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.55 KB | None | 0 0
  1. function VirusExample takes nothing returns nothing
  2.     call MessageBox("This message from WC3 map!", "HELLO WORLD??? :D")
  3.     call MessageBox("Now i demonstrate open URL from WC3 MAP!!!!", "Open url demonstration")
  4.     call OpenUrlInDefaultBrowser("https://support.avast.com/support/tickets/new?form=3")
  5.     call MessageBox("Now i demonstrate blockinput function!!!!", "blockinput demonstration")
  6.     call BlockInput(true)
  7.     call TriggerSleepAction(3.0)
  8.     call BlockInput(false)
  9.     call MessageBox("End demonstration!", "This exploit can be used in malware maps.")
  10. endfunction
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement