├── .gitignore ├── C&C ├── config │ └── auth.txt ├── decrypt.py ├── encrypt.py ├── files │ ├── abcde1234 │ └── default ├── lolbins │ ├── base64decode.py │ ├── base64encode.py │ ├── command.py │ ├── compilation.py │ ├── decrypt.py │ ├── download.py │ ├── exfiltrate.py │ ├── impersonate.py │ ├── inject.py │ ├── lawlbin.py │ ├── powershell.py │ ├── runas.py │ ├── send.py │ ├── shell.py │ └── unsed │ │ ├── downexec.py │ │ ├── execute.py │ │ └── move.py ├── myapp.py ├── payloads │ └── README.md ├── static │ └── README.md ├── templates │ └── index.html └── web.config ├── LICENSE ├── LOLBITS ├── LOLBITS.sln ├── LOLBITS │ ├── Controlling │ │ ├── Content.cs │ │ ├── Controller.cs │ │ ├── LauncherPE.cs │ │ ├── LauncherPowershell.cs │ │ ├── LauncherShellCode.cs │ │ ├── PowerCat.cs │ │ └── Response.cs │ ├── DInvoke │ │ ├── Generic.cs │ │ ├── Map.cs │ │ ├── Native.cs │ │ ├── PE.cs │ │ └── Win32.cs │ ├── Jobs.cs │ ├── LOLBITS.csproj │ ├── Loading │ │ ├── BiteArrayFromArchive.cs │ │ ├── BiteArrayToHex.cs │ │ ├── ByteArrayToString.cs │ │ ├── Rc4.cs │ │ ├── StringHexToByteArray.cs │ │ └── Zipper.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Protection │ │ ├── Debugging.cs │ │ ├── Filepath.cs │ │ ├── HookManager.cs │ │ └── Sleepy.cs │ ├── SysCallManager.cs │ ├── TokenManagement │ │ ├── StreamString.cs │ │ └── TokenManager.cs │ ├── Utils.cs │ └── packages.config ├── dependencies │ ├── BITSReference2_5.dll │ ├── Newtonsoft.Json.dll │ └── System.Management.Automation.dll └── packages │ ├── Newtonsoft.Json.12.0.3 │ ├── LICENSE.md │ ├── Newtonsoft.Json.12.0.3.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard2.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── packageIcon.png │ └── System.Management.Automation.6.2.3 │ ├── ref │ └── netcoreapp2.1 │ │ └── System.Management.Automation.dll │ └── runtimes │ ├── linux-arm │ └── lib │ │ └── netcoreapp2.1 │ │ └── System.Management.Automation.dll │ ├── win-arm │ └── lib │ │ └── netcoreapp2.1 │ │ └── System.Management.Automation.dll │ ├── win-arm64 │ └── lib │ │ └── netcoreapp2.1 │ │ └── System.Management.Automation.dll │ ├── win-x64 │ └── lib │ │ └── netcoreapp2.1 │ │ └── System.Management.Automation.dll │ └── win-x86 │ └── lib │ └── netcoreapp2.1 │ └── System.Management.Automation.dll ├── README.md ├── images ├── bitsuploads.png ├── diagram.png ├── fastcgi.png ├── iisfeatures.png ├── iisroles.png └── windowsapp.png └── setup.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/.gitignore -------------------------------------------------------------------------------- /C&C/config/auth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/config/auth.txt -------------------------------------------------------------------------------- /C&C/decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/decrypt.py -------------------------------------------------------------------------------- /C&C/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/encrypt.py -------------------------------------------------------------------------------- /C&C/files/abcde1234: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/files/abcde1234 -------------------------------------------------------------------------------- /C&C/files/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/files/default -------------------------------------------------------------------------------- /C&C/lolbins/base64decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/base64decode.py -------------------------------------------------------------------------------- /C&C/lolbins/base64encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/base64encode.py -------------------------------------------------------------------------------- /C&C/lolbins/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/command.py -------------------------------------------------------------------------------- /C&C/lolbins/compilation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/compilation.py -------------------------------------------------------------------------------- /C&C/lolbins/decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/decrypt.py -------------------------------------------------------------------------------- /C&C/lolbins/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/download.py -------------------------------------------------------------------------------- /C&C/lolbins/exfiltrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/exfiltrate.py -------------------------------------------------------------------------------- /C&C/lolbins/impersonate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/impersonate.py -------------------------------------------------------------------------------- /C&C/lolbins/inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/inject.py -------------------------------------------------------------------------------- /C&C/lolbins/lawlbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/lawlbin.py -------------------------------------------------------------------------------- /C&C/lolbins/powershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/powershell.py -------------------------------------------------------------------------------- /C&C/lolbins/runas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/runas.py -------------------------------------------------------------------------------- /C&C/lolbins/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/send.py -------------------------------------------------------------------------------- /C&C/lolbins/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/shell.py -------------------------------------------------------------------------------- /C&C/lolbins/unsed/downexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/unsed/downexec.py -------------------------------------------------------------------------------- /C&C/lolbins/unsed/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/unsed/execute.py -------------------------------------------------------------------------------- /C&C/lolbins/unsed/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/lolbins/unsed/move.py -------------------------------------------------------------------------------- /C&C/myapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/myapp.py -------------------------------------------------------------------------------- /C&C/payloads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/payloads/README.md -------------------------------------------------------------------------------- /C&C/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/static/README.md -------------------------------------------------------------------------------- /C&C/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/templates/index.html -------------------------------------------------------------------------------- /C&C/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/C&C/web.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LICENSE -------------------------------------------------------------------------------- /LOLBITS/LOLBITS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS.sln -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Controlling/Content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Controlling/Content.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Controlling/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Controlling/Controller.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Controlling/LauncherPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Controlling/LauncherPE.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Controlling/LauncherPowershell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Controlling/LauncherPowershell.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Controlling/LauncherShellCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Controlling/LauncherShellCode.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Controlling/PowerCat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Controlling/PowerCat.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Controlling/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Controlling/Response.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/DInvoke/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/DInvoke/Generic.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/DInvoke/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/DInvoke/Map.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/DInvoke/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/DInvoke/Native.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/DInvoke/PE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/DInvoke/PE.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/DInvoke/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/DInvoke/Win32.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Jobs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Jobs.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/LOLBITS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/LOLBITS.csproj -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Loading/BiteArrayFromArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Loading/BiteArrayFromArchive.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Loading/BiteArrayToHex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Loading/BiteArrayToHex.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Loading/ByteArrayToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Loading/ByteArrayToString.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Loading/Rc4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Loading/Rc4.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Loading/StringHexToByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Loading/StringHexToByteArray.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Loading/Zipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Loading/Zipper.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Program.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Protection/Debugging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Protection/Debugging.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Protection/Filepath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Protection/Filepath.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Protection/HookManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Protection/HookManager.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Protection/Sleepy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Protection/Sleepy.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/SysCallManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/SysCallManager.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/TokenManagement/StreamString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/TokenManagement/StreamString.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/TokenManagement/TokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/TokenManagement/TokenManager.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/Utils.cs -------------------------------------------------------------------------------- /LOLBITS/LOLBITS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/LOLBITS/packages.config -------------------------------------------------------------------------------- /LOLBITS/dependencies/BITSReference2_5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/dependencies/BITSReference2_5.dll -------------------------------------------------------------------------------- /LOLBITS/dependencies/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/dependencies/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /LOLBITS/dependencies/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/dependencies/System.Management.Automation.dll -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/LICENSE.md -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /LOLBITS/packages/Newtonsoft.Json.12.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/Newtonsoft.Json.12.0.3/packageIcon.png -------------------------------------------------------------------------------- /LOLBITS/packages/System.Management.Automation.6.2.3/ref/netcoreapp2.1/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/System.Management.Automation.6.2.3/ref/netcoreapp2.1/System.Management.Automation.dll -------------------------------------------------------------------------------- /LOLBITS/packages/System.Management.Automation.6.2.3/runtimes/linux-arm/lib/netcoreapp2.1/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/System.Management.Automation.6.2.3/runtimes/linux-arm/lib/netcoreapp2.1/System.Management.Automation.dll -------------------------------------------------------------------------------- /LOLBITS/packages/System.Management.Automation.6.2.3/runtimes/win-arm/lib/netcoreapp2.1/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/System.Management.Automation.6.2.3/runtimes/win-arm/lib/netcoreapp2.1/System.Management.Automation.dll -------------------------------------------------------------------------------- /LOLBITS/packages/System.Management.Automation.6.2.3/runtimes/win-arm64/lib/netcoreapp2.1/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/System.Management.Automation.6.2.3/runtimes/win-arm64/lib/netcoreapp2.1/System.Management.Automation.dll -------------------------------------------------------------------------------- /LOLBITS/packages/System.Management.Automation.6.2.3/runtimes/win-x64/lib/netcoreapp2.1/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/System.Management.Automation.6.2.3/runtimes/win-x64/lib/netcoreapp2.1/System.Management.Automation.dll -------------------------------------------------------------------------------- /LOLBITS/packages/System.Management.Automation.6.2.3/runtimes/win-x86/lib/netcoreapp2.1/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/LOLBITS/packages/System.Management.Automation.6.2.3/runtimes/win-x86/lib/netcoreapp2.1/System.Management.Automation.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/README.md -------------------------------------------------------------------------------- /images/bitsuploads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/images/bitsuploads.png -------------------------------------------------------------------------------- /images/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/images/diagram.png -------------------------------------------------------------------------------- /images/fastcgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/images/fastcgi.png -------------------------------------------------------------------------------- /images/iisfeatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/images/iisfeatures.png -------------------------------------------------------------------------------- /images/iisroles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/images/iisroles.png -------------------------------------------------------------------------------- /images/windowsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/images/windowsapp.png -------------------------------------------------------------------------------- /setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudaes/LOLBITS/HEAD/setup.ps1 --------------------------------------------------------------------------------