Skip to content

Instantly share code, notes, and snippets.

@MrCrambo
Created April 30, 2019 17:29
Show Gist options
  • Save MrCrambo/c485b83a3da6d3d487ec3de2ea861fb1 to your computer and use it in GitHub Desktop.
Save MrCrambo/c485b83a3da6d3d487ec3de2ea861fb1 to your computer and use it in GitHub Desktop.

Summary

This is the report from a security audit performed on xEUR by MrCrambo.

The audit focused primarily on the security of xEUR smart contracts.

In scope

  1. https://etherscan.io/address/0xe577e0b200d00ebdecbfc1cd3f7e8e04c70476be#code

Findings

In total, 1 issue were reported including:

  • 0 high severity issues.

  • 0 medium severity issues.

  • 0 owner privilegies issues.

  • 1 low severity issues.

Security issues

1. Zero address

Severity: low

Description

In function changeCryptonomicaVerificationContractAddress line 348 there is possibility of passing zero address into function.

Recommendation

Add zero address checking.

require(_newAddress != address(0));

Conclusion

Smart contract contains only low severity issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment