Skip to content

Instantly share code, notes, and snippets.

@pro100skm
Created September 24, 2018 18:57
Show Gist options
  • Save pro100skm/ad0c2d667477d37e36217f6bafbcd5aa to your computer and use it in GitHub Desktop.
Save pro100skm/ad0c2d667477d37e36217f6bafbcd5aa 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