├── README-DECOMP.md ├── README.md ├── ghidra ├── .gitignore ├── xz.gpr └── xz.rep │ ├── idata │ ├── 00 │ │ ├── 00000000.prp │ │ └── ~00000000.db │ │ │ └── db.15.gbf │ └── ~index.dat │ ├── project.prp │ ├── projectState │ ├── user │ ├── 00 │ │ ├── 00000000.prp │ │ └── ~00000000.db │ │ │ └── db.4.gbf │ └── ~index.dat │ └── versioned │ └── ~index.dat ├── liblzma_la-crc64-fast.c ├── liblzma_la-crc64-fast.o └── liblzma_la-crc64-fast.txt /README-DECOMP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/README-DECOMP.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/README.md -------------------------------------------------------------------------------- /ghidra/.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | -------------------------------------------------------------------------------- /ghidra/xz.gpr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ghidra/xz.rep/idata/00/00000000.prp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/ghidra/xz.rep/idata/00/00000000.prp -------------------------------------------------------------------------------- /ghidra/xz.rep/idata/00/~00000000.db/db.15.gbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/ghidra/xz.rep/idata/00/~00000000.db/db.15.gbf -------------------------------------------------------------------------------- /ghidra/xz.rep/idata/~index.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/ghidra/xz.rep/idata/~index.dat -------------------------------------------------------------------------------- /ghidra/xz.rep/project.prp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/ghidra/xz.rep/project.prp -------------------------------------------------------------------------------- /ghidra/xz.rep/projectState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/ghidra/xz.rep/projectState -------------------------------------------------------------------------------- /ghidra/xz.rep/user/00/00000000.prp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/ghidra/xz.rep/user/00/00000000.prp -------------------------------------------------------------------------------- /ghidra/xz.rep/user/00/~00000000.db/db.4.gbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/ghidra/xz.rep/user/00/~00000000.db/db.4.gbf -------------------------------------------------------------------------------- /ghidra/xz.rep/user/~index.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/ghidra/xz.rep/user/~index.dat -------------------------------------------------------------------------------- /ghidra/xz.rep/versioned/~index.dat: -------------------------------------------------------------------------------- 1 | VERSION=1 2 | / 3 | NEXT-ID:0 4 | MD5:d41d8cd98f00b204e9800998ecf8427e 5 | -------------------------------------------------------------------------------- /liblzma_la-crc64-fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/liblzma_la-crc64-fast.c -------------------------------------------------------------------------------- /liblzma_la-crc64-fast.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/liblzma_la-crc64-fast.o -------------------------------------------------------------------------------- /liblzma_la-crc64-fast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Midar/xz-backdoor-documentation/HEAD/liblzma_la-crc64-fast.txt --------------------------------------------------------------------------------