Juno_okyo

Change File Hash (Checksum)

Sep 4th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.26 KB | None | 0 0
  1. ;~ Coded by Juno_okyo
  2.  
  3. Func _ChangeFileHash($file)
  4.     Local $fp = FileOpen($file, 16)
  5.     Local $data = FileRead($fp)
  6.     FileClose($fp)
  7.  
  8.     $fp = FileOpen(Random(1000, 9999, 1) & '.exe', 2 + 16)
  9.     FileWrite($fp, $data & '00')
  10.     FileClose($fp)
  11. EndFunc   ;==>_ChangeFileHash
Add Comment
Please, Sign In to add comment