├── .gitattributes ├── HWLdrLoadDll ├── .gitignore ├── App.config ├── HWLdrLoadDll.csproj ├── HWLdrLoadDll.sln ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── HookLdrLoadDll ├── .gitignore ├── App.config ├── HookLdrLoadLib.csproj ├── HookLdrLoadLib.sln ├── Powershell.cs ├── Program.cs └── Properties │ └── AssemblyInfo.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/.gitattributes -------------------------------------------------------------------------------- /HWLdrLoadDll/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | obj 3 | bin -------------------------------------------------------------------------------- /HWLdrLoadDll/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/HWLdrLoadDll/App.config -------------------------------------------------------------------------------- /HWLdrLoadDll/HWLdrLoadDll.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/HWLdrLoadDll/HWLdrLoadDll.csproj -------------------------------------------------------------------------------- /HWLdrLoadDll/HWLdrLoadDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/HWLdrLoadDll/HWLdrLoadDll.sln -------------------------------------------------------------------------------- /HWLdrLoadDll/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/HWLdrLoadDll/Program.cs -------------------------------------------------------------------------------- /HWLdrLoadDll/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/HWLdrLoadDll/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HookLdrLoadDll/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | obj 3 | bin -------------------------------------------------------------------------------- /HookLdrLoadDll/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/HookLdrLoadDll/App.config -------------------------------------------------------------------------------- /HookLdrLoadDll/HookLdrLoadLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/HookLdrLoadDll/HookLdrLoadLib.csproj -------------------------------------------------------------------------------- /HookLdrLoadDll/HookLdrLoadLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/HookLdrLoadDll/HookLdrLoadLib.sln -------------------------------------------------------------------------------- /HookLdrLoadDll/Powershell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/HookLdrLoadDll/Powershell.cs -------------------------------------------------------------------------------- /HookLdrLoadDll/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/HookLdrLoadDll/Program.cs -------------------------------------------------------------------------------- /HookLdrLoadDll/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/HookLdrLoadDll/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/AmsiBypass/HEAD/README.md --------------------------------------------------------------------------------