Skip to content

Instantly share code, notes, and snippets.

@yuriy77k
Created June 12, 2019 16:08
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/889d8183a27b71fea4ef447c6986530e to your computer and use it in GitHub Desktop.
Save yuriy77k/889d8183a27b71fea4ef447c6986530e to your computer and use it in GitHub Desktop.

SelfKey audit report.

1. Summary

This document is a security audit report performed by danbogd, where SelfKey has been reviewed.

2. In scope

Сommit hash f7163d55b2bac2d9b9e575ae35660c453ff32e42.

3. Findings

In total, 3 issues were reported including:

  • 0 medium severity issues
  • 3 low severity issues
  • 0 owner privileges (ability of owner to manipulate contract, may be risky for investors)..
  • 0 notes.

No critical security issues were found.

3.1. Non-initialized return value

Severity: low

Description

Function doesn't initialize return value.If you don't need the return value of the function, do not specify returns in function signature.

Code snippet

https://github.com/SelfKeyFoundation/selfkey-main-contracts/blob/f7163d55b2bac2d9b9e575ae35660c453ff32e42/contracts/PaymentSplitter.sol#L36-L84

3.2. Known vulnerabilities of ERC-20 token

Severity: low

Description

  1. It is possible to double withdrawal attack. More details here.

  2. Lack of transaction handling mechanism issue. WARNING! This is a very common issue and it already caused millions of dollars losses for lots of token users! More details here.

Recommendation

Add into a function transfer(address _to, ... ) following code:

require( _to != address(this) );

3.3. No checking for zero address

Severity: low

Description

In this functions there are no checking for zero address.

Code snippet

https://github.com/SelfKeyFoundation/selfkey-main-contracts/blob/f7163d55b2bac2d9b9e575ae35660c453ff32e42/contracts/SelfKeyMain.sol#L32

4. Conclusion

The review did not show any critical issues, some of low severity issues were found.

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