├── .appveyor.yml ├── CMakeLists.txt ├── README.md ├── iced_id_parser ├── CMakeLists.txt ├── README.md ├── iceid_header.h ├── iceid_parser.cpp ├── iceid_parser.h ├── iceid_to_pe.cpp ├── iceid_to_pe.h ├── main.cpp ├── util.cpp └── util.h ├── isfb_parser ├── CMakeLists.txt ├── README.md ├── isfb_header.h ├── isfb_parser.cpp ├── isfb_parser.h ├── isfb_to_pe.cpp ├── isfb_to_pe.h ├── main.cpp ├── util.cpp └── util.h └── lotus_parser ├── CMakeLists.txt ├── README.md ├── file_util.cpp ├── file_util.h ├── lotus_headers.cpp ├── lotus_headers.h ├── lotus_print.cpp ├── lotus_print.h └── main.cpp /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/README.md -------------------------------------------------------------------------------- /iced_id_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/iced_id_parser/CMakeLists.txt -------------------------------------------------------------------------------- /iced_id_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/iced_id_parser/README.md -------------------------------------------------------------------------------- /iced_id_parser/iceid_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/iced_id_parser/iceid_header.h -------------------------------------------------------------------------------- /iced_id_parser/iceid_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/iced_id_parser/iceid_parser.cpp -------------------------------------------------------------------------------- /iced_id_parser/iceid_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/iced_id_parser/iceid_parser.h -------------------------------------------------------------------------------- /iced_id_parser/iceid_to_pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/iced_id_parser/iceid_to_pe.cpp -------------------------------------------------------------------------------- /iced_id_parser/iceid_to_pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/iced_id_parser/iceid_to_pe.h -------------------------------------------------------------------------------- /iced_id_parser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/iced_id_parser/main.cpp -------------------------------------------------------------------------------- /iced_id_parser/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/iced_id_parser/util.cpp -------------------------------------------------------------------------------- /iced_id_parser/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/iced_id_parser/util.h -------------------------------------------------------------------------------- /isfb_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/isfb_parser/CMakeLists.txt -------------------------------------------------------------------------------- /isfb_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/isfb_parser/README.md -------------------------------------------------------------------------------- /isfb_parser/isfb_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/isfb_parser/isfb_header.h -------------------------------------------------------------------------------- /isfb_parser/isfb_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/isfb_parser/isfb_parser.cpp -------------------------------------------------------------------------------- /isfb_parser/isfb_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/isfb_parser/isfb_parser.h -------------------------------------------------------------------------------- /isfb_parser/isfb_to_pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/isfb_parser/isfb_to_pe.cpp -------------------------------------------------------------------------------- /isfb_parser/isfb_to_pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/isfb_parser/isfb_to_pe.h -------------------------------------------------------------------------------- /isfb_parser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/isfb_parser/main.cpp -------------------------------------------------------------------------------- /isfb_parser/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/isfb_parser/util.cpp -------------------------------------------------------------------------------- /isfb_parser/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/isfb_parser/util.h -------------------------------------------------------------------------------- /lotus_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/lotus_parser/CMakeLists.txt -------------------------------------------------------------------------------- /lotus_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/lotus_parser/README.md -------------------------------------------------------------------------------- /lotus_parser/file_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/lotus_parser/file_util.cpp -------------------------------------------------------------------------------- /lotus_parser/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/lotus_parser/file_util.h -------------------------------------------------------------------------------- /lotus_parser/lotus_headers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/lotus_parser/lotus_headers.cpp -------------------------------------------------------------------------------- /lotus_parser/lotus_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/lotus_parser/lotus_headers.h -------------------------------------------------------------------------------- /lotus_parser/lotus_print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/lotus_parser/lotus_print.cpp -------------------------------------------------------------------------------- /lotus_parser/lotus_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/lotus_parser/lotus_print.h -------------------------------------------------------------------------------- /lotus_parser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/funky_malware_formats/HEAD/lotus_parser/main.cpp --------------------------------------------------------------------------------