No title
2021/8/20WEB攻关,ERC20代币
单词积累:
1 | designate任命,委派,指定 |
hackworld继续写
1 | import requests |
用来报错注入的脚本。
(先用burpsuite查找被过滤字符)本题不多说
ERC20
•
height: A scalar value equal to the height of the block, which is also the number of parent references to reach the genesis
block. This is formally denoted by Hh ∈ N64. The genesis block has a height of zero.也就是父块及其之前块的数量。
author: The 160-bit address of the author of this block, formally denoted by Ha ∈ B160. This is indeed the benefificiary’s
address to receive all rewards caused by successfully mining this block.其实就是矿工。
今天弄明白nonce:在transaction中代表之前发送所有交易的数目
而在block中:nonce: A 256-bit value which proves that a suffificient amount of computation has been carried out on this block, formally
Hn ∈ B256.也就是为了证明pow而找到的一个256位的值。(类似随机数)
RLP: this is the serialization function that encodes an input of arbitrary length into a structured binary data, i.e. a byte
array explicitly containing information about the length of the input.