* performs `*dest = value;` in chain
(dest, value)
| 71 | * performs `*dest = value;` in chain |
| 72 | */ |
| 73 | push_write4(dest, value) { |
| 74 | this.push(gadgets["pop rdi"]); |
| 75 | this.push(dest); |
| 76 | this.push(gadgets["pop rax"]); |
| 77 | this.push(value); |
| 78 | this.push(gadgets["mov [rdi], eax"]); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * performs `*dest = value;` in chain |
no test coverage detected