├── .appveyor.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── driver_comm.cpp ├── driver_comm.h ├── logo ├── favicon.ico └── logo.png ├── main.cpp ├── mal_unpack.manifest ├── mal_unpack_res.rc ├── mal_unpack_ver.h ├── ntddk.h ├── params.h ├── unpack_dir.bat ├── unpack_scanner.cpp ├── unpack_scanner.h └── util ├── file_util.cpp ├── file_util.h ├── path_util.cpp ├── path_util.h ├── process_util.cpp ├── process_util.h ├── rm_util.cpp └── rm_util.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | RC* 2 | *.aps 3 | *.bak 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/README.md -------------------------------------------------------------------------------- /driver_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/driver_comm.cpp -------------------------------------------------------------------------------- /driver_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/driver_comm.h -------------------------------------------------------------------------------- /logo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/logo/favicon.ico -------------------------------------------------------------------------------- /logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/logo/logo.png -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/main.cpp -------------------------------------------------------------------------------- /mal_unpack.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/mal_unpack.manifest -------------------------------------------------------------------------------- /mal_unpack_res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/mal_unpack_res.rc -------------------------------------------------------------------------------- /mal_unpack_ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/mal_unpack_ver.h -------------------------------------------------------------------------------- /ntddk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/ntddk.h -------------------------------------------------------------------------------- /params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/params.h -------------------------------------------------------------------------------- /unpack_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/unpack_dir.bat -------------------------------------------------------------------------------- /unpack_scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/unpack_scanner.cpp -------------------------------------------------------------------------------- /unpack_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/unpack_scanner.h -------------------------------------------------------------------------------- /util/file_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/util/file_util.cpp -------------------------------------------------------------------------------- /util/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/util/file_util.h -------------------------------------------------------------------------------- /util/path_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/util/path_util.cpp -------------------------------------------------------------------------------- /util/path_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/util/path_util.h -------------------------------------------------------------------------------- /util/process_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/util/process_util.cpp -------------------------------------------------------------------------------- /util/process_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/util/process_util.h -------------------------------------------------------------------------------- /util/rm_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/util/rm_util.cpp -------------------------------------------------------------------------------- /util/rm_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack/HEAD/util/rm_util.h --------------------------------------------------------------------------------