├── .gitignore ├── GO_Utils ├── Firstmoduledata.py ├── GoStrings.py ├── Gopclntab.py ├── Types.py ├── Utils.py ├── __init__.py └── pygore │ ├── __init__.py │ ├── internal.py │ ├── lib.py │ └── libgore.dll ├── README.md └── go_entry.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /GO_Utils/Firstmoduledata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li4n0/IDAGolangHelper/HEAD/GO_Utils/Firstmoduledata.py -------------------------------------------------------------------------------- /GO_Utils/GoStrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li4n0/IDAGolangHelper/HEAD/GO_Utils/GoStrings.py -------------------------------------------------------------------------------- /GO_Utils/Gopclntab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li4n0/IDAGolangHelper/HEAD/GO_Utils/Gopclntab.py -------------------------------------------------------------------------------- /GO_Utils/Types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li4n0/IDAGolangHelper/HEAD/GO_Utils/Types.py -------------------------------------------------------------------------------- /GO_Utils/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li4n0/IDAGolangHelper/HEAD/GO_Utils/Utils.py -------------------------------------------------------------------------------- /GO_Utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li4n0/IDAGolangHelper/HEAD/GO_Utils/__init__.py -------------------------------------------------------------------------------- /GO_Utils/pygore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li4n0/IDAGolangHelper/HEAD/GO_Utils/pygore/__init__.py -------------------------------------------------------------------------------- /GO_Utils/pygore/internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li4n0/IDAGolangHelper/HEAD/GO_Utils/pygore/internal.py -------------------------------------------------------------------------------- /GO_Utils/pygore/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li4n0/IDAGolangHelper/HEAD/GO_Utils/pygore/lib.py -------------------------------------------------------------------------------- /GO_Utils/pygore/libgore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li4n0/IDAGolangHelper/HEAD/GO_Utils/pygore/libgore.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li4n0/IDAGolangHelper/HEAD/README.md -------------------------------------------------------------------------------- /go_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li4n0/IDAGolangHelper/HEAD/go_entry.py --------------------------------------------------------------------------------