├── .gitignore ├── .gitmodules ├── README.md ├── agent ├── CMakeLists.txt ├── agent.bin ├── linker.ld └── src │ ├── CMakeLists.txt │ ├── ag.h │ ├── boot.S │ ├── bootinfo.c │ ├── bootinfo.h │ ├── bootkernel.c │ ├── bootrom.c │ ├── drivers │ ├── circbuf.c │ ├── circbuf.h │ ├── i2c.c │ ├── mt6755 │ │ ├── msdc_reg.h │ │ ├── mt_i2c.c │ │ ├── mt_i2c.h │ │ └── pmic │ │ │ ├── Makefile │ │ │ ├── mt6353_hw.h │ │ │ ├── mt_pmic_wrap.c │ │ │ ├── mt_pmic_wrap.h │ │ │ ├── pwrap_hal.c │ │ │ ├── pwrap_hal.h │ │ │ ├── pwrap_hal_d2.h │ │ │ └── pwrap_hal_v1.c │ ├── platform.h │ ├── simple │ │ ├── hacc.c │ │ ├── hacc.h │ │ ├── mmc.c │ │ ├── mmc.h │ │ └── reg.h │ ├── ssusb_sifslv_ippc_c_header.h │ ├── ssusb_usb3_mac_csr_c_header.h │ ├── sync_write.h │ ├── timer.c │ ├── timer.h │ ├── typedefs.h │ ├── usbd.c │ ├── usbd.h │ ├── usbdcore.h │ ├── usbphy.c │ ├── usbphy.h │ ├── usbtty.c │ └── usbtty.h │ ├── efuse.c │ ├── io.h │ ├── ltest.S │ ├── main.c │ ├── partition_rw.c │ ├── patchkernel.c │ ├── pt.c │ ├── ram_console.c │ ├── secpol.c │ ├── test.c │ ├── trustzone.c │ ├── trustzone.h │ ├── usb.h │ ├── usbproto.c │ ├── usbproto.h │ ├── util.S │ └── wdt.h ├── bin ├── agent.bin ├── lk_fastboot.bin ├── lk_payload.bin ├── microloader.bin ├── tee1_oreo.bin ├── tee2_oreo.bin ├── test_recovery_with_exploit.img ├── twrp.img ├── vcom │ ├── cdc-acm.cat │ ├── cdc-acm.inf │ └── x64 │ │ └── usb2ser.sys └── vuln_lk.img ├── cdalib ├── __init__.py ├── commands.py ├── packet.py └── status.py ├── common.py ├── config.py ├── download.py ├── dump-da.py ├── efi ├── BOOTLOG └── flash-uefi.py ├── flash_lk_payload.py ├── ftm.py ├── imginfo.py ├── microloader ├── Makefile ├── common │ └── def.h ├── efiboot │ ├── Makefile │ ├── def.h │ ├── efi.h │ ├── jump.S │ ├── linker.x │ ├── main.c │ ├── ops.S │ └── test.S ├── inject_microloader_nougat.py ├── inject_microloader_oreo.py ├── linker.x ├── linuxboot │ ├── Makefile │ ├── bootimg.h │ ├── drivers │ │ ├── clk │ │ │ ├── clk-gate-v1.h │ │ │ ├── clk-mt6755-pll.h │ │ │ ├── clk-mt6755.c │ │ │ ├── clk-mtk-v1.h │ │ │ ├── clk-mux.h │ │ │ ├── clk-pll-v1.h │ │ │ └── mt6755-clk.h │ │ ├── devbase.h │ │ ├── drivers.c │ │ ├── include │ │ │ ├── drivers.h │ │ │ ├── mach │ │ │ │ ├── mt6353_hw.h │ │ │ │ ├── mt6353_sw.h │ │ │ │ ├── upmu_hw.h │ │ │ │ └── upmu_sw.h │ │ │ └── mt-plat │ │ │ │ ├── mt_pmic_wrap.h │ │ │ │ ├── sync_write.h │ │ │ │ └── upmu_common.h │ │ ├── pmic │ │ │ ├── mt6311.h │ │ │ ├── mt6353 │ │ │ │ └── mt_pmic_info.h │ │ │ ├── mt_pmic_wrap.c │ │ │ ├── pmic.c │ │ │ ├── pmic.h │ │ │ ├── pmic_throttling_dlpt.h │ │ │ ├── pwrap_hal.h │ │ │ ├── pwrap_hal_v1.c │ │ │ └── upmu_common.c │ │ ├── u3hal │ │ │ ├── Makefile │ │ │ ├── mu3d_hal_comm.h │ │ │ ├── mu3d_hal_hw.h │ │ │ ├── mu3d_hal_osal.c │ │ │ ├── mu3d_hal_osal.h │ │ │ ├── mu3d_hal_phy.c │ │ │ ├── mu3d_hal_phy.h │ │ │ ├── mu3d_hal_qmu_drv.c │ │ │ ├── mu3d_hal_qmu_drv.h │ │ │ ├── mu3d_hal_usb_drv.c │ │ │ ├── mu3d_hal_usb_drv.h │ │ │ ├── ssusb_dev_c_header.h │ │ │ ├── ssusb_epctl_csr_c_header.h │ │ │ ├── ssusb_sifslv_ippc_c_header.h │ │ │ ├── ssusb_usb2_csr_c_header.h │ │ │ ├── ssusb_usb3_mac_csr_c_header.h │ │ │ └── ssusb_usb3_sys_csr_c_header.h │ │ └── usb │ │ │ ├── mtk-phy-ahb.c │ │ │ ├── mtk-phy-asic.c │ │ │ ├── mtk-phy-asic.h │ │ │ ├── mtk-phy.c │ │ │ └── mtk-phy.h │ ├── include │ │ ├── linuxboot │ │ │ ├── driverapi.h │ │ │ ├── io.h │ │ │ ├── libc.h │ │ │ ├── linuxcompat.h │ │ │ └── types.h │ │ └── lk │ │ │ └── api.h │ ├── jump.S │ ├── libc │ │ ├── atoi.c │ │ ├── atoi.h │ │ ├── ctype.c │ │ ├── ctype.h │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memmove.c │ │ ├── memset.c │ │ ├── strchr.c │ │ ├── strnlen.c │ │ └── strrchr.c │ ├── linker.x │ ├── main.c │ ├── patchlk.c │ ├── start.S │ ├── u3phy.h │ └── uart.c ├── lkp │ ├── Makefile │ ├── circbuf.c │ ├── circbuf.h │ ├── libc.c │ ├── linker.x │ ├── lk_api.h │ ├── main.c │ ├── platform.h │ ├── ssusb_sifslv_ippc_c_header.h │ ├── ssusb_usb3_mac_csr_c_header.h │ ├── start.S │ ├── timer.c │ ├── timer.h │ ├── typedefs.h │ ├── usbd.c │ ├── usbd.h │ ├── usbdcore.h │ ├── usbphy.c │ ├── usbphy.h │ ├── usbtty.c │ └── usbtty.h ├── main.c └── start.S ├── partdump.py ├── partinfo.py ├── pl.py ├── plib ├── __init__.py ├── commands.py ├── errors.py └── mmc.py ├── read_boot0.py ├── requirements.txt ├── rominfo.py ├── sec ├── seccfg.py ├── secpol.py └── secro.py ├── utils.py └── write_boot0.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/README.md -------------------------------------------------------------------------------- /agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/CMakeLists.txt -------------------------------------------------------------------------------- /agent/agent.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/agent.bin -------------------------------------------------------------------------------- /agent/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/linker.ld -------------------------------------------------------------------------------- /agent/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/CMakeLists.txt -------------------------------------------------------------------------------- /agent/src/ag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/ag.h -------------------------------------------------------------------------------- /agent/src/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/boot.S -------------------------------------------------------------------------------- /agent/src/bootinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/bootinfo.c -------------------------------------------------------------------------------- /agent/src/bootinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/bootinfo.h -------------------------------------------------------------------------------- /agent/src/bootkernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/bootkernel.c -------------------------------------------------------------------------------- /agent/src/bootrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/bootrom.c -------------------------------------------------------------------------------- /agent/src/drivers/circbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/circbuf.c -------------------------------------------------------------------------------- /agent/src/drivers/circbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/circbuf.h -------------------------------------------------------------------------------- /agent/src/drivers/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/i2c.c -------------------------------------------------------------------------------- /agent/src/drivers/mt6755/msdc_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/mt6755/msdc_reg.h -------------------------------------------------------------------------------- /agent/src/drivers/mt6755/mt_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/mt6755/mt_i2c.c -------------------------------------------------------------------------------- /agent/src/drivers/mt6755/mt_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/mt6755/mt_i2c.h -------------------------------------------------------------------------------- /agent/src/drivers/mt6755/pmic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/mt6755/pmic/Makefile -------------------------------------------------------------------------------- /agent/src/drivers/mt6755/pmic/mt6353_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/mt6755/pmic/mt6353_hw.h -------------------------------------------------------------------------------- /agent/src/drivers/mt6755/pmic/mt_pmic_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/mt6755/pmic/mt_pmic_wrap.c -------------------------------------------------------------------------------- /agent/src/drivers/mt6755/pmic/mt_pmic_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/mt6755/pmic/mt_pmic_wrap.h -------------------------------------------------------------------------------- /agent/src/drivers/mt6755/pmic/pwrap_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/mt6755/pmic/pwrap_hal.c -------------------------------------------------------------------------------- /agent/src/drivers/mt6755/pmic/pwrap_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/mt6755/pmic/pwrap_hal.h -------------------------------------------------------------------------------- /agent/src/drivers/mt6755/pmic/pwrap_hal_d2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/mt6755/pmic/pwrap_hal_d2.h -------------------------------------------------------------------------------- /agent/src/drivers/mt6755/pmic/pwrap_hal_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/mt6755/pmic/pwrap_hal_v1.c -------------------------------------------------------------------------------- /agent/src/drivers/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/platform.h -------------------------------------------------------------------------------- /agent/src/drivers/simple/hacc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/simple/hacc.c -------------------------------------------------------------------------------- /agent/src/drivers/simple/hacc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/simple/hacc.h -------------------------------------------------------------------------------- /agent/src/drivers/simple/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/simple/mmc.c -------------------------------------------------------------------------------- /agent/src/drivers/simple/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/simple/mmc.h -------------------------------------------------------------------------------- /agent/src/drivers/simple/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/simple/reg.h -------------------------------------------------------------------------------- /agent/src/drivers/ssusb_sifslv_ippc_c_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/ssusb_sifslv_ippc_c_header.h -------------------------------------------------------------------------------- /agent/src/drivers/ssusb_usb3_mac_csr_c_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/ssusb_usb3_mac_csr_c_header.h -------------------------------------------------------------------------------- /agent/src/drivers/sync_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/sync_write.h -------------------------------------------------------------------------------- /agent/src/drivers/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/timer.c -------------------------------------------------------------------------------- /agent/src/drivers/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/timer.h -------------------------------------------------------------------------------- /agent/src/drivers/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/typedefs.h -------------------------------------------------------------------------------- /agent/src/drivers/usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/usbd.c -------------------------------------------------------------------------------- /agent/src/drivers/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/usbd.h -------------------------------------------------------------------------------- /agent/src/drivers/usbdcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/usbdcore.h -------------------------------------------------------------------------------- /agent/src/drivers/usbphy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/usbphy.c -------------------------------------------------------------------------------- /agent/src/drivers/usbphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/usbphy.h -------------------------------------------------------------------------------- /agent/src/drivers/usbtty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/usbtty.c -------------------------------------------------------------------------------- /agent/src/drivers/usbtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/drivers/usbtty.h -------------------------------------------------------------------------------- /agent/src/efuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/efuse.c -------------------------------------------------------------------------------- /agent/src/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/io.h -------------------------------------------------------------------------------- /agent/src/ltest.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/main.c -------------------------------------------------------------------------------- /agent/src/partition_rw.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/src/patchkernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/patchkernel.c -------------------------------------------------------------------------------- /agent/src/pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/pt.c -------------------------------------------------------------------------------- /agent/src/ram_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/ram_console.c -------------------------------------------------------------------------------- /agent/src/secpol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/secpol.c -------------------------------------------------------------------------------- /agent/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/test.c -------------------------------------------------------------------------------- /agent/src/trustzone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/trustzone.c -------------------------------------------------------------------------------- /agent/src/trustzone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/trustzone.h -------------------------------------------------------------------------------- /agent/src/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/usb.h -------------------------------------------------------------------------------- /agent/src/usbproto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/usbproto.c -------------------------------------------------------------------------------- /agent/src/usbproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/usbproto.h -------------------------------------------------------------------------------- /agent/src/util.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/util.S -------------------------------------------------------------------------------- /agent/src/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/agent/src/wdt.h -------------------------------------------------------------------------------- /bin/agent.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/bin/agent.bin -------------------------------------------------------------------------------- /bin/lk_fastboot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/bin/lk_fastboot.bin -------------------------------------------------------------------------------- /bin/lk_payload.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/bin/lk_payload.bin -------------------------------------------------------------------------------- /bin/microloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/bin/microloader.bin -------------------------------------------------------------------------------- /bin/tee1_oreo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/bin/tee1_oreo.bin -------------------------------------------------------------------------------- /bin/tee2_oreo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/bin/tee2_oreo.bin -------------------------------------------------------------------------------- /bin/test_recovery_with_exploit.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/bin/test_recovery_with_exploit.img -------------------------------------------------------------------------------- /bin/twrp.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/bin/twrp.img -------------------------------------------------------------------------------- /bin/vcom/cdc-acm.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/bin/vcom/cdc-acm.cat -------------------------------------------------------------------------------- /bin/vcom/cdc-acm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/bin/vcom/cdc-acm.inf -------------------------------------------------------------------------------- /bin/vcom/x64/usb2ser.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/bin/vcom/x64/usb2ser.sys -------------------------------------------------------------------------------- /bin/vuln_lk.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/bin/vuln_lk.img -------------------------------------------------------------------------------- /cdalib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/cdalib/__init__.py -------------------------------------------------------------------------------- /cdalib/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/cdalib/commands.py -------------------------------------------------------------------------------- /cdalib/packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/cdalib/packet.py -------------------------------------------------------------------------------- /cdalib/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/cdalib/status.py -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/common.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/config.py -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/download.py -------------------------------------------------------------------------------- /dump-da.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/dump-da.py -------------------------------------------------------------------------------- /efi/BOOTLOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/efi/BOOTLOG -------------------------------------------------------------------------------- /efi/flash-uefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/efi/flash-uefi.py -------------------------------------------------------------------------------- /flash_lk_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/flash_lk_payload.py -------------------------------------------------------------------------------- /ftm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/ftm.py -------------------------------------------------------------------------------- /imginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/imginfo.py -------------------------------------------------------------------------------- /microloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/Makefile -------------------------------------------------------------------------------- /microloader/common/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/common/def.h -------------------------------------------------------------------------------- /microloader/efiboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/efiboot/Makefile -------------------------------------------------------------------------------- /microloader/efiboot/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/efiboot/def.h -------------------------------------------------------------------------------- /microloader/efiboot/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/efiboot/efi.h -------------------------------------------------------------------------------- /microloader/efiboot/jump.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/efiboot/jump.S -------------------------------------------------------------------------------- /microloader/efiboot/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/efiboot/linker.x -------------------------------------------------------------------------------- /microloader/efiboot/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/efiboot/main.c -------------------------------------------------------------------------------- /microloader/efiboot/ops.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/efiboot/ops.S -------------------------------------------------------------------------------- /microloader/efiboot/test.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/efiboot/test.S -------------------------------------------------------------------------------- /microloader/inject_microloader_nougat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/inject_microloader_nougat.py -------------------------------------------------------------------------------- /microloader/inject_microloader_oreo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/inject_microloader_oreo.py -------------------------------------------------------------------------------- /microloader/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linker.x -------------------------------------------------------------------------------- /microloader/linuxboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/Makefile -------------------------------------------------------------------------------- /microloader/linuxboot/bootimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/bootimg.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/clk/clk-gate-v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/clk/clk-gate-v1.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/clk/clk-mt6755-pll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/clk/clk-mt6755-pll.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/clk/clk-mt6755.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/clk/clk-mt6755.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/clk/clk-mtk-v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/clk/clk-mtk-v1.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/clk/clk-mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/clk/clk-mux.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/clk/clk-pll-v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/clk/clk-pll-v1.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/clk/mt6755-clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/clk/mt6755-clk.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/devbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/devbase.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/drivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/drivers.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/include/drivers.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void linuxboot_pmic_init(); -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/include/mach/mt6353_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/include/mach/mt6353_hw.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/include/mach/mt6353_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/include/mach/mt6353_sw.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/include/mach/upmu_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/include/mach/upmu_hw.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/include/mach/upmu_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/include/mach/upmu_sw.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/include/mt-plat/mt_pmic_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/include/mt-plat/mt_pmic_wrap.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/include/mt-plat/sync_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/include/mt-plat/sync_write.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/include/mt-plat/upmu_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/include/mt-plat/upmu_common.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/pmic/mt6311.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/pmic/mt6311.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/pmic/mt6353/mt_pmic_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/pmic/mt6353/mt_pmic_info.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/pmic/mt_pmic_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/pmic/mt_pmic_wrap.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/pmic/pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/pmic/pmic.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/pmic/pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/pmic/pmic.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/pmic/pmic_throttling_dlpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/pmic/pmic_throttling_dlpt.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/pmic/pwrap_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/pmic/pwrap_hal.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/pmic/pwrap_hal_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/pmic/pwrap_hal_v1.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/pmic/upmu_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/pmic/upmu_common.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/Makefile -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/mu3d_hal_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/mu3d_hal_comm.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/mu3d_hal_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/mu3d_hal_hw.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/mu3d_hal_osal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/mu3d_hal_osal.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/mu3d_hal_osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/mu3d_hal_osal.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/mu3d_hal_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/mu3d_hal_phy.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/mu3d_hal_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/mu3d_hal_phy.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/mu3d_hal_qmu_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/mu3d_hal_qmu_drv.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/mu3d_hal_qmu_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/mu3d_hal_qmu_drv.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/mu3d_hal_usb_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/mu3d_hal_usb_drv.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/mu3d_hal_usb_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/mu3d_hal_usb_drv.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/ssusb_dev_c_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/ssusb_dev_c_header.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/ssusb_epctl_csr_c_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/ssusb_epctl_csr_c_header.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/ssusb_sifslv_ippc_c_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/ssusb_sifslv_ippc_c_header.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/ssusb_usb2_csr_c_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/ssusb_usb2_csr_c_header.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/ssusb_usb3_mac_csr_c_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/ssusb_usb3_mac_csr_c_header.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/u3hal/ssusb_usb3_sys_csr_c_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/u3hal/ssusb_usb3_sys_csr_c_header.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/usb/mtk-phy-ahb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/usb/mtk-phy-ahb.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/usb/mtk-phy-asic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/usb/mtk-phy-asic.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/usb/mtk-phy-asic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/usb/mtk-phy-asic.h -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/usb/mtk-phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/usb/mtk-phy.c -------------------------------------------------------------------------------- /microloader/linuxboot/drivers/usb/mtk-phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/drivers/usb/mtk-phy.h -------------------------------------------------------------------------------- /microloader/linuxboot/include/linuxboot/driverapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/include/linuxboot/driverapi.h -------------------------------------------------------------------------------- /microloader/linuxboot/include/linuxboot/io.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /microloader/linuxboot/include/linuxboot/libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/include/linuxboot/libc.h -------------------------------------------------------------------------------- /microloader/linuxboot/include/linuxboot/linuxcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/include/linuxboot/linuxcompat.h -------------------------------------------------------------------------------- /microloader/linuxboot/include/linuxboot/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/include/linuxboot/types.h -------------------------------------------------------------------------------- /microloader/linuxboot/include/lk/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/include/lk/api.h -------------------------------------------------------------------------------- /microloader/linuxboot/jump.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/jump.S -------------------------------------------------------------------------------- /microloader/linuxboot/libc/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/libc/atoi.c -------------------------------------------------------------------------------- /microloader/linuxboot/libc/atoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/libc/atoi.h -------------------------------------------------------------------------------- /microloader/linuxboot/libc/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/libc/ctype.c -------------------------------------------------------------------------------- /microloader/linuxboot/libc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/libc/ctype.h -------------------------------------------------------------------------------- /microloader/linuxboot/libc/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/libc/memchr.c -------------------------------------------------------------------------------- /microloader/linuxboot/libc/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/libc/memcmp.c -------------------------------------------------------------------------------- /microloader/linuxboot/libc/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/libc/memcpy.c -------------------------------------------------------------------------------- /microloader/linuxboot/libc/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/libc/memmove.c -------------------------------------------------------------------------------- /microloader/linuxboot/libc/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/libc/memset.c -------------------------------------------------------------------------------- /microloader/linuxboot/libc/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/libc/strchr.c -------------------------------------------------------------------------------- /microloader/linuxboot/libc/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/libc/strnlen.c -------------------------------------------------------------------------------- /microloader/linuxboot/libc/strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/libc/strrchr.c -------------------------------------------------------------------------------- /microloader/linuxboot/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/linker.x -------------------------------------------------------------------------------- /microloader/linuxboot/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/main.c -------------------------------------------------------------------------------- /microloader/linuxboot/patchlk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/patchlk.c -------------------------------------------------------------------------------- /microloader/linuxboot/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/start.S -------------------------------------------------------------------------------- /microloader/linuxboot/u3phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/u3phy.h -------------------------------------------------------------------------------- /microloader/linuxboot/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/linuxboot/uart.c -------------------------------------------------------------------------------- /microloader/lkp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/Makefile -------------------------------------------------------------------------------- /microloader/lkp/circbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/circbuf.c -------------------------------------------------------------------------------- /microloader/lkp/circbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/circbuf.h -------------------------------------------------------------------------------- /microloader/lkp/libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/libc.c -------------------------------------------------------------------------------- /microloader/lkp/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/linker.x -------------------------------------------------------------------------------- /microloader/lkp/lk_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/lk_api.h -------------------------------------------------------------------------------- /microloader/lkp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/main.c -------------------------------------------------------------------------------- /microloader/lkp/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/platform.h -------------------------------------------------------------------------------- /microloader/lkp/ssusb_sifslv_ippc_c_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/ssusb_sifslv_ippc_c_header.h -------------------------------------------------------------------------------- /microloader/lkp/ssusb_usb3_mac_csr_c_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/ssusb_usb3_mac_csr_c_header.h -------------------------------------------------------------------------------- /microloader/lkp/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/start.S -------------------------------------------------------------------------------- /microloader/lkp/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/timer.c -------------------------------------------------------------------------------- /microloader/lkp/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/timer.h -------------------------------------------------------------------------------- /microloader/lkp/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/typedefs.h -------------------------------------------------------------------------------- /microloader/lkp/usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/usbd.c -------------------------------------------------------------------------------- /microloader/lkp/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/usbd.h -------------------------------------------------------------------------------- /microloader/lkp/usbdcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/usbdcore.h -------------------------------------------------------------------------------- /microloader/lkp/usbphy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/usbphy.c -------------------------------------------------------------------------------- /microloader/lkp/usbphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/usbphy.h -------------------------------------------------------------------------------- /microloader/lkp/usbtty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/usbtty.c -------------------------------------------------------------------------------- /microloader/lkp/usbtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/lkp/usbtty.h -------------------------------------------------------------------------------- /microloader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/main.c -------------------------------------------------------------------------------- /microloader/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/microloader/start.S -------------------------------------------------------------------------------- /partdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/partdump.py -------------------------------------------------------------------------------- /partinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/partinfo.py -------------------------------------------------------------------------------- /pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/pl.py -------------------------------------------------------------------------------- /plib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/plib/__init__.py -------------------------------------------------------------------------------- /plib/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/plib/commands.py -------------------------------------------------------------------------------- /plib/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/plib/errors.py -------------------------------------------------------------------------------- /plib/mmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/plib/mmc.py -------------------------------------------------------------------------------- /read_boot0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/read_boot0.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyserial==3.5 2 | -------------------------------------------------------------------------------- /rominfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/rominfo.py -------------------------------------------------------------------------------- /sec/seccfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/sec/seccfg.py -------------------------------------------------------------------------------- /sec/secpol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/sec/secpol.py -------------------------------------------------------------------------------- /sec/secro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/sec/secro.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/utils.py -------------------------------------------------------------------------------- /write_boot0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturkow2000/lgk10exploit/HEAD/write_boot0.py --------------------------------------------------------------------------------