Skip to content
This repository was archived by the owner on Oct 12, 2024. It is now read-only.
This repository was archived by the owner on Oct 12, 2024. It is now read-only.

Pygore Error #21

@0xYazuko

Description

@0xYazuko

Hello here is my script :

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions