Skip to content

Instantly share code, notes, and snippets.

@yuriy77k
Forked from pro100skm/Centaure.md
Created September 25, 2018 08:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuriy77k/b2fa0fc1f73c46593f5543b026067197 to your computer and use it in GitHub Desktop.
Save yuriy77k/b2fa0fc1f73c46593f5543b026067197 to your computer and use it in GitHub Desktop.

Centaure audit report

Summary

This is the report from a security audit performed on Centaure by pro100skm.

The audit focused primarily on the security of Centaure contract.

In scope

  1. https://github.com/centaureio/centaure/blob/master/centaure.sol

Findings

In total, 1 issues were reported including:

  • 0 high severity issues.

  • 1 medium severity issues.

  • 0 low severity issues.

  • 0 minor observations.

Security issues

1. No zero address checking.

Severity: medium

Description

There are posibility of sending tokens to zero address in transfer and transferFrom functions.

Recommendation

Add zero address checking require.

require(to != address(0));

Conclusion

There were detected one medium severity vulnerabilitiy. We highly recommend you to complete bugbounty before use.

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