You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 12, 2024. It is now read-only.
import pygore
testfile = './GoLmoL'
f = pygore.GoFile(testfile)
c = f.get_compiler_version()
print('Compiler: {}\nTimestamp: {}\nSHA {}\n'.
format(c.name, c.timestamp, c.sha))
pkgs = f.get_packages()
types = f.get_types()
f.close()
for p in pkgs:
print('Package: {}'.format(p.name))
print("Functions:")
for f in p.functions:
print('{} from {} to {}'.format(f.name, hex(f.offset), hex(f.end)))
print("Methods:")
for m in p.methods:
print('{} {} from {} to {}'.format(m.receiver, m.name,
hex(m.offset), hex(m.end)))
print("Types:")
for t in types:
print('Package path: {} | Type name: {}'.format(t.packagePath, t.name))
He don't work because i have this error caused by the package:
Traceback (most recent call last):
File "main.py", line 6, in <module>
c = f.get_compiler_version()
File "/home/runner/FaithfulWorrisomePrograms/venv/lib/python3.10/site-packages/pygore/lib.py", line 278, in get_compiler_version
return _get_compiler_version(self.path)
File "/home/runner/FaithfulWorrisomePrograms/venv/lib/python3.10/site-packages/pygore/lib.py", line 325, in _get_compiler_version
cv = pcv.contents
ValueError: NULL pointer access