├── .gitignore ├── LICENSE ├── README.md ├── README_cn.md ├── common.py ├── go_parser.py ├── imgs ├── go_binary_info.png ├── map_type_parse_eg.png └── srcfiles.png ├── itab.py ├── moduledata.py ├── pclntbl.py ├── str_ptr.py ├── strings.py └── types_builder.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/README_cn.md -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/common.py -------------------------------------------------------------------------------- /go_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/go_parser.py -------------------------------------------------------------------------------- /imgs/go_binary_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/imgs/go_binary_info.png -------------------------------------------------------------------------------- /imgs/map_type_parse_eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/imgs/map_type_parse_eg.png -------------------------------------------------------------------------------- /imgs/srcfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/imgs/srcfiles.png -------------------------------------------------------------------------------- /itab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/itab.py -------------------------------------------------------------------------------- /moduledata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/moduledata.py -------------------------------------------------------------------------------- /pclntbl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/pclntbl.py -------------------------------------------------------------------------------- /str_ptr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/str_ptr.py -------------------------------------------------------------------------------- /strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/strings.py -------------------------------------------------------------------------------- /types_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xjiayu/go_parser/HEAD/types_builder.py --------------------------------------------------------------------------------