Skip to content

Instantly share code, notes, and snippets.

@vasa-develop
Created July 21, 2018 18:41
Show Gist options
  • Save vasa-develop/7eb0708a26dd89302a4d4b7079822fb5 to your computer and use it in GitHub Desktop.
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.
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