gitextract_so1rfj4w/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.YML │ └── workflows/ │ └── ci.yaml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── anomaly.go ├── anomaly_test.go ├── arch.go ├── boundimports.go ├── boundimports_test.go ├── cmd/ │ ├── dump.go │ ├── main.go │ ├── size.go │ └── size_test.go ├── debug.go ├── debug_test.go ├── delayimports.go ├── delayimports_test.go ├── dosheader.go ├── dosheader_test.go ├── dotnet.go ├── dotnet_helper.go ├── dotnet_metadata_tables.go ├── dotnet_test.go ├── exception.go ├── exception_test.go ├── exports.go ├── exports_test.go ├── file.go ├── file_test.go ├── globalptr.go ├── go.mod ├── go.sum ├── helper.go ├── helper_test.go ├── iat.go ├── imports.go ├── imports_test.go ├── loadconfig.go ├── loadconfig_test.go ├── log/ │ ├── README.md │ ├── filter.go │ ├── filter_test.go │ ├── global.go │ ├── global_test.go │ ├── helper.go │ ├── helper_test.go │ ├── level.go │ ├── level_test.go │ ├── log.go │ ├── log_test.go │ ├── std.go │ ├── std_test.go │ ├── value.go │ └── value_test.go ├── ntheader.go ├── ntheader_test.go ├── ordlookup.go ├── overlay.go ├── overlay_test.go ├── pe.go ├── reloc.go ├── reloc_test.go ├── resource.go ├── resource_test.go ├── richheader.go ├── richheader_test.go ├── scripts/ │ ├── extract-rsrc-lang.py │ └── ms-lcid.txt ├── section.go ├── section_test.go ├── security.go ├── security_linux_mac.go ├── security_test.go ├── security_windows.go ├── staticcheck.conf ├── symbol.go ├── symbol_test.go ├── test/ │ ├── WdBoot.sys │ ├── acpi.sys │ ├── amdi2c.sys │ ├── amdxata.sys │ └── look ├── tls.go ├── tls_test.go ├── version.go └── version_test.go