This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//have to wait for the keyboard for the url bar to leave before triggering the keyboard for the prompt, hence the timeout | |
javascript:setTimeout(function(){window.location=document.location.href.replace(document.location.protocol,prompt("Enter New Protocol: ("+document.location.protocol+")")+":")},1000) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hashlib | |
import pbkdf2 #simple-pbkdf2 module (have to download) | |
t = pbkdf2.pbkdf2_bin('this is a long string password', '[email protected]', 5000, 32, hashlib.sha256) |
NewerOlder