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 tabulate import tabulate | |
from collections import Iterable | |
def attr(obj, a): | |
""" | |
Returns value of attribute on an object, calling attribute if necessary. | |
""" | |
v = getattr(obj, a, None) | |
if callable(v): |
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
#!/usr/bin/env python3 | |
from pwn import gdb, log, p64, process, remote, u64 | |
p = process('./vuln') | |
# p = remote('mercury.picoctf.net', 49464) | |
gdb.attach(p) | |
offset = 136 | |
junk = b'A' * offset |
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
#!/usr/bin/env sh | |
repos='bridge bridge-react chat cli coreth dao docs exchange explorer faucet finance gsn indexer lattice lpm luxjs marketplace multiparty netrunner netrunner-sdk node oraclevm plugins-core safe safe-ios sites standard subnet-evm town ui vault vmsdk wallet zchain' | |
for r in $repos; | |
do git clone https://github.com/luxdefi/$r | |
done |
OlderNewer