├── .gitattributes ├── .gitignore ├── doc ├── CHANGELOG.TXT ├── INDEX.TXT ├── README.TXT └── SAMPLES.TXT ├── mapimp.c ├── mapimp.h ├── mapimp.sln ├── mapimp.vcxproj ├── mapimp.vcxproj.filters ├── masktest.c ├── masktest.vcxproj ├── masktest.vcxproj.filters ├── pcre ├── README.TXT ├── pcre.h ├── pcre.lib ├── pcre16.lib └── t_pcre.h └── pdk ├── idbg ├── ImmunityDebugger.def ├── README.TXT ├── immunitydebugger.exp ├── immunitydebugger.lib └── plugin.h ├── odbg ├── Ollydbg.def ├── README.TXT ├── ollydbgvc7.lib └── plugin.h └── odbg2 ├── README.TXT ├── ollydbg.lib └── plugin.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/.gitignore -------------------------------------------------------------------------------- /doc/CHANGELOG.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/doc/CHANGELOG.TXT -------------------------------------------------------------------------------- /doc/INDEX.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/doc/INDEX.TXT -------------------------------------------------------------------------------- /doc/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/doc/README.TXT -------------------------------------------------------------------------------- /doc/SAMPLES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/doc/SAMPLES.TXT -------------------------------------------------------------------------------- /mapimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/mapimp.c -------------------------------------------------------------------------------- /mapimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/mapimp.h -------------------------------------------------------------------------------- /mapimp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/mapimp.sln -------------------------------------------------------------------------------- /mapimp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/mapimp.vcxproj -------------------------------------------------------------------------------- /mapimp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/mapimp.vcxproj.filters -------------------------------------------------------------------------------- /masktest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/masktest.c -------------------------------------------------------------------------------- /masktest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/masktest.vcxproj -------------------------------------------------------------------------------- /masktest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/masktest.vcxproj.filters -------------------------------------------------------------------------------- /pcre/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pcre/README.TXT -------------------------------------------------------------------------------- /pcre/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pcre/pcre.h -------------------------------------------------------------------------------- /pcre/pcre.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pcre/pcre.lib -------------------------------------------------------------------------------- /pcre/pcre16.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pcre/pcre16.lib -------------------------------------------------------------------------------- /pcre/t_pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pcre/t_pcre.h -------------------------------------------------------------------------------- /pdk/idbg/ImmunityDebugger.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pdk/idbg/ImmunityDebugger.def -------------------------------------------------------------------------------- /pdk/idbg/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pdk/idbg/README.TXT -------------------------------------------------------------------------------- /pdk/idbg/immunitydebugger.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pdk/idbg/immunitydebugger.exp -------------------------------------------------------------------------------- /pdk/idbg/immunitydebugger.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pdk/idbg/immunitydebugger.lib -------------------------------------------------------------------------------- /pdk/idbg/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pdk/idbg/plugin.h -------------------------------------------------------------------------------- /pdk/odbg/Ollydbg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pdk/odbg/Ollydbg.def -------------------------------------------------------------------------------- /pdk/odbg/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pdk/odbg/README.TXT -------------------------------------------------------------------------------- /pdk/odbg/ollydbgvc7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pdk/odbg/ollydbgvc7.lib -------------------------------------------------------------------------------- /pdk/odbg/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pdk/odbg/plugin.h -------------------------------------------------------------------------------- /pdk/odbg2/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pdk/odbg2/README.TXT -------------------------------------------------------------------------------- /pdk/odbg2/ollydbg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pdk/odbg2/ollydbg.lib -------------------------------------------------------------------------------- /pdk/odbg2/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m417z/mapimp/HEAD/pdk/odbg2/plugin.h --------------------------------------------------------------------------------