aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-07-25 22:23:50 +0800
committerGitHub <noreply@github.com>2016-07-25 22:23:50 +0800
commit17957d3a93a0d7cf6d4a0081d72ee7e35c898c56 (patch)
tree88d18a8528fe7b18e1f41df5b04d7f12f577cb34
parent6610add63eee23d8a86037a8af4266020b2aa532 (diff)
parent6a6f0623b0866f571d695a1fb04b75bfdd402703 (diff)
downloaddexon-solidity-17957d3a93a0d7cf6d4a0081d72ee7e35c898c56.tar
dexon-solidity-17957d3a93a0d7cf6d4a0081d72ee7e35c898c56.tar.gz
dexon-solidity-17957d3a93a0d7cf6d4a0081d72ee7e35c898c56.tar.bz2
dexon-solidity-17957d3a93a0d7cf6d4a0081d72ee7e35c898c56.tar.lz
dexon-solidity-17957d3a93a0d7cf6d4a0081d72ee7e35c898c56.tar.xz
dexon-solidity-17957d3a93a0d7cf6d4a0081d72ee7e35c898c56.tar.zst
dexon-solidity-17957d3a93a0d7cf6d4a0081d72ee7e35c898c56.zip
Merge pull request #738 from DennisBPeterson/patch-3
Added tx.origin caution
-rw-r--r--docs/security-considerations.rst39
1 files changed, 39 insertions, 0 deletions
diff --git a/docs/security-considerations.rst b/docs/security-considerations.rst
index 87ee567d..bae6e20b 100644
--- a/docs/security-considerations.rst
+++ b/docs/security-considerations.rst
@@ -138,6 +138,45 @@ Note that ``.send()`` does **not** throw an exception if the call stack is
depleted but rather returns ``false`` in that case. The low-level functions
``.call()``, ``.callcode()`` and ``.delegatecall()`` behave in the same way.
+tx.origin
+=========
+
+Never use tx.origin for authorization. Let's say you have a wallet contract like this:
+
+::
+
+ contract TxUserWallet {
+ address owner;
+
+ function TxUserWallet() {
+ owner = msg.sender;
+ }
+
+ function transfer(address dest, uint amount) {
+ if (tx.origin != owner) { throw; }
+ if (!dest.call.value(amount)()) throw;
+ }
+ }
+
+Now someone tricks you into sending ether to the address of this attack wallet:
+
+::
+
+ contract TxAttackWallet {
+ address owner;
+
+ function TxAttackWallet() {
+ owner = msg.sender;
+ }
+
+ function() {
+ TxUserWallet(msg.sender).transfer(owner, msg.sender.balance);
+ }
+ }
+
+If your wallet had checked msg.sender for authorization, it would get the address of the attack wallet, instead of the owner address. But by checking tx.origin, it gets the original address that kicked off the transaction, which is still the owner address. The attack wallet instantly drains all your funds.
+
+
Minor Details
=============