├── .gitattributes ├── .gitignore ├── 010_exp ├── 010_exp.cbp ├── 010_exp.depend ├── 010_exp.layout ├── attack.c ├── attack.h ├── dep_lib │ ├── Doublepulsar-1.3.1.xml │ ├── Eternalblue-2.2.0.xml │ ├── Eternalchampion-2.0.0.xml │ ├── Eternalromance-1.4.0.xml │ ├── Namedpipetouch-2.0.0.xml │ ├── Rpctouch-2.1.0.xml │ ├── Smbtouch-1.1.1.xml │ ├── adfw-2.dll │ ├── adfw.dll │ ├── bd_x64.dll │ ├── bd_x86.dll │ ├── cnli-0.dll │ ├── cnli-1.dll │ ├── coli-0.dll │ ├── crli-0.dll │ ├── dmgd-1.dll │ ├── dmgd-4.dll │ ├── esco-0.dll │ ├── exma-1.dll │ ├── exma.dll │ ├── iconv.dll │ ├── libcurl.dll │ ├── libeay32.dll │ ├── libiconv-2.dll │ ├── libxml2.dll │ ├── pcla-0.dll │ ├── pcre-0.dll │ ├── pcrecpp-0.dll │ ├── pcreposix-0.dll │ ├── posh-0.dll │ ├── posh.dll │ ├── riar-2.dll │ ├── riar.dll │ ├── sc.bin │ ├── ssleay32.dll │ ├── tibe-1.dll │ ├── tibe-2.dll │ ├── tibe.dll │ ├── trch-0.dll │ ├── trch-1.dll │ ├── trch.dll │ ├── trfo-0.dll │ ├── trfo-2.dll │ ├── trfo.dll │ ├── tucl-1.dll │ ├── tucl.dll │ ├── ucl.dll │ ├── xdvl-0.dll │ ├── zibe.dll │ └── zlib1.dll ├── enc_res │ ├── dep_lib.c │ ├── dep_lib.h │ ├── doublepulsar.c │ ├── doublepulsar.h │ ├── dummy.c │ ├── dummy.h │ ├── eternalblue.c │ ├── eternalblue.h │ ├── eternalchampion.c │ ├── eternalchampion.h │ ├── eternalromance.c │ ├── eternalromance.h │ ├── namedpipetouch.c │ ├── namedpipetouch.h │ ├── res_decode.c │ ├── res_decode.h │ ├── rpctouch.c │ ├── rpctouch.h │ ├── smbtouch.c │ ├── smbtouch.h │ ├── test.c │ └── test.h ├── global.h ├── main.c ├── utils │ ├── MemoryModule.c │ ├── MemoryModule.h │ ├── encode.c │ ├── encode.h │ ├── ex_string.c │ ├── ex_string.h │ ├── ipaddr.c │ ├── ipaddr.h │ ├── load_exe.c │ ├── load_exe.h │ ├── op_pipe.c │ └── op_pipe.h └── zip │ ├── miniz.h │ ├── zip.c │ └── zip.h ├── Eternal_Backdoor ├── Eternal_Backdoor.cbp ├── Eternal_Backdoor.depend ├── Eternal_Backdoor.layout ├── backdoor.cpp ├── backdoor.h ├── encode.cpp ├── encode.h ├── main.cpp ├── main.h ├── res_decode.cpp └── res_decode.h ├── Listen_Backdoor ├── Listen_Backdoor.cbp ├── Listen_Backdoor.depend ├── Listen_Backdoor.layout ├── backdoor.cpp ├── backdoor.h └── main.cpp ├── README.md └── Usage ├── 1.jpg ├── 2.jpg ├── 3.jpg └── 4.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/.gitignore -------------------------------------------------------------------------------- /010_exp/010_exp.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/010_exp.cbp -------------------------------------------------------------------------------- /010_exp/010_exp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/010_exp.depend -------------------------------------------------------------------------------- /010_exp/010_exp.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/010_exp.layout -------------------------------------------------------------------------------- /010_exp/attack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/attack.c -------------------------------------------------------------------------------- /010_exp/attack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/attack.h -------------------------------------------------------------------------------- /010_exp/dep_lib/Doublepulsar-1.3.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/Doublepulsar-1.3.1.xml -------------------------------------------------------------------------------- /010_exp/dep_lib/Eternalblue-2.2.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/Eternalblue-2.2.0.xml -------------------------------------------------------------------------------- /010_exp/dep_lib/Eternalchampion-2.0.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/Eternalchampion-2.0.0.xml -------------------------------------------------------------------------------- /010_exp/dep_lib/Eternalromance-1.4.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/Eternalromance-1.4.0.xml -------------------------------------------------------------------------------- /010_exp/dep_lib/Namedpipetouch-2.0.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/Namedpipetouch-2.0.0.xml -------------------------------------------------------------------------------- /010_exp/dep_lib/Rpctouch-2.1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/Rpctouch-2.1.0.xml -------------------------------------------------------------------------------- /010_exp/dep_lib/Smbtouch-1.1.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/Smbtouch-1.1.1.xml -------------------------------------------------------------------------------- /010_exp/dep_lib/adfw-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/adfw-2.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/adfw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/adfw.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/bd_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/bd_x64.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/bd_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/bd_x86.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/cnli-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/cnli-0.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/cnli-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/cnli-1.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/coli-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/coli-0.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/crli-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/crli-0.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/dmgd-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/dmgd-1.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/dmgd-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/dmgd-4.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/esco-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/esco-0.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/exma-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/exma-1.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/exma.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/exma.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/iconv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/iconv.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/libcurl.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/libeay32.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/libiconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/libiconv-2.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/libxml2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/libxml2.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/pcla-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/pcla-0.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/pcre-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/pcre-0.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/pcrecpp-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/pcrecpp-0.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/pcreposix-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/pcreposix-0.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/posh-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/posh-0.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/posh.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/posh.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/riar-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/riar-2.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/riar.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/riar.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/sc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/sc.bin -------------------------------------------------------------------------------- /010_exp/dep_lib/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/ssleay32.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/tibe-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/tibe-1.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/tibe-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/tibe-2.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/tibe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/tibe.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/trch-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/trch-0.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/trch-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/trch-1.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/trch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/trch.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/trfo-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/trfo-0.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/trfo-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/trfo-2.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/trfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/trfo.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/tucl-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/tucl-1.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/tucl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/tucl.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/ucl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/ucl.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/xdvl-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/xdvl-0.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/zibe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/zibe.dll -------------------------------------------------------------------------------- /010_exp/dep_lib/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/dep_lib/zlib1.dll -------------------------------------------------------------------------------- /010_exp/enc_res/dep_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/dep_lib.c -------------------------------------------------------------------------------- /010_exp/enc_res/dep_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/dep_lib.h -------------------------------------------------------------------------------- /010_exp/enc_res/doublepulsar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/doublepulsar.c -------------------------------------------------------------------------------- /010_exp/enc_res/doublepulsar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/doublepulsar.h -------------------------------------------------------------------------------- /010_exp/enc_res/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/dummy.c -------------------------------------------------------------------------------- /010_exp/enc_res/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/dummy.h -------------------------------------------------------------------------------- /010_exp/enc_res/eternalblue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/eternalblue.c -------------------------------------------------------------------------------- /010_exp/enc_res/eternalblue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/eternalblue.h -------------------------------------------------------------------------------- /010_exp/enc_res/eternalchampion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/eternalchampion.c -------------------------------------------------------------------------------- /010_exp/enc_res/eternalchampion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/eternalchampion.h -------------------------------------------------------------------------------- /010_exp/enc_res/eternalromance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/eternalromance.c -------------------------------------------------------------------------------- /010_exp/enc_res/eternalromance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/eternalromance.h -------------------------------------------------------------------------------- /010_exp/enc_res/namedpipetouch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/namedpipetouch.c -------------------------------------------------------------------------------- /010_exp/enc_res/namedpipetouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/namedpipetouch.h -------------------------------------------------------------------------------- /010_exp/enc_res/res_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/res_decode.c -------------------------------------------------------------------------------- /010_exp/enc_res/res_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/res_decode.h -------------------------------------------------------------------------------- /010_exp/enc_res/rpctouch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/rpctouch.c -------------------------------------------------------------------------------- /010_exp/enc_res/rpctouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/rpctouch.h -------------------------------------------------------------------------------- /010_exp/enc_res/smbtouch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/smbtouch.c -------------------------------------------------------------------------------- /010_exp/enc_res/smbtouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/smbtouch.h -------------------------------------------------------------------------------- /010_exp/enc_res/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/test.c -------------------------------------------------------------------------------- /010_exp/enc_res/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/enc_res/test.h -------------------------------------------------------------------------------- /010_exp/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/global.h -------------------------------------------------------------------------------- /010_exp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/main.c -------------------------------------------------------------------------------- /010_exp/utils/MemoryModule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/utils/MemoryModule.c -------------------------------------------------------------------------------- /010_exp/utils/MemoryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/utils/MemoryModule.h -------------------------------------------------------------------------------- /010_exp/utils/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/utils/encode.c -------------------------------------------------------------------------------- /010_exp/utils/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/utils/encode.h -------------------------------------------------------------------------------- /010_exp/utils/ex_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/utils/ex_string.c -------------------------------------------------------------------------------- /010_exp/utils/ex_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/utils/ex_string.h -------------------------------------------------------------------------------- /010_exp/utils/ipaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/utils/ipaddr.c -------------------------------------------------------------------------------- /010_exp/utils/ipaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/utils/ipaddr.h -------------------------------------------------------------------------------- /010_exp/utils/load_exe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/utils/load_exe.c -------------------------------------------------------------------------------- /010_exp/utils/load_exe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/utils/load_exe.h -------------------------------------------------------------------------------- /010_exp/utils/op_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/utils/op_pipe.c -------------------------------------------------------------------------------- /010_exp/utils/op_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/utils/op_pipe.h -------------------------------------------------------------------------------- /010_exp/zip/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/zip/miniz.h -------------------------------------------------------------------------------- /010_exp/zip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/zip/zip.c -------------------------------------------------------------------------------- /010_exp/zip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/010_exp/zip/zip.h -------------------------------------------------------------------------------- /Eternal_Backdoor/Eternal_Backdoor.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Eternal_Backdoor/Eternal_Backdoor.cbp -------------------------------------------------------------------------------- /Eternal_Backdoor/Eternal_Backdoor.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Eternal_Backdoor/Eternal_Backdoor.depend -------------------------------------------------------------------------------- /Eternal_Backdoor/Eternal_Backdoor.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Eternal_Backdoor/Eternal_Backdoor.layout -------------------------------------------------------------------------------- /Eternal_Backdoor/backdoor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Eternal_Backdoor/backdoor.cpp -------------------------------------------------------------------------------- /Eternal_Backdoor/backdoor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Eternal_Backdoor/backdoor.h -------------------------------------------------------------------------------- /Eternal_Backdoor/encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Eternal_Backdoor/encode.cpp -------------------------------------------------------------------------------- /Eternal_Backdoor/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Eternal_Backdoor/encode.h -------------------------------------------------------------------------------- /Eternal_Backdoor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Eternal_Backdoor/main.cpp -------------------------------------------------------------------------------- /Eternal_Backdoor/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Eternal_Backdoor/main.h -------------------------------------------------------------------------------- /Eternal_Backdoor/res_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Eternal_Backdoor/res_decode.cpp -------------------------------------------------------------------------------- /Eternal_Backdoor/res_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Eternal_Backdoor/res_decode.h -------------------------------------------------------------------------------- /Listen_Backdoor/Listen_Backdoor.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Listen_Backdoor/Listen_Backdoor.cbp -------------------------------------------------------------------------------- /Listen_Backdoor/Listen_Backdoor.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Listen_Backdoor/Listen_Backdoor.depend -------------------------------------------------------------------------------- /Listen_Backdoor/Listen_Backdoor.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Listen_Backdoor/Listen_Backdoor.layout -------------------------------------------------------------------------------- /Listen_Backdoor/backdoor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Listen_Backdoor/backdoor.cpp -------------------------------------------------------------------------------- /Listen_Backdoor/backdoor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Listen_Backdoor/backdoor.h -------------------------------------------------------------------------------- /Listen_Backdoor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Listen_Backdoor/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/README.md -------------------------------------------------------------------------------- /Usage/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Usage/1.jpg -------------------------------------------------------------------------------- /Usage/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Usage/2.jpg -------------------------------------------------------------------------------- /Usage/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Usage/3.jpg -------------------------------------------------------------------------------- /Usage/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weizn11/MS17010_AllInOne/HEAD/Usage/4.jpg --------------------------------------------------------------------------------