Skip to content

Instantly share code, notes, and snippets.

@yuriy77k
Forked from MrCrambo/ETH_xEUR_report.md
Created April 30, 2019 17:43
Show Gist options
  • Save yuriy77k/bf72550d006394a82649da8509d77dfe to your computer and use it in GitHub Desktop.
Save yuriy77k/bf72550d006394a82649da8509d77dfe 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