├── AmsiBypass ├── .vs │ └── AmsiBypass │ │ └── v14 │ │ └── .suo ├── AmsiBypass.sln └── AmsiBypass │ ├── AmsiBypass.csproj │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── bin │ ├── Debug │ │ ├── AmsiBypass.exe.config │ │ ├── AmsiBypass.vshost.exe │ │ ├── AmsiBypass.vshost.exe.config │ │ └── AmsiBypass.vshost.exe.manifest │ ├── Release │ │ ├── AmsiBypass.exe.config │ │ ├── AmsiBypass.vshost.exe │ │ ├── AmsiBypass.vshost.exe.config │ │ └── AmsiBypass.vshost.exe.manifest │ └── x64 │ │ └── Release │ │ ├── AmsiBypass.exe │ │ ├── AmsiBypass.exe.config │ │ ├── AmsiBypass.pdb │ │ ├── AmsiBypass.vshost.exe │ │ ├── AmsiBypass.vshost.exe.config │ │ └── AmsiBypass.vshost.exe.manifest │ └── obj │ ├── Debug │ ├── AmsiBypass.csproj.FileListAbsolute.txt │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── Release │ ├── AmsiBypass.csproj.FileListAbsolute.txt │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── x64 │ └── Release │ ├── AmsiBypass.csproj.FileListAbsolute.txt │ ├── AmsiBypass.csprojResolveAssemblyReference.cache │ ├── AmsiBypass.exe │ ├── AmsiBypass.pdb │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── CVE-2019-0604 └── CVE-2019-0604.exe ├── ChromeDecrypt ├── ChromeDecrypt.csproj ├── HeavensGate │ └── HeavensGate.cs ├── Injector │ └── SharpInjector.cs ├── InternalStructs │ ├── BCryptInternalStructs.cs │ ├── DataExtractionStructs.cs │ ├── InternalStructs.cs │ ├── InternalStructs32.cs │ └── InternalStructs64.cs ├── NativeMethods │ ├── BCryptNativeMethods.cs │ ├── NativeMethods.cs │ └── SpecialNativeMethods.cs ├── Program.cs └── Utils │ ├── Utils.cs │ ├── Utils32.cs │ └── Utils64.cs ├── ReflectionB64 ├── .vs │ └── ReflectionB64 │ │ └── v14 │ │ └── .suo ├── ReflectionB64.sln └── ReflectionB64 │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ReflectionB64.csproj │ ├── bin │ ├── Debug │ │ ├── ReflectionB64.exe.config │ │ ├── ReflectionB64.vshost.exe │ │ ├── ReflectionB64.vshost.exe.config │ │ └── ReflectionB64.vshost.exe.manifest │ ├── Release │ │ ├── ReflectionB64.exe.config │ │ ├── ReflectionB64.vshost.exe │ │ ├── ReflectionB64.vshost.exe.config │ │ └── ReflectionB64.vshost.exe.manifest │ └── x64 │ │ └── Release │ │ ├── ReflectionB64.exe │ │ ├── ReflectionB64.exe.config │ │ ├── ReflectionB64.pdb │ │ ├── ReflectionB64.vshost.exe │ │ ├── ReflectionB64.vshost.exe.config │ │ └── ReflectionB64.vshost.exe.manifest │ └── obj │ ├── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── ReflectionB64.csproj.FileListAbsolute.txt │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── Release │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── ReflectionB64.csproj.FileListAbsolute.txt │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── x64 │ └── Release │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── ReflectionB64.csproj.FileListAbsolute.txt │ ├── ReflectionB64.csprojResolveAssemblyReference.cache │ ├── ReflectionB64.exe │ ├── ReflectionB64.pdb │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── SharpDump ├── .vs │ └── SharpDump │ │ └── v14 │ │ └── .suo ├── SharpDump.sln └── SharpDump │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SharpDump.csproj │ ├── bin │ ├── Debug │ │ ├── SharpDump.exe.config │ │ ├── SharpDump.vshost.exe │ │ ├── SharpDump.vshost.exe.config │ │ └── SharpDump.vshost.exe.manifest │ ├── Release │ │ ├── SharpDump.exe │ │ ├── SharpDump.exe.config │ │ ├── SharpDump.pdb │ │ ├── SharpDump.vshost.exe │ │ ├── SharpDump.vshost.exe.config │ │ └── SharpDump.vshost.exe.manifest │ └── x64 │ │ └── Release │ │ ├── SharpDump.exe │ │ ├── SharpDump.exe.config │ │ ├── SharpDump.pdb │ │ ├── SharpDump.vshost.exe │ │ ├── SharpDump.vshost.exe.config │ │ └── SharpDump.vshost.exe.manifest │ └── obj │ ├── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── SharpDump.csproj.FileListAbsolute.txt │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── Release │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── SharpDump.csproj.FileListAbsolute.txt │ ├── SharpDump.csprojResolveAssemblyReference.cache │ ├── SharpDump.exe │ └── SharpDump.pdb │ └── x64 │ └── Release │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── SharpDump.csproj.FileListAbsolute.txt │ ├── SharpDump.exe │ └── SharpDump.pdb ├── SharpShellcodeObfus ├── .vs │ └── SharpShellcodeObfus │ │ └── v16 │ │ └── .suo ├── SharpShellcodeObfus.sln └── SharpShellcodeObfus │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── SharpShellcodeObfus.csproj │ ├── bin │ └── Debug │ │ ├── SharpShellcodeObfus.exe │ │ └── SharpShellcodeObfus.pdb │ └── obj │ └── Debug │ ├── .NETFramework,Version=v4.0.AssemblyAttributes.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── SharpShellcodeObfus.Form1.resources │ ├── SharpShellcodeObfus.Properties.Resources.resources │ ├── SharpShellcodeObfus.csproj.CoreCompileInputs.cache │ ├── SharpShellcodeObfus.csproj.FileListAbsolute.txt │ ├── SharpShellcodeObfus.csproj.GenerateResource.cache │ ├── SharpShellcodeObfus.csprojAssemblyReference.cache │ ├── SharpShellcodeObfus.exe │ └── SharpShellcodeObfus.pdb ├── SyscallCsharp ├── .vs │ └── SyscallCsharp │ │ ├── v14 │ │ └── .suo │ │ └── v16 │ │ └── .suo ├── SyscallCsharp.sln ├── SyscallCsharp │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SyscallCsharp.csproj │ ├── bin │ │ ├── Debug │ │ │ ├── SyscallCsharp.exe.config │ │ │ ├── SyscallCsharp.vshost.exe │ │ │ ├── SyscallCsharp.vshost.exe.config │ │ │ └── SyscallCsharp.vshost.exe.manifest │ │ ├── Release │ │ │ ├── SyscallCsharp.exe.config │ │ │ ├── SyscallCsharp.vshost.exe │ │ │ ├── SyscallCsharp.vshost.exe.config │ │ │ └── SyscallCsharp.vshost.exe.manifest │ │ └── x64 │ │ │ └── Release │ │ │ ├── DInvoke.dll │ │ │ ├── SyscallCsharp.exe │ │ │ ├── SyscallCsharp.exe.config │ │ │ ├── SyscallCsharp.pdb │ │ │ ├── SyscallCsharp.vshost.exe │ │ │ ├── SyscallCsharp.vshost.exe.config │ │ │ └── SyscallCsharp.vshost.exe.manifest │ ├── obj │ │ ├── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── SyscallCsharp.csproj.FileListAbsolute.txt │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── SyscallCsharp.csproj.FileListAbsolute.txt │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ └── x64 │ │ │ └── Release │ │ │ ├── .NETFramework,Version=v4.5.2.AssemblyAttributes.cs │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── SyscallCsharp.csproj.CopyComplete │ │ │ ├── SyscallCsharp.csproj.CoreCompileInputs.cache │ │ │ ├── SyscallCsharp.csproj.FileListAbsolute.txt │ │ │ ├── SyscallCsharp.csprojAssemblyReference.cache │ │ │ ├── SyscallCsharp.exe │ │ │ ├── SyscallCsharp.pdb │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config └── packages │ └── DInvoke.1.0.4 │ ├── .nupkg.metadata │ ├── .signature.p7s │ ├── DInvoke.1.0.4.nupkg │ └── lib │ └── net35 │ └── DInvoke.dll ├── UuidShellcode ├── .vs │ └── UuidShellcode │ │ ├── v14 │ │ └── .suo │ │ └── v16 │ │ └── .suo ├── MigrationBackup │ └── a8821e00 │ │ └── UuidShellcode │ │ ├── NuGetUpgradeLog.html │ │ ├── UuidShellcode.csproj │ │ └── packages.config ├── UuidShellcode.sln └── UuidShellcode │ ├── App.config │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── UuidShellcode.csproj │ ├── UuidShellcode.csproj.user │ ├── bin │ ├── Debug │ │ ├── UuidShellcode.exe │ │ ├── UuidShellcode.exe.config │ │ ├── UuidShellcode.pdb │ │ ├── UuidShellcode.vshost.exe │ │ ├── UuidShellcode.vshost.exe.config │ │ └── UuidShellcode.vshost.exe.manifest │ ├── Release │ │ ├── UuidShellcode.exe.config │ │ ├── UuidShellcode.vshost.exe │ │ ├── UuidShellcode.vshost.exe.config │ │ └── UuidShellcode.vshost.exe.manifest │ └── x64 │ │ └── Release │ │ ├── UuidShellcode.exe │ │ ├── UuidShellcode.exe.config │ │ ├── UuidShellcode.vshost.exe │ │ ├── UuidShellcode.vshost.exe.config │ │ └── UuidShellcode.vshost.exe.manifest │ └── obj │ ├── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── UuidShellcode.csproj.FileListAbsolute.txt │ ├── UuidShellcode.csprojResolveAssemblyReference.cache │ ├── UuidShellcode.exe │ └── UuidShellcode.pdb │ ├── Release │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── UuidShellcode.csproj.FileListAbsolute.txt │ ├── UuidShellcode.csproj.nuget.dgspec.json │ ├── UuidShellcode.csproj.nuget.g.props │ ├── UuidShellcode.csproj.nuget.g.targets │ ├── project.assets.json │ ├── project.nuget.cache │ └── x64 │ └── Release │ ├── .NETFramework,Version=v4.0.AssemblyAttributes.cs │ ├── Costura │ └── 9AFDB5F6A02DCAB80BB3FB030668CFB1C0ECA687.costura.dinvoke.dll.compressed │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── UuidShellcode.csproj.CoreCompileInputs.cache │ ├── UuidShellcode.csproj.FileListAbsolute.txt │ ├── UuidShellcode.csproj.Fody.CopyLocal.cache │ └── UuidShellcode.exe ├── bypassAV8 ├── .vs │ └── Part8 │ │ ├── v14 │ │ └── .suo │ │ └── v16 │ │ └── .suo ├── Part8.sln └── Part8 │ ├── App.config │ ├── Part8.csproj │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── bin │ └── Debug │ │ ├── Part8.exe │ │ ├── Part8.exe.config │ │ ├── Part8.pdb │ │ ├── Part8.vshost.exe │ │ ├── Part8.vshost.exe.config │ │ └── Part8.vshost.exe.manifest │ └── obj │ ├── Debug │ ├── .NETFramework,Version=v4.0.AssemblyAttributes.cs │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Part8.csproj.FileListAbsolute.txt │ ├── Part8.csprojAssemblyReference.cache │ ├── Part8.csprojResolveAssemblyReference.cache │ ├── Part8.exe │ ├── Part8.pdb │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── x64 │ ├── Debug │ ├── .NETFramework,Version=v4.0.AssemblyAttributes.cs │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ └── Part8.csprojAssemblyReference.cache │ └── Release │ ├── .NETFramework,Version=v4.0.AssemblyAttributes.cs │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ └── Part8.csproj.FileListAbsolute.txt └── xlsmfishing └── Xlsm.exe /AmsiBypass/.vs/AmsiBypass/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/.vs/AmsiBypass/v14/.suo -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass.sln -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/AmsiBypass.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/AmsiBypass.csproj -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/App.config -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/Program.cs -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/Debug/AmsiBypass.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/Debug/AmsiBypass.exe.config -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/Debug/AmsiBypass.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/Debug/AmsiBypass.vshost.exe -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/Debug/AmsiBypass.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/Debug/AmsiBypass.vshost.exe.config -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/Debug/AmsiBypass.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/Debug/AmsiBypass.vshost.exe.manifest -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/Release/AmsiBypass.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/Release/AmsiBypass.exe.config -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/Release/AmsiBypass.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/Release/AmsiBypass.vshost.exe -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/Release/AmsiBypass.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/Release/AmsiBypass.vshost.exe.config -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/Release/AmsiBypass.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/Release/AmsiBypass.vshost.exe.manifest -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/x64/Release/AmsiBypass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/x64/Release/AmsiBypass.exe -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/x64/Release/AmsiBypass.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/x64/Release/AmsiBypass.exe.config -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/x64/Release/AmsiBypass.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/x64/Release/AmsiBypass.pdb -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/x64/Release/AmsiBypass.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/x64/Release/AmsiBypass.vshost.exe -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/x64/Release/AmsiBypass.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/x64/Release/AmsiBypass.vshost.exe.config -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/bin/x64/Release/AmsiBypass.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/bin/x64/Release/AmsiBypass.vshost.exe.manifest -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/Debug/AmsiBypass.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/obj/Debug/AmsiBypass.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/Release/AmsiBypass.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/obj/Release/AmsiBypass.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/x64/Release/AmsiBypass.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/obj/x64/Release/AmsiBypass.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/x64/Release/AmsiBypass.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/obj/x64/Release/AmsiBypass.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/x64/Release/AmsiBypass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/obj/x64/Release/AmsiBypass.exe -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/x64/Release/AmsiBypass.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/obj/x64/Release/AmsiBypass.pdb -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/AmsiBypass/AmsiBypass/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/x64/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/x64/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmsiBypass/AmsiBypass/obj/x64/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CVE-2019-0604/CVE-2019-0604.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/CVE-2019-0604/CVE-2019-0604.exe -------------------------------------------------------------------------------- /ChromeDecrypt/ChromeDecrypt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/ChromeDecrypt.csproj -------------------------------------------------------------------------------- /ChromeDecrypt/HeavensGate/HeavensGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/HeavensGate/HeavensGate.cs -------------------------------------------------------------------------------- /ChromeDecrypt/Injector/SharpInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/Injector/SharpInjector.cs -------------------------------------------------------------------------------- /ChromeDecrypt/InternalStructs/BCryptInternalStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/InternalStructs/BCryptInternalStructs.cs -------------------------------------------------------------------------------- /ChromeDecrypt/InternalStructs/DataExtractionStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/InternalStructs/DataExtractionStructs.cs -------------------------------------------------------------------------------- /ChromeDecrypt/InternalStructs/InternalStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/InternalStructs/InternalStructs.cs -------------------------------------------------------------------------------- /ChromeDecrypt/InternalStructs/InternalStructs32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/InternalStructs/InternalStructs32.cs -------------------------------------------------------------------------------- /ChromeDecrypt/InternalStructs/InternalStructs64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/InternalStructs/InternalStructs64.cs -------------------------------------------------------------------------------- /ChromeDecrypt/NativeMethods/BCryptNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/NativeMethods/BCryptNativeMethods.cs -------------------------------------------------------------------------------- /ChromeDecrypt/NativeMethods/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/NativeMethods/NativeMethods.cs -------------------------------------------------------------------------------- /ChromeDecrypt/NativeMethods/SpecialNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/NativeMethods/SpecialNativeMethods.cs -------------------------------------------------------------------------------- /ChromeDecrypt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/Program.cs -------------------------------------------------------------------------------- /ChromeDecrypt/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/Utils/Utils.cs -------------------------------------------------------------------------------- /ChromeDecrypt/Utils/Utils32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/Utils/Utils32.cs -------------------------------------------------------------------------------- /ChromeDecrypt/Utils/Utils64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ChromeDecrypt/Utils/Utils64.cs -------------------------------------------------------------------------------- /ReflectionB64/.vs/ReflectionB64/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/.vs/ReflectionB64/v14/.suo -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64.sln -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/App.config -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/Program.cs -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/ReflectionB64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/ReflectionB64.csproj -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/Debug/ReflectionB64.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/Debug/ReflectionB64.exe.config -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/Debug/ReflectionB64.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/Debug/ReflectionB64.vshost.exe -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/Debug/ReflectionB64.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/Debug/ReflectionB64.vshost.exe.config -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/Debug/ReflectionB64.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/Debug/ReflectionB64.vshost.exe.manifest -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/Release/ReflectionB64.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/Release/ReflectionB64.exe.config -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/Release/ReflectionB64.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/Release/ReflectionB64.vshost.exe -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/Release/ReflectionB64.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/Release/ReflectionB64.vshost.exe.config -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/Release/ReflectionB64.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/Release/ReflectionB64.vshost.exe.manifest -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/x64/Release/ReflectionB64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/x64/Release/ReflectionB64.exe -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/x64/Release/ReflectionB64.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/x64/Release/ReflectionB64.exe.config -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/x64/Release/ReflectionB64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/x64/Release/ReflectionB64.pdb -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/x64/Release/ReflectionB64.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/x64/Release/ReflectionB64.vshost.exe -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/x64/Release/ReflectionB64.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/x64/Release/ReflectionB64.vshost.exe.config -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/bin/x64/Release/ReflectionB64.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/bin/x64/Release/ReflectionB64.vshost.exe.manifest -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/Debug/ReflectionB64.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/obj/Debug/ReflectionB64.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/Release/ReflectionB64.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/obj/Release/ReflectionB64.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/x64/Release/ReflectionB64.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/obj/x64/Release/ReflectionB64.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/x64/Release/ReflectionB64.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/obj/x64/Release/ReflectionB64.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/x64/Release/ReflectionB64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/obj/x64/Release/ReflectionB64.exe -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/x64/Release/ReflectionB64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/ReflectionB64/ReflectionB64/obj/x64/Release/ReflectionB64.pdb -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/x64/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/x64/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectionB64/ReflectionB64/obj/x64/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharpDump/.vs/SharpDump/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/.vs/SharpDump/v14/.suo -------------------------------------------------------------------------------- /SharpDump/SharpDump.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump.sln -------------------------------------------------------------------------------- /SharpDump/SharpDump/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/App.config -------------------------------------------------------------------------------- /SharpDump/SharpDump/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/Program.cs -------------------------------------------------------------------------------- /SharpDump/SharpDump/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpDump/SharpDump/SharpDump.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/SharpDump.csproj -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/Debug/SharpDump.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/Debug/SharpDump.exe.config -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/Debug/SharpDump.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/Debug/SharpDump.vshost.exe -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/Debug/SharpDump.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/Debug/SharpDump.vshost.exe.config -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/Debug/SharpDump.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/Debug/SharpDump.vshost.exe.manifest -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/Release/SharpDump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/Release/SharpDump.exe -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/Release/SharpDump.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/Release/SharpDump.exe.config -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/Release/SharpDump.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/Release/SharpDump.pdb -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/Release/SharpDump.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/Release/SharpDump.vshost.exe -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/Release/SharpDump.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/Release/SharpDump.vshost.exe.config -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/Release/SharpDump.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/Release/SharpDump.vshost.exe.manifest -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/x64/Release/SharpDump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/x64/Release/SharpDump.exe -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/x64/Release/SharpDump.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/x64/Release/SharpDump.exe.config -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/x64/Release/SharpDump.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/x64/Release/SharpDump.pdb -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/x64/Release/SharpDump.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/x64/Release/SharpDump.vshost.exe -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/x64/Release/SharpDump.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/x64/Release/SharpDump.vshost.exe.config -------------------------------------------------------------------------------- /SharpDump/SharpDump/bin/x64/Release/SharpDump.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/bin/x64/Release/SharpDump.vshost.exe.manifest -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/Debug/SharpDump.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/obj/Debug/SharpDump.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/Release/SharpDump.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/obj/Release/SharpDump.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/Release/SharpDump.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/obj/Release/SharpDump.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/Release/SharpDump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/obj/Release/SharpDump.exe -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/Release/SharpDump.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/obj/Release/SharpDump.pdb -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/x64/Release/SharpDump.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/obj/x64/Release/SharpDump.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/x64/Release/SharpDump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/obj/x64/Release/SharpDump.exe -------------------------------------------------------------------------------- /SharpDump/SharpDump/obj/x64/Release/SharpDump.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpDump/SharpDump/obj/x64/Release/SharpDump.pdb -------------------------------------------------------------------------------- /SharpShellcodeObfus/.vs/SharpShellcodeObfus/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/.vs/SharpShellcodeObfus/v16/.suo -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus.sln -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/Form1.Designer.cs -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/Form1.cs -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/Form1.resx -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/Program.cs -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/Properties/Resources.resx -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/Properties/Settings.settings -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/SharpShellcodeObfus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/SharpShellcodeObfus.csproj -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/bin/Debug/SharpShellcodeObfus.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/bin/Debug/SharpShellcodeObfus.exe -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/bin/Debug/SharpShellcodeObfus.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/bin/Debug/SharpShellcodeObfus.pdb -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.Form1.resources -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.Properties.Resources.resources -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 39cccbf4a98a1433f571555b1010037539a8891e 2 | -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.exe -------------------------------------------------------------------------------- /SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SharpShellcodeObfus/SharpShellcodeObfus/obj/Debug/SharpShellcodeObfus.pdb -------------------------------------------------------------------------------- /SyscallCsharp/.vs/SyscallCsharp/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/.vs/SyscallCsharp/v14/.suo -------------------------------------------------------------------------------- /SyscallCsharp/.vs/SyscallCsharp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/.vs/SyscallCsharp/v16/.suo -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp.sln -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/App.config -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/Program.cs -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/SyscallCsharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/SyscallCsharp.csproj -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/Debug/SyscallCsharp.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/Debug/SyscallCsharp.exe.config -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/Debug/SyscallCsharp.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/Debug/SyscallCsharp.vshost.exe -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/Debug/SyscallCsharp.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/Debug/SyscallCsharp.vshost.exe.config -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/Debug/SyscallCsharp.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/Debug/SyscallCsharp.vshost.exe.manifest -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/Release/SyscallCsharp.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/Release/SyscallCsharp.exe.config -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/Release/SyscallCsharp.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/Release/SyscallCsharp.vshost.exe -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/Release/SyscallCsharp.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/Release/SyscallCsharp.vshost.exe.config -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/Release/SyscallCsharp.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/Release/SyscallCsharp.vshost.exe.manifest -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/x64/Release/DInvoke.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/x64/Release/DInvoke.dll -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/x64/Release/SyscallCsharp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/x64/Release/SyscallCsharp.exe -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/x64/Release/SyscallCsharp.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/x64/Release/SyscallCsharp.exe.config -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/x64/Release/SyscallCsharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/x64/Release/SyscallCsharp.pdb -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/x64/Release/SyscallCsharp.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/x64/Release/SyscallCsharp.vshost.exe -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/x64/Release/SyscallCsharp.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/x64/Release/SyscallCsharp.vshost.exe.config -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/bin/x64/Release/SyscallCsharp.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/bin/x64/Release/SyscallCsharp.vshost.exe.manifest -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/Debug/SyscallCsharp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/obj/Debug/SyscallCsharp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/Release/SyscallCsharp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/obj/Release/SyscallCsharp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/x64/Release/.NETFramework,Version=v4.5.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/obj/x64/Release/.NETFramework,Version=v4.5.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/x64/Release/SyscallCsharp.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/x64/Release/SyscallCsharp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b0d6867df21a52afc4ead590b7ab547d926ff299 2 | -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/x64/Release/SyscallCsharp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/obj/x64/Release/SyscallCsharp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/x64/Release/SyscallCsharp.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/obj/x64/Release/SyscallCsharp.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/x64/Release/SyscallCsharp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/obj/x64/Release/SyscallCsharp.exe -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/x64/Release/SyscallCsharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/obj/x64/Release/SyscallCsharp.pdb -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/x64/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/x64/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/obj/x64/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SyscallCsharp/SyscallCsharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/SyscallCsharp/packages.config -------------------------------------------------------------------------------- /SyscallCsharp/packages/DInvoke.1.0.4/.nupkg.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/packages/DInvoke.1.0.4/.nupkg.metadata -------------------------------------------------------------------------------- /SyscallCsharp/packages/DInvoke.1.0.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/packages/DInvoke.1.0.4/.signature.p7s -------------------------------------------------------------------------------- /SyscallCsharp/packages/DInvoke.1.0.4/DInvoke.1.0.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/packages/DInvoke.1.0.4/DInvoke.1.0.4.nupkg -------------------------------------------------------------------------------- /SyscallCsharp/packages/DInvoke.1.0.4/lib/net35/DInvoke.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/SyscallCsharp/packages/DInvoke.1.0.4/lib/net35/DInvoke.dll -------------------------------------------------------------------------------- /UuidShellcode/.vs/UuidShellcode/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/.vs/UuidShellcode/v14/.suo -------------------------------------------------------------------------------- /UuidShellcode/.vs/UuidShellcode/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/.vs/UuidShellcode/v16/.suo -------------------------------------------------------------------------------- /UuidShellcode/MigrationBackup/a8821e00/UuidShellcode/NuGetUpgradeLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/MigrationBackup/a8821e00/UuidShellcode/NuGetUpgradeLog.html -------------------------------------------------------------------------------- /UuidShellcode/MigrationBackup/a8821e00/UuidShellcode/UuidShellcode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/MigrationBackup/a8821e00/UuidShellcode/UuidShellcode.csproj -------------------------------------------------------------------------------- /UuidShellcode/MigrationBackup/a8821e00/UuidShellcode/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/MigrationBackup/a8821e00/UuidShellcode/packages.config -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode.sln -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/App.config -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/FodyWeavers.xml -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/FodyWeavers.xsd -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/Program.cs -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/UuidShellcode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/UuidShellcode.csproj -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/UuidShellcode.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/UuidShellcode.csproj.user -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/Debug/UuidShellcode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/Debug/UuidShellcode.exe -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/Debug/UuidShellcode.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/Debug/UuidShellcode.exe.config -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/Debug/UuidShellcode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/Debug/UuidShellcode.pdb -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/Debug/UuidShellcode.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/Debug/UuidShellcode.vshost.exe -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/Debug/UuidShellcode.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/Debug/UuidShellcode.vshost.exe.config -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/Debug/UuidShellcode.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/Debug/UuidShellcode.vshost.exe.manifest -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/Release/UuidShellcode.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/Release/UuidShellcode.exe.config -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/Release/UuidShellcode.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/Release/UuidShellcode.vshost.exe -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/Release/UuidShellcode.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/Release/UuidShellcode.vshost.exe.config -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/Release/UuidShellcode.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/Release/UuidShellcode.vshost.exe.manifest -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/x64/Release/UuidShellcode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/x64/Release/UuidShellcode.exe -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/x64/Release/UuidShellcode.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/x64/Release/UuidShellcode.exe.config -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/x64/Release/UuidShellcode.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/x64/Release/UuidShellcode.vshost.exe -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/x64/Release/UuidShellcode.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/x64/Release/UuidShellcode.vshost.exe.config -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/bin/x64/Release/UuidShellcode.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/bin/x64/Release/UuidShellcode.vshost.exe.manifest -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Debug/UuidShellcode.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/Debug/UuidShellcode.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Debug/UuidShellcode.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/Debug/UuidShellcode.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Debug/UuidShellcode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/Debug/UuidShellcode.exe -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Debug/UuidShellcode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/Debug/UuidShellcode.pdb -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/Release/UuidShellcode.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/Release/UuidShellcode.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/UuidShellcode.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/UuidShellcode.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/UuidShellcode.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/UuidShellcode.csproj.nuget.g.props -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/UuidShellcode.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/UuidShellcode.csproj.nuget.g.targets -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/project.assets.json -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/project.nuget.cache -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/x64/Release/.NETFramework,Version=v4.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/x64/Release/.NETFramework,Version=v4.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/x64/Release/Costura/9AFDB5F6A02DCAB80BB3FB030668CFB1C0ECA687.costura.dinvoke.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/x64/Release/Costura/9AFDB5F6A02DCAB80BB3FB030668CFB1C0ECA687.costura.dinvoke.dll.compressed -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/x64/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/x64/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/x64/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/x64/Release/UuidShellcode.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 84186c5fbf126a1bc29b7c2dfef2366584f5554e 2 | -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/x64/Release/UuidShellcode.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/x64/Release/UuidShellcode.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/x64/Release/UuidShellcode.csproj.Fody.CopyLocal.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UuidShellcode/UuidShellcode/obj/x64/Release/UuidShellcode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/UuidShellcode/UuidShellcode/obj/x64/Release/UuidShellcode.exe -------------------------------------------------------------------------------- /bypassAV8/.vs/Part8/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/.vs/Part8/v14/.suo -------------------------------------------------------------------------------- /bypassAV8/.vs/Part8/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/.vs/Part8/v16/.suo -------------------------------------------------------------------------------- /bypassAV8/Part8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8.sln -------------------------------------------------------------------------------- /bypassAV8/Part8/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/App.config -------------------------------------------------------------------------------- /bypassAV8/Part8/Part8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/Part8.csproj -------------------------------------------------------------------------------- /bypassAV8/Part8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/Program.cs -------------------------------------------------------------------------------- /bypassAV8/Part8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /bypassAV8/Part8/bin/Debug/Part8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/bin/Debug/Part8.exe -------------------------------------------------------------------------------- /bypassAV8/Part8/bin/Debug/Part8.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/bin/Debug/Part8.exe.config -------------------------------------------------------------------------------- /bypassAV8/Part8/bin/Debug/Part8.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/bin/Debug/Part8.pdb -------------------------------------------------------------------------------- /bypassAV8/Part8/bin/Debug/Part8.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/bin/Debug/Part8.vshost.exe -------------------------------------------------------------------------------- /bypassAV8/Part8/bin/Debug/Part8.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/bin/Debug/Part8.vshost.exe.config -------------------------------------------------------------------------------- /bypassAV8/Part8/bin/Debug/Part8.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/bin/Debug/Part8.vshost.exe.manifest -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/Debug/Part8.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/obj/Debug/Part8.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/Debug/Part8.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/obj/Debug/Part8.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/Debug/Part8.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/obj/Debug/Part8.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/Debug/Part8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/obj/Debug/Part8.exe -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/Debug/Part8.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/obj/Debug/Part8.pdb -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/x64/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/obj/x64/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/x64/Debug/Part8.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/obj/x64/Debug/Part8.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/x64/Release/.NETFramework,Version=v4.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/obj/x64/Release/.NETFramework,Version=v4.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/bypassAV8/Part8/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /bypassAV8/Part8/obj/x64/Release/Part8.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xlsmfishing/Xlsm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lengjibo/OffenSiveCSharp/HEAD/xlsmfishing/Xlsm.exe --------------------------------------------------------------------------------