Skip to content

Instantly share code, notes, and snippets.

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 danbogd/e12ccc7eb6d13c5874dabc916cc69793 to your computer and use it in GitHub Desktop.
Save danbogd/e12ccc7eb6d13c5874dabc916cc69793 to your computer and use it in GitHub Desktop.

Time Lock Escrow audit report.

1. Summary

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

2. In scope

3. Findings

In total, 4 issue were reported including:

  • 1 crittical issue.
  • 2 medium issue.
  • 1 minor observation.

Сritical security issue was found.

3.1. Front-running attack

Severity: high

Description

If there is a situation where the oracle can choose to either give funds to the user or to the provider, the unfair user/provider can watch the transaction pool for oracleEvaluateJob transaction contain the oraclePasswordUnhashed and create a new transaction of their own with a higher gasPrice and get their transaction included in a block before the original.

Code snippet

https://gist.github.com/p3c-bot/b533413550da179c5e89da410aca3dd7#file-escrow-sol-L68-L93

3.2. Customer Refund

Severity: medium

Description

As described the contract allow the customer to get the funds back any time after the deadline, without needing the oracle, as long as they control the password.

However this do not make sense, the provider can finish his job perfectly and the customer can choose to not share the password with him and get his fund back after the deadline, if the oracle do not decide meanwhile.

Code snippet

https://gist.github.com/p3c-bot/b533413550da179c5e89da410aca3dd7#file-escrow-sol-L53#L65

Recommendation

The customer should not be allowed to withdraw his fund back except if the contractor accept or the oracle allows it.

3.3. Oracle Password

Severity: medium

Description

The Oracle password hash can be set by the customer since createJob function is public and anyone can create a job using it (please not that the function is also payable so it will be mainly be used by the customer since he will lock his funds), which means that the customer can control both password, making him even able to withdraw his fund back before any deadline since he can use oracleEvaluateJob at any moment.

All parties can check the hashed passwords, however the customer can also just slightly change the oracle password hash and deceive the other parties by making them think that the hashed password is the same, wait for the deadline and use evaluateJob as described previously to get his fund back.

Code snippet

https://gist.github.com/p3c-bot/b533413550da179c5e89da410aca3dd7#file-escrow-sol-L68#L93

Recommendation

Many crosschecking can be done in the user interface but the main goal of the ethereum blockchain is to be by itself 100% safe if the contract are implemented correctly.

oracleEvaluateJob should be only accessible by the oracle (address or any other proof that can be used) on which both customer and provider have agreed upon, the contract should reflect this logic by not giving any chance for a possible manipulation.

3.4. Consider using latest version of solidity.

Severity: minor observation

Description

The contracts use solidity version 0.4.21. It is suggested to use the latest version and fix all compiler warnings that arise.

4. Conclusion

Critical issues seriously endanger smart contracts security. We highly recommend fixing them.

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