├── .gitignore ├── LICENSE ├── efiobj.py ├── flagGuid.py ├── flag_guids.py ├── global_svc.py ├── guid ├── g.c ├── getguids.sh ├── guids.txt └── readme.txt ├── smmbase.py ├── uefi_anal.py └── uefi_tables.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/LICENSE -------------------------------------------------------------------------------- /efiobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/efiobj.py -------------------------------------------------------------------------------- /flagGuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/flagGuid.py -------------------------------------------------------------------------------- /flag_guids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/flag_guids.py -------------------------------------------------------------------------------- /global_svc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/global_svc.py -------------------------------------------------------------------------------- /guid/g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/guid/g.c -------------------------------------------------------------------------------- /guid/getguids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/guid/getguids.sh -------------------------------------------------------------------------------- /guid/guids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/guid/guids.txt -------------------------------------------------------------------------------- /guid/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/guid/readme.txt -------------------------------------------------------------------------------- /smmbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/smmbase.py -------------------------------------------------------------------------------- /uefi_anal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/uefi_anal.py -------------------------------------------------------------------------------- /uefi_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytbk/radare-uefi/HEAD/uefi_tables.py --------------------------------------------------------------------------------