├── CsharpAmsiBypass.sln ├── CsharpAmsiBypass ├── Amsi.cs ├── App.config ├── CsharpAmsiBypass.csproj ├── Native.cs ├── PlatformInvoke │ ├── Native.cs │ └── Win32.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── RC4.cs ├── Utilities.cs ├── Win32.cs ├── bin │ └── Debug │ │ ├── CsharpAmsiBypass.exe │ │ ├── CsharpAmsiBypass.exe.config │ │ └── CsharpAmsiBypass.pdb └── obj │ └── Debug │ ├── CsharpAmsiBypass.csproj.CoreCompileInputs.cache │ ├── CsharpAmsiBypass.csproj.FileListAbsolute.txt │ ├── CsharpAmsiBypass.csprojAssemblyReference.cache │ ├── CsharpAmsiBypass.exe │ ├── CsharpAmsiBypass.pdb │ └── DesignTimeResolveAssemblyReferencesInput.cache └── README.md /CsharpAmsiBypass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass.sln -------------------------------------------------------------------------------- /CsharpAmsiBypass/Amsi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/Amsi.cs -------------------------------------------------------------------------------- /CsharpAmsiBypass/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/App.config -------------------------------------------------------------------------------- /CsharpAmsiBypass/CsharpAmsiBypass.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/CsharpAmsiBypass.csproj -------------------------------------------------------------------------------- /CsharpAmsiBypass/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/Native.cs -------------------------------------------------------------------------------- /CsharpAmsiBypass/PlatformInvoke/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/PlatformInvoke/Native.cs -------------------------------------------------------------------------------- /CsharpAmsiBypass/PlatformInvoke/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/PlatformInvoke/Win32.cs -------------------------------------------------------------------------------- /CsharpAmsiBypass/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/Program.cs -------------------------------------------------------------------------------- /CsharpAmsiBypass/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CsharpAmsiBypass/RC4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/RC4.cs -------------------------------------------------------------------------------- /CsharpAmsiBypass/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/Utilities.cs -------------------------------------------------------------------------------- /CsharpAmsiBypass/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/Win32.cs -------------------------------------------------------------------------------- /CsharpAmsiBypass/bin/Debug/CsharpAmsiBypass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/bin/Debug/CsharpAmsiBypass.exe -------------------------------------------------------------------------------- /CsharpAmsiBypass/bin/Debug/CsharpAmsiBypass.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/bin/Debug/CsharpAmsiBypass.exe.config -------------------------------------------------------------------------------- /CsharpAmsiBypass/bin/Debug/CsharpAmsiBypass.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/bin/Debug/CsharpAmsiBypass.pdb -------------------------------------------------------------------------------- /CsharpAmsiBypass/obj/Debug/CsharpAmsiBypass.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | eb6648308c8812f891a965cc8646a8840f216731 2 | -------------------------------------------------------------------------------- /CsharpAmsiBypass/obj/Debug/CsharpAmsiBypass.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/obj/Debug/CsharpAmsiBypass.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /CsharpAmsiBypass/obj/Debug/CsharpAmsiBypass.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/obj/Debug/CsharpAmsiBypass.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /CsharpAmsiBypass/obj/Debug/CsharpAmsiBypass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/obj/Debug/CsharpAmsiBypass.exe -------------------------------------------------------------------------------- /CsharpAmsiBypass/obj/Debug/CsharpAmsiBypass.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/obj/Debug/CsharpAmsiBypass.pdb -------------------------------------------------------------------------------- /CsharpAmsiBypass/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/CsharpAmsiBypass/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneJLee/CsharpAmsiBypass/HEAD/README.md --------------------------------------------------------------------------------