Skip to content

Instantly share code, notes, and snippets.

@Arachnid
Created June 18, 2016 19:10
Show Gist options
  • Save Arachnid/3e9582b9de1f2c79a4da5c505e47f82a to your computer and use it in GitHub Desktop.
Save Arachnid/3e9582b9de1f2c79a4da5c505e47f82a to your computer and use it in GitHub Desktop.
import urllib
import sha3
message = urllib.urlopen('http://pastebin.com/raw/CcGUBgDG').read()
clean = message.split('=====\r\n')[1].split('=====')[0].replace('\r\n', '\n').strip()
sha3.sha3_256(clean).hexdigest()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment