├── LICENSE ├── README.md └── tools ├── 2fa ├── .bochsrc.txt ├── .gitignore ├── 2fa.c ├── Makefile ├── README.md ├── boot.S ├── cmos.h ├── crt0.h ├── io.h ├── kbd.h ├── linker.ld ├── tiny2fa │ ├── google_pam │ │ ├── LICENSE │ │ ├── base32.h │ │ ├── hmac.h │ │ └── sha1.h │ └── tiny2fa.h ├── types.h ├── ui.h ├── util.h └── vga.h ├── README.md ├── basic ├── .bochsrc.txt ├── .gitignore ├── IBM_BASIC_C10.bin ├── Makefile ├── README.md ├── cassette_idt_h.img ├── csum.c └── pnp.asm ├── bios_nim ├── README.md ├── bbnim.asm ├── defines.inc ├── docs │ ├── LBCar.pdf │ ├── Oded Stanford Annual Forum 2014.pdf │ └── cache_as_ram_lb_09142006.pdf └── nim.asm ├── find_asm.sh ├── find_gaps ├── .gitignore ├── Makefile └── find_gaps.c ├── mdump ├── .bochsrc.txt ├── .gitignore ├── Makefile ├── README.md ├── mdump.asm └── mdump.c ├── nim ├── .bochsrc.txt ├── .gitignore ├── Makefile ├── boot.S ├── linker.ld └── nim.S ├── sdtlist ├── .gitignore ├── Makefile ├── README.md └── sdt.c └── skip_strings.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/README.md -------------------------------------------------------------------------------- /tools/2fa/.bochsrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/.bochsrc.txt -------------------------------------------------------------------------------- /tools/2fa/.gitignore: -------------------------------------------------------------------------------- 1 | *.img 2 | *.o 3 | bx_enh_dbg.ini 4 | -------------------------------------------------------------------------------- /tools/2fa/2fa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/2fa.c -------------------------------------------------------------------------------- /tools/2fa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/Makefile -------------------------------------------------------------------------------- /tools/2fa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/README.md -------------------------------------------------------------------------------- /tools/2fa/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/boot.S -------------------------------------------------------------------------------- /tools/2fa/cmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/cmos.h -------------------------------------------------------------------------------- /tools/2fa/crt0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/crt0.h -------------------------------------------------------------------------------- /tools/2fa/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/io.h -------------------------------------------------------------------------------- /tools/2fa/kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/kbd.h -------------------------------------------------------------------------------- /tools/2fa/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/linker.ld -------------------------------------------------------------------------------- /tools/2fa/tiny2fa/google_pam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/tiny2fa/google_pam/LICENSE -------------------------------------------------------------------------------- /tools/2fa/tiny2fa/google_pam/base32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/tiny2fa/google_pam/base32.h -------------------------------------------------------------------------------- /tools/2fa/tiny2fa/google_pam/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/tiny2fa/google_pam/hmac.h -------------------------------------------------------------------------------- /tools/2fa/tiny2fa/google_pam/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/tiny2fa/google_pam/sha1.h -------------------------------------------------------------------------------- /tools/2fa/tiny2fa/tiny2fa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/tiny2fa/tiny2fa.h -------------------------------------------------------------------------------- /tools/2fa/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/types.h -------------------------------------------------------------------------------- /tools/2fa/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/ui.h -------------------------------------------------------------------------------- /tools/2fa/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/util.h -------------------------------------------------------------------------------- /tools/2fa/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/2fa/vga.h -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/basic/.bochsrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/basic/.bochsrc.txt -------------------------------------------------------------------------------- /tools/basic/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | csum 3 | pnp.rom 4 | -------------------------------------------------------------------------------- /tools/basic/IBM_BASIC_C10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/basic/IBM_BASIC_C10.bin -------------------------------------------------------------------------------- /tools/basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/basic/Makefile -------------------------------------------------------------------------------- /tools/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/basic/README.md -------------------------------------------------------------------------------- /tools/basic/cassette_idt_h.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/basic/cassette_idt_h.img -------------------------------------------------------------------------------- /tools/basic/csum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/basic/csum.c -------------------------------------------------------------------------------- /tools/basic/pnp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/basic/pnp.asm -------------------------------------------------------------------------------- /tools/bios_nim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/bios_nim/README.md -------------------------------------------------------------------------------- /tools/bios_nim/bbnim.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/bios_nim/bbnim.asm -------------------------------------------------------------------------------- /tools/bios_nim/defines.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/bios_nim/defines.inc -------------------------------------------------------------------------------- /tools/bios_nim/docs/LBCar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/bios_nim/docs/LBCar.pdf -------------------------------------------------------------------------------- /tools/bios_nim/docs/Oded Stanford Annual Forum 2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/bios_nim/docs/Oded Stanford Annual Forum 2014.pdf -------------------------------------------------------------------------------- /tools/bios_nim/docs/cache_as_ram_lb_09142006.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/bios_nim/docs/cache_as_ram_lb_09142006.pdf -------------------------------------------------------------------------------- /tools/bios_nim/nim.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/bios_nim/nim.asm -------------------------------------------------------------------------------- /tools/find_asm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/find_asm.sh -------------------------------------------------------------------------------- /tools/find_gaps/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | find_gaps 3 | 4 | -------------------------------------------------------------------------------- /tools/find_gaps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/find_gaps/Makefile -------------------------------------------------------------------------------- /tools/find_gaps/find_gaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/find_gaps/find_gaps.c -------------------------------------------------------------------------------- /tools/mdump/.bochsrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/mdump/.bochsrc.txt -------------------------------------------------------------------------------- /tools/mdump/.gitignore: -------------------------------------------------------------------------------- 1 | *.img 2 | *.o 3 | mdump 4 | bx_enh_dbg.ini 5 | 6 | -------------------------------------------------------------------------------- /tools/mdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/mdump/Makefile -------------------------------------------------------------------------------- /tools/mdump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/mdump/README.md -------------------------------------------------------------------------------- /tools/mdump/mdump.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/mdump/mdump.asm -------------------------------------------------------------------------------- /tools/mdump/mdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/mdump/mdump.c -------------------------------------------------------------------------------- /tools/nim/.bochsrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/nim/.bochsrc.txt -------------------------------------------------------------------------------- /tools/nim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/nim/.gitignore -------------------------------------------------------------------------------- /tools/nim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/nim/Makefile -------------------------------------------------------------------------------- /tools/nim/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/nim/boot.S -------------------------------------------------------------------------------- /tools/nim/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/nim/linker.ld -------------------------------------------------------------------------------- /tools/nim/nim.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/nim/nim.S -------------------------------------------------------------------------------- /tools/sdtlist/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | sdt 3 | -------------------------------------------------------------------------------- /tools/sdtlist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/sdtlist/Makefile -------------------------------------------------------------------------------- /tools/sdtlist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/sdtlist/README.md -------------------------------------------------------------------------------- /tools/sdtlist/sdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/sdtlist/sdt.c -------------------------------------------------------------------------------- /tools/skip_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/AMI_BIOS_CodeInjection/HEAD/tools/skip_strings.sh --------------------------------------------------------------------------------