Created
July 21, 2018 18:41
-
-
Save vasa-develop/7eb0708a26dd89302a4d4b7079822fb5 to your computer and use it in GitHub Desktop.
DO NOT USE THIS CODE. THIS CODE IS USED TO DEMONSTRATE A VULNERABILITY IN A SOLIDITY CODE.
This file contains 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
contract Print{ | |
event Print(string text); | |
function rot13Encrypt(string text) public { | |
emit Print(text); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment