├── DInvoke ├── ProcessHollowing │ ├── obj │ │ ├── Debug │ │ │ ├── ProcessHollowing.csproj.AssemblyReference.cache │ │ │ ├── ProcessHollowing.csproj.CoreCompileInputs.cache │ │ │ ├── ProcessHollowing.exe │ │ │ ├── ProcessHollowing.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── ProcessHollowing.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── ProcessHollowing.csproj.CoreCompileInputs.cache │ │ │ ├── ProcessHollowing.exe │ │ │ ├── ProcessHollowing.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── ProcessHollowing.csproj.AssemblyReference.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── ProcessHollowing.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── bin │ │ ├── Debug │ │ │ ├── ProcessHollowing.exe │ │ │ ├── ProcessHollowing.pdb │ │ │ └── ProcessHollowing.exe.config │ │ └── Release │ │ │ ├── ProcessHollowing.exe │ │ │ ├── ProcessHollowing.pdb │ │ │ └── ProcessHollowing.exe.config │ ├── App.config │ └── Properties │ │ └── AssemblyInfo.cs ├── ProcessInjection │ ├── obj │ │ ├── Debug │ │ │ ├── ProcessInjection.csproj.AssemblyReference.cache │ │ │ ├── ProcessInjection.csproj.CoreCompileInputs.cache │ │ │ ├── ProcessInjection.exe │ │ │ ├── ProcessInjection.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── ProcessInjection.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── ProcessInjection.csproj.CoreCompileInputs.cache │ │ │ ├── ProcessInjection.exe │ │ │ ├── ProcessInjection.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── ProcessInjection.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── bin │ │ ├── Debug │ │ │ ├── ProcessInjection.exe │ │ │ ├── ProcessInjection.pdb │ │ │ └── ProcessInjection.exe.config │ │ └── Release │ │ │ ├── ProcessInjection.exe │ │ │ ├── ProcessInjection.pdb │ │ │ └── ProcessInjection.exe.config │ ├── App.config │ └── Properties │ │ └── AssemblyInfo.cs ├── SuspendedThreadInjection │ ├── obj │ │ └── Release │ │ │ ├── SuspendedThreadInjection.csproj.FileListAbsolute.txt │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── App.config │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SuspendedThreadInjection.csproj ├── XOR │ ├── obj │ │ ├── Debug │ │ │ ├── XOR.csproj.CoreCompileInputs.cache │ │ │ ├── XOR.exe │ │ │ ├── XOR.pdb │ │ │ ├── XOR.csproj.AssemblyReference.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── XOR.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── XOR.csproj.CoreCompileInputs.cache │ │ │ ├── XOR.exe │ │ │ ├── XOR.pdb │ │ │ ├── XOR.csproj.AssemblyReference.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── XOR.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── XOR.csproj.FileListAbsolute.txt │ ├── bin │ │ ├── Debug │ │ │ ├── XOR.exe │ │ │ ├── XOR.pdb │ │ │ └── XOR.exe.config │ │ └── Release │ │ │ ├── XOR.exe │ │ │ ├── XOR.pdb │ │ │ └── XOR.exe.config │ ├── App.config │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Program.cs ├── AES │ ├── obj │ │ ├── x64 │ │ │ ├── Debug │ │ │ │ ├── AES.csproj.CoreCompileInputs.cache │ │ │ │ ├── AES.pdb │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ │ └── AES.csproj.FileListAbsolute.txt │ │ │ └── Release │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ │ └── AES.csproj.FileListAbsolute.txt │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── App.config │ └── Properties │ │ └── AssemblyInfo.cs ├── CaesarCipher │ ├── obj │ │ ├── Debug │ │ │ ├── CaesarCipher.csproj.CoreCompileInputs.cache │ │ │ ├── CaesarCipher.exe │ │ │ ├── CaesarCipher.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── CaesarCipher.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── CaesarCipher.csproj.CoreCompileInputs.cache │ │ │ ├── CaesarCipher.exe │ │ │ ├── CaesarCipher.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── CaesarCipher.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── CaesarCipher.csproj.FileListAbsolute.txt │ ├── App.config │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DLLProcessHollowing │ ├── obj │ │ ├── Debug │ │ │ ├── DLLProcessHollowing.csproj.CoreCompileInputs.cache │ │ │ ├── DLLProcessHollowing.dll │ │ │ ├── DLLProcessHollowing.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DLLProcessHollowing.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── DLLProcessHollowing.csproj.CoreCompileInputs.cache │ │ │ ├── DLLProcessHollowing.dll │ │ │ ├── DLLProcessHollowing.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DLLProcessHollowing.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DLLProcessHollowing.csproj.FileListAbsolute.txt │ ├── bin │ │ ├── Debug │ │ │ ├── DLLProcessHollowing.dll │ │ │ └── DLLProcessHollowing.pdb │ │ └── Release │ │ │ ├── DLLProcessHollowing.dll │ │ │ └── DLLProcessHollowing.pdb │ └── Properties │ │ └── AssemblyInfo.cs ├── DLLProcessInjection │ ├── obj │ │ ├── Debug │ │ │ ├── DLLProcessInjection.csproj.CoreCompileInputs.cache │ │ │ ├── DLLProcessInjection.dll │ │ │ ├── DLLProcessInjection.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DLLProcessInjection.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── DLLProcessInjection.csproj.CoreCompileInputs.cache │ │ │ ├── DLLProcessInjection.dll │ │ │ ├── DLLProcessInjection.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DLLProcessInjection.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DLLProcessInjection.csproj.FileListAbsolute.txt │ ├── bin │ │ ├── Debug │ │ │ ├── DLLProcessInjection.dll │ │ │ └── DLLProcessInjection.pdb │ │ └── Release │ │ │ ├── DLLProcessInjection.dll │ │ │ └── DLLProcessInjection.pdb │ └── Properties │ │ └── AssemblyInfo.cs ├── DynamicProcessInjection │ ├── obj │ │ ├── Debug │ │ │ ├── DynamicProcessInjection.csproj.CoreCompileInputs.cache │ │ │ ├── DynamicProcessInjection.exe │ │ │ ├── DynamicProcessInjection.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── DynamicProcessInjection.csproj.AssemblyReference.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DynamicProcessInjection.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── DynamicProcessInjection.csproj.CoreCompileInputs.cache │ │ │ ├── DynamicProcessInjection.exe │ │ │ ├── DynamicProcessInjection.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── DynamicProcessInjection.csproj.AssemblyReference.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DynamicProcessInjection.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── bin │ │ ├── Debug │ │ │ ├── DynamicProcessInjection.exe │ │ │ ├── DynamicProcessInjection.pdb │ │ │ └── DynamicProcessInjection.exe.config │ │ └── Release │ │ │ ├── DynamicProcessInjection.exe │ │ │ ├── DynamicProcessInjection.pdb │ │ │ └── DynamicProcessInjection.exe.config │ ├── App.config │ └── Properties │ │ └── AssemblyInfo.cs └── DLLReflectiveDLLInjection │ ├── obj │ ├── Release │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── DLLReflectiveDLLInjection.csproj.AssemblyReference.cache │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ └── DLLReflectiveDLLInjection.csproj.FileListAbsolute.txt │ └── Debug │ │ ├── DLLReflectiveDLLInjection.csproj.AssemblyReference.cache │ │ └── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── DLLReflectiveDLLInjection.csproj ├── PInvoke ├── ProcessHollowing │ ├── obj │ │ ├── Debug │ │ │ ├── ProcessHollowing.csproj.AssemblyReference.cache │ │ │ ├── ProcessHollowing.csproj.CoreCompileInputs.cache │ │ │ ├── ProcessHollowing.exe │ │ │ ├── ProcessHollowing.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── ProcessHollowing.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── ProcessHollowing.csproj.CoreCompileInputs.cache │ │ │ ├── ProcessHollowing.exe │ │ │ ├── ProcessHollowing.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── ProcessHollowing.csproj.AssemblyReference.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── ProcessHollowing.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── ProcessHollowing.csproj.FileListAbsolute.txt │ ├── bin │ │ ├── Debug │ │ │ ├── ProcessHollowing.exe │ │ │ ├── ProcessHollowing.pdb │ │ │ └── ProcessHollowing.exe.config │ │ └── Release │ │ │ ├── ProcessHollowing.exe │ │ │ ├── ProcessHollowing.pdb │ │ │ └── ProcessHollowing.exe.config │ ├── App.config │ └── Properties │ │ └── AssemblyInfo.cs ├── ProcessInjection │ ├── obj │ │ ├── Debug │ │ │ ├── ProcessInjection.csproj.AssemblyReference.cache │ │ │ ├── ProcessInjection.csproj.CoreCompileInputs.cache │ │ │ ├── ProcessInjection.exe │ │ │ ├── ProcessInjection.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── ProcessInjection.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── ProcessInjection.csproj.CoreCompileInputs.cache │ │ │ ├── ProcessInjection.exe │ │ │ ├── ProcessInjection.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── ProcessInjection.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── ProcessInjection.csproj.FileListAbsolute.txt │ ├── bin │ │ ├── Debug │ │ │ ├── ProcessInjection.exe │ │ │ ├── ProcessInjection.pdb │ │ │ └── ProcessInjection.exe.config │ │ └── Release │ │ │ ├── ProcessInjection.exe │ │ │ ├── ProcessInjection.pdb │ │ │ └── ProcessInjection.exe.config │ ├── App.config │ └── Properties │ │ └── AssemblyInfo.cs ├── SuspendedThreadInjection │ ├── obj │ │ └── Release │ │ │ ├── SuspendedThreadInjection.csproj.FileListAbsolute.txt │ │ │ ├── SuspendedThreadInjection.csproj.AssemblyReference.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── App.config │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SuspendedThreadInjection.csproj ├── XOR │ ├── obj │ │ ├── Debug │ │ │ ├── XOR.csproj.CoreCompileInputs.cache │ │ │ ├── XOR.exe │ │ │ ├── XOR.pdb │ │ │ ├── XOR.csproj.AssemblyReference.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── XOR.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── XOR.csproj.CoreCompileInputs.cache │ │ │ ├── XOR.exe │ │ │ ├── XOR.pdb │ │ │ ├── XOR.csproj.AssemblyReference.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── XOR.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── XOR.csproj.FileListAbsolute.txt │ ├── bin │ │ ├── Debug │ │ │ ├── XOR.exe │ │ │ ├── XOR.pdb │ │ │ └── XOR.exe.config │ │ └── Release │ │ │ ├── XOR.exe │ │ │ ├── XOR.pdb │ │ │ └── XOR.exe.config │ ├── App.config │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Program.cs ├── AES │ ├── obj │ │ ├── x64 │ │ │ ├── Debug │ │ │ │ ├── AES.csproj.CoreCompileInputs.cache │ │ │ │ ├── AES.exe │ │ │ │ ├── AES.pdb │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ │ └── AES.csproj.FileListAbsolute.txt │ │ │ └── Release │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ │ └── AES.csproj.FileListAbsolute.txt │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── bin │ │ └── x64 │ │ │ └── Debug │ │ │ ├── AES.exe │ │ │ ├── AES.pdb │ │ │ └── AES.exe.config │ ├── App.config │ └── Properties │ │ └── AssemblyInfo.cs ├── CaesarCipher │ ├── obj │ │ ├── Debug │ │ │ ├── CaesarCipher.csproj.CoreCompileInputs.cache │ │ │ ├── CaesarCipher.exe │ │ │ ├── CaesarCipher.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── CaesarCipher.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── CaesarCipher.csproj.CoreCompileInputs.cache │ │ │ ├── CaesarCipher.exe │ │ │ ├── CaesarCipher.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── CaesarCipher.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── CaesarCipher.csproj.FileListAbsolute.txt │ ├── bin │ │ ├── Debug │ │ │ ├── CaesarCipher.exe │ │ │ ├── CaesarCipher.pdb │ │ │ └── CaesarCipher.exe.config │ │ └── Release │ │ │ ├── CaesarCipher.exe │ │ │ ├── CaesarCipher.pdb │ │ │ └── CaesarCipher.exe.config │ ├── App.config │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DLLProcessHollowing │ ├── obj │ │ ├── Debug │ │ │ ├── DLLProcessHollowing.csproj.CoreCompileInputs.cache │ │ │ ├── DLLProcessHollowing.dll │ │ │ ├── DLLProcessHollowing.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DLLProcessHollowing.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── DLLProcessHollowing.csproj.CoreCompileInputs.cache │ │ │ ├── DLLProcessHollowing.dll │ │ │ ├── DLLProcessHollowing.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DLLProcessHollowing.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DLLProcessHollowing.csproj.FileListAbsolute.txt │ ├── bin │ │ ├── Debug │ │ │ ├── DLLProcessHollowing.dll │ │ │ └── DLLProcessHollowing.pdb │ │ └── Release │ │ │ ├── DLLProcessHollowing.dll │ │ │ └── DLLProcessHollowing.pdb │ ├── Properties │ │ └── AssemblyInfo.cs │ └── DLLProcessHollowing.csproj ├── DLLProcessInjection │ ├── obj │ │ ├── Debug │ │ │ ├── DLLProcessInjection.csproj.CoreCompileInputs.cache │ │ │ ├── DLLProcessInjection.dll │ │ │ ├── DLLProcessInjection.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DLLProcessInjection.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── DLLProcessInjection.csproj.CoreCompileInputs.cache │ │ │ ├── DLLProcessInjection.dll │ │ │ ├── DLLProcessInjection.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DLLProcessInjection.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DLLProcessInjection.csproj.FileListAbsolute.txt │ ├── bin │ │ ├── Debug │ │ │ ├── DLLProcessInjection.dll │ │ │ └── DLLProcessInjection.pdb │ │ └── Release │ │ │ ├── DLLProcessInjection.dll │ │ │ └── DLLProcessInjection.pdb │ ├── Properties │ │ └── AssemblyInfo.cs │ └── DLLProcessInjection.csproj ├── DynamicProcessInjection │ ├── obj │ │ ├── Debug │ │ │ ├── DynamicProcessInjection.csproj.CoreCompileInputs.cache │ │ │ ├── DynamicProcessInjection.exe │ │ │ ├── DynamicProcessInjection.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── DynamicProcessInjection.csproj.AssemblyReference.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DynamicProcessInjection.csproj.FileListAbsolute.txt │ │ ├── Release │ │ │ ├── DynamicProcessInjection.csproj.CoreCompileInputs.cache │ │ │ ├── DynamicProcessInjection.exe │ │ │ ├── DynamicProcessInjection.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── DynamicProcessInjection.csproj.AssemblyReference.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DynamicProcessInjection.csproj.FileListAbsolute.txt │ │ └── x64 │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── DynamicProcessInjection.csproj.FileListAbsolute.txt │ ├── bin │ │ ├── Debug │ │ │ ├── DynamicProcessInjection.exe │ │ │ ├── DynamicProcessInjection.pdb │ │ │ └── DynamicProcessInjection.exe.config │ │ └── Release │ │ │ ├── DynamicProcessInjection.exe │ │ │ ├── DynamicProcessInjection.pdb │ │ │ └── DynamicProcessInjection.exe.config │ ├── App.config │ └── Properties │ │ └── AssemblyInfo.cs └── DLLReflectiveDLLInjection │ ├── obj │ └── Release │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ └── DLLReflectiveDLLInjection.csproj.FileListAbsolute.txt │ ├── Properties │ └── AssemblyInfo.cs │ └── DLLReflectiveDLLInjection.csproj ├── LICENSE └── README.md /DInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Debug/ProcessInjection.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Debug/ProcessInjection.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /DInvoke/SuspendedThreadInjection/obj/Release/SuspendedThreadInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PInvoke/SuspendedThreadInjection/obj/Release/SuspendedThreadInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Debug/XOR.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7f4b213b428f4c013f19137338418ee1f5525793 2 | -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Debug/XOR.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7f4b213b428f4c013f19137338418ee1f5525793 2 | -------------------------------------------------------------------------------- /DInvoke/AES/obj/x64/Debug/AES.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a716bfef2e809d656a083b5be6f3dfe2908c1bec 2 | -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Release/XOR.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6059d4e65ee015d416e91b2605eaf86bfd91c969 2 | -------------------------------------------------------------------------------- /PInvoke/AES/obj/x64/Debug/AES.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a716bfef2e809d656a083b5be6f3dfe2908c1bec 2 | -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Release/XOR.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6059d4e65ee015d416e91b2605eaf86bfd91c969 2 | -------------------------------------------------------------------------------- /PInvoke/SuspendedThreadInjection/obj/Release/SuspendedThreadInjection.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/Debug/CaesarCipher.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7f4b213b428f4c013f19137338418ee1f5525793 2 | -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/Release/CaesarCipher.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6059d4e65ee015d416e91b2605eaf86bfd91c969 2 | -------------------------------------------------------------------------------- /DInvoke/XOR/bin/Debug/XOR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/bin/Debug/XOR.exe -------------------------------------------------------------------------------- /DInvoke/XOR/bin/Debug/XOR.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/bin/Debug/XOR.pdb -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Debug/XOR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/obj/Debug/XOR.exe -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Debug/XOR.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/obj/Debug/XOR.pdb -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/Debug/CaesarCipher.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7f4b213b428f4c013f19137338418ee1f5525793 2 | -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/Release/CaesarCipher.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6059d4e65ee015d416e91b2605eaf86bfd91c969 2 | -------------------------------------------------------------------------------- /PInvoke/XOR/bin/Debug/XOR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/bin/Debug/XOR.exe -------------------------------------------------------------------------------- /PInvoke/XOR/bin/Debug/XOR.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/bin/Debug/XOR.pdb -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Debug/XOR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/obj/Debug/XOR.exe -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Debug/XOR.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/obj/Debug/XOR.pdb -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d1d5794b1d4985e41703014ee412baff6d3818a3 2 | -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Debug/ProcessInjection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7f4b213b428f4c013f19137338418ee1f5525793 2 | -------------------------------------------------------------------------------- /DInvoke/XOR/bin/Release/XOR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/bin/Release/XOR.exe -------------------------------------------------------------------------------- /DInvoke/XOR/bin/Release/XOR.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/bin/Release/XOR.pdb -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Release/XOR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/obj/Release/XOR.exe -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Release/XOR.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/obj/Release/XOR.pdb -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d1d5794b1d4985e41703014ee412baff6d3818a3 2 | -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Debug/ProcessInjection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7f4b213b428f4c013f19137338418ee1f5525793 2 | -------------------------------------------------------------------------------- /PInvoke/XOR/bin/Release/XOR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/bin/Release/XOR.exe -------------------------------------------------------------------------------- /PInvoke/XOR/bin/Release/XOR.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/bin/Release/XOR.pdb -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Release/XOR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/obj/Release/XOR.exe -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Release/XOR.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/obj/Release/XOR.pdb -------------------------------------------------------------------------------- /DInvoke/AES/obj/x64/Debug/AES.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/AES/obj/x64/Debug/AES.pdb -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Release/ProcessHollowing.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 146bb054a0391a889af5f74e48c67769e906e303 2 | -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Release/ProcessInjection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6059d4e65ee015d416e91b2605eaf86bfd91c969 2 | -------------------------------------------------------------------------------- /PInvoke/AES/bin/x64/Debug/AES.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/AES/bin/x64/Debug/AES.exe -------------------------------------------------------------------------------- /PInvoke/AES/bin/x64/Debug/AES.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/AES/bin/x64/Debug/AES.pdb -------------------------------------------------------------------------------- /PInvoke/AES/obj/x64/Debug/AES.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/AES/obj/x64/Debug/AES.exe -------------------------------------------------------------------------------- /PInvoke/AES/obj/x64/Debug/AES.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/AES/obj/x64/Debug/AES.pdb -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Release/ProcessHollowing.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 146bb054a0391a889af5f74e48c67769e906e303 2 | -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Release/ProcessInjection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6059d4e65ee015d416e91b2605eaf86bfd91c969 2 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/Debug/DLLProcessHollowing.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ada870d0c0d7db10cf5a78b78c178bca9e02638f 2 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/Release/DLLProcessHollowing.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5cbb9a7d7b432f61804a9d50c776d58a9a72ac1f 2 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/Debug/DLLProcessInjection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ada870d0c0d7db10cf5a78b78c178bca9e02638f 2 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/Release/DLLProcessInjection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5cbb9a7d7b432f61804a9d50c776d58a9a72ac1f 2 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/Debug/DLLProcessHollowing.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ada870d0c0d7db10cf5a78b78c178bca9e02638f 2 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/Release/DLLProcessHollowing.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5cbb9a7d7b432f61804a9d50c776d58a9a72ac1f 2 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/Debug/DLLProcessInjection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ada870d0c0d7db10cf5a78b78c178bca9e02638f 2 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/Release/DLLProcessInjection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5cbb9a7d7b432f61804a9d50c776d58a9a72ac1f 2 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7f4b213b428f4c013f19137338418ee1f5525793 2 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7f4b213b428f4c013f19137338418ee1f5525793 2 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6059d4e65ee015d416e91b2605eaf86bfd91c969 2 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6059d4e65ee015d416e91b2605eaf86bfd91c969 2 | -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/Debug/CaesarCipher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/CaesarCipher/obj/Debug/CaesarCipher.exe -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/Debug/CaesarCipher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/CaesarCipher/obj/Debug/CaesarCipher.pdb -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/bin/Debug/CaesarCipher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/CaesarCipher/bin/Debug/CaesarCipher.exe -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/bin/Debug/CaesarCipher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/CaesarCipher/bin/Debug/CaesarCipher.pdb -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/Debug/CaesarCipher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/CaesarCipher/obj/Debug/CaesarCipher.exe -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/Debug/CaesarCipher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/CaesarCipher/obj/Debug/CaesarCipher.pdb -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/Release/CaesarCipher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/CaesarCipher/obj/Release/CaesarCipher.exe -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/Release/CaesarCipher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/CaesarCipher/obj/Release/CaesarCipher.pdb -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/bin/Release/CaesarCipher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/CaesarCipher/bin/Release/CaesarCipher.exe -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/bin/Release/CaesarCipher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/CaesarCipher/bin/Release/CaesarCipher.pdb -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/Release/CaesarCipher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/CaesarCipher/obj/Release/CaesarCipher.exe -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/Release/CaesarCipher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/CaesarCipher/obj/Release/CaesarCipher.pdb -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/bin/Debug/ProcessHollowing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessHollowing/bin/Debug/ProcessHollowing.exe -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/bin/Debug/ProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessHollowing/bin/Debug/ProcessHollowing.pdb -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/bin/Release/ProcessHollowing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessHollowing/bin/Release/ProcessHollowing.exe -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/bin/Release/ProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessHollowing/bin/Release/ProcessHollowing.pdb -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.exe -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.pdb -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Release/ProcessHollowing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessHollowing/obj/Release/ProcessHollowing.exe -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Release/ProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessHollowing/obj/Release/ProcessHollowing.pdb -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/bin/Debug/ProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessInjection/bin/Debug/ProcessInjection.exe -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/bin/Debug/ProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessInjection/bin/Debug/ProcessInjection.pdb -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/bin/Release/ProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessInjection/bin/Release/ProcessInjection.exe -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/bin/Release/ProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessInjection/bin/Release/ProcessInjection.pdb -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Debug/ProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessInjection/obj/Debug/ProcessInjection.exe -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Debug/ProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessInjection/obj/Debug/ProcessInjection.pdb -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Release/ProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessInjection/obj/Release/ProcessInjection.exe -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Release/ProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessInjection/obj/Release/ProcessInjection.pdb -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Debug/XOR.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/obj/Debug/XOR.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/bin/Debug/ProcessHollowing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessHollowing/bin/Debug/ProcessHollowing.exe -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/bin/Debug/ProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessHollowing/bin/Debug/ProcessHollowing.pdb -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/bin/Release/ProcessHollowing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessHollowing/bin/Release/ProcessHollowing.exe -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/bin/Release/ProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessHollowing/bin/Release/ProcessHollowing.pdb -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.exe -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.pdb -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Release/ProcessHollowing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessHollowing/obj/Release/ProcessHollowing.exe -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Release/ProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessHollowing/obj/Release/ProcessHollowing.pdb -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/bin/Debug/ProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessInjection/bin/Debug/ProcessInjection.exe -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/bin/Debug/ProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessInjection/bin/Debug/ProcessInjection.pdb -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/bin/Release/ProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessInjection/bin/Release/ProcessInjection.exe -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/bin/Release/ProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessInjection/bin/Release/ProcessInjection.pdb -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Debug/ProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessInjection/obj/Debug/ProcessInjection.exe -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Debug/ProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessInjection/obj/Debug/ProcessInjection.pdb -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Release/ProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessInjection/obj/Release/ProcessInjection.exe -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Release/ProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessInjection/obj/Release/ProcessInjection.pdb -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Debug/XOR.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/obj/Debug/XOR.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Release/XOR.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/obj/Release/XOR.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Release/XOR.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/obj/Release/XOR.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/bin/Debug/DLLProcessHollowing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessHollowing/bin/Debug/DLLProcessHollowing.dll -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/bin/Debug/DLLProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessHollowing/bin/Debug/DLLProcessHollowing.pdb -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/Debug/DLLProcessHollowing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessHollowing/obj/Debug/DLLProcessHollowing.dll -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/Debug/DLLProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessHollowing/obj/Debug/DLLProcessHollowing.pdb -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/bin/Debug/DLLProcessInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessInjection/bin/Debug/DLLProcessInjection.dll -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/bin/Debug/DLLProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessInjection/bin/Debug/DLLProcessInjection.pdb -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/Debug/DLLProcessInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessInjection/obj/Debug/DLLProcessInjection.dll -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/Debug/DLLProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessInjection/obj/Debug/DLLProcessInjection.pdb -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/bin/Debug/DLLProcessHollowing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessHollowing/bin/Debug/DLLProcessHollowing.dll -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/bin/Debug/DLLProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessHollowing/bin/Debug/DLLProcessHollowing.pdb -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/Debug/DLLProcessHollowing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessHollowing/obj/Debug/DLLProcessHollowing.dll -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/Debug/DLLProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessHollowing/obj/Debug/DLLProcessHollowing.pdb -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/bin/Debug/DLLProcessInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessInjection/bin/Debug/DLLProcessInjection.dll -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/bin/Debug/DLLProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessInjection/bin/Debug/DLLProcessInjection.pdb -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/Debug/DLLProcessInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessInjection/obj/Debug/DLLProcessInjection.dll -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/Debug/DLLProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessInjection/obj/Debug/DLLProcessInjection.pdb -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/bin/Release/DLLProcessHollowing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessHollowing/bin/Release/DLLProcessHollowing.dll -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/bin/Release/DLLProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessHollowing/bin/Release/DLLProcessHollowing.pdb -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/Release/DLLProcessHollowing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessHollowing/obj/Release/DLLProcessHollowing.dll -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/Release/DLLProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessHollowing/obj/Release/DLLProcessHollowing.pdb -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/bin/Release/DLLProcessInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessInjection/bin/Release/DLLProcessInjection.dll -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/bin/Release/DLLProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessInjection/bin/Release/DLLProcessInjection.pdb -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/Release/DLLProcessInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessInjection/obj/Release/DLLProcessInjection.dll -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/Release/DLLProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessInjection/obj/Release/DLLProcessInjection.pdb -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/bin/Release/DLLProcessHollowing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessHollowing/bin/Release/DLLProcessHollowing.dll -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/bin/Release/DLLProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessHollowing/bin/Release/DLLProcessHollowing.pdb -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/Release/DLLProcessHollowing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessHollowing/obj/Release/DLLProcessHollowing.dll -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/Release/DLLProcessHollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessHollowing/obj/Release/DLLProcessHollowing.pdb -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/bin/Release/DLLProcessInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessInjection/bin/Release/DLLProcessInjection.dll -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/bin/Release/DLLProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessInjection/bin/Release/DLLProcessInjection.pdb -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/Release/DLLProcessInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessInjection/obj/Release/DLLProcessInjection.dll -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/Release/DLLProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessInjection/obj/Release/DLLProcessInjection.pdb -------------------------------------------------------------------------------- /DInvoke/AES/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/AES/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/bin/Debug/DynamicProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/bin/Debug/DynamicProcessInjection.exe -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/bin/Debug/DynamicProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/bin/Debug/DynamicProcessInjection.pdb -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.exe -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.pdb -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/AES/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/AES/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/bin/Debug/DynamicProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/bin/Debug/DynamicProcessInjection.exe -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/bin/Debug/DynamicProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/bin/Debug/DynamicProcessInjection.pdb -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.exe -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.pdb -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/AES/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/AES/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/bin/Release/DynamicProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/bin/Release/DynamicProcessInjection.exe -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/bin/Release/DynamicProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/bin/Release/DynamicProcessInjection.pdb -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.exe -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.pdb -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/AES/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/AES/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/bin/Release/DynamicProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/bin/Release/DynamicProcessInjection.exe -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/bin/Release/DynamicProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/bin/Release/DynamicProcessInjection.pdb -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.exe -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.pdb -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/AES/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/AES/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/XOR/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/XOR/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/AES/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/AES/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/XOR/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/XOR/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/CaesarCipher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/CaesarCipher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/CaesarCipher/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/CaesarCipher/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/AES/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessHollowing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessInjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/XOR/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/AES/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessHollowing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessInjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/XOR/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/CaesarCipher/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessHollowing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessInjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessHollowing/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Release/ProcessHollowing.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessHollowing/obj/Release/ProcessHollowing.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/CaesarCipher/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessHollowing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessInjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessHollowing/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Release/ProcessHollowing.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessHollowing/obj/Release/ProcessHollowing.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessHollowing/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessHollowing/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/ProcessInjection/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessHollowing/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessHollowing/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/ProcessInjection/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/XOR/bin/Debug/XOR.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/XOR/bin/Debug/XOR.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessHollowing/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLProcessInjection/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/DLLReflectiveDLLInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLReflectiveDLLInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/SuspendedThreadInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/SuspendedThreadInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/XOR/bin/Release/XOR.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/AES/bin/x64/Debug/AES.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessHollowing/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLProcessInjection/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/DLLReflectiveDLLInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DLLReflectiveDLLInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/SuspendedThreadInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/SuspendedThreadInjection/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/XOR/bin/Release/XOR.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DInvoke/SuspendedThreadInjection/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PInvoke/SuspendedThreadInjection/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/bin/Debug/CaesarCipher.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/bin/Release/CaesarCipher.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/PInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DInvoke/DLLReflectiveDLLInjection/obj/Debug/DLLReflectiveDLLInjection.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLReflectiveDLLInjection/obj/Debug/DLLReflectiveDLLInjection.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DInvoke/DLLReflectiveDLLInjection/obj/Release/DLLReflectiveDLLInjection.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgePatsias/PayloadFactory/HEAD/DInvoke/DLLReflectiveDLLInjection/obj/Release/DLLReflectiveDLLInjection.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/bin/Debug/ProcessHollowing.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/bin/Debug/ProcessInjection.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/bin/Debug/ProcessHollowing.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/bin/Debug/ProcessInjection.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/bin/Release/ProcessHollowing.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/bin/Release/ProcessInjection.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/bin/Release/ProcessHollowing.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/bin/Release/ProcessInjection.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/bin/Debug/DynamicProcessInjection.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/bin/Debug/DynamicProcessInjection.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/bin/Release/DynamicProcessInjection.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/bin/Release/DynamicProcessInjection.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DInvoke/AES/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/AES/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/AES/obj/x64/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/AES/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/XOR/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/AES/obj/x64/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/AES/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/XOR/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/DLLReflectiveDLLInjection/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/DLLReflectiveDLLInjection/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/SuspendedThreadInjection/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/DLLReflectiveDLLInjection/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /PInvoke/SuspendedThreadInjection/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /DInvoke/AES/obj/x64/Debug/AES.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\bin\x64\Debug\AES.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\bin\x64\Debug\AES.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\bin\x64\Debug\AES.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\obj\x64\Debug\AES.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\obj\x64\Debug\AES.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\obj\x64\Debug\AES.pdb 7 | -------------------------------------------------------------------------------- /PInvoke/AES/obj/x64/Debug/AES.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\bin\x64\Debug\AES.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\bin\x64\Debug\AES.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\bin\x64\Debug\AES.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\obj\x64\Debug\AES.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\obj\x64\Debug\AES.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\obj\x64\Debug\AES.pdb 7 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/Debug/DLLProcessHollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\bin\Debug\DLLProcessHollowing.dll 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\bin\Debug\DLLProcessHollowing.pdb 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\Debug\DLLProcessHollowing.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\Debug\DLLProcessHollowing.dll 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\Debug\DLLProcessHollowing.pdb 6 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/Debug/DLLProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\bin\Debug\DLLProcessInjection.dll 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\bin\Debug\DLLProcessInjection.pdb 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\Debug\DLLProcessInjection.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\Debug\DLLProcessInjection.dll 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\Debug\DLLProcessInjection.pdb 6 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/Debug/DLLProcessHollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\bin\Debug\DLLProcessHollowing.dll 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\bin\Debug\DLLProcessHollowing.pdb 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\Debug\DLLProcessHollowing.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\Debug\DLLProcessHollowing.dll 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\Debug\DLLProcessHollowing.pdb 6 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/Debug/DLLProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\bin\Debug\DLLProcessInjection.dll 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\bin\Debug\DLLProcessInjection.pdb 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\Debug\DLLProcessInjection.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\Debug\DLLProcessInjection.dll 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\Debug\DLLProcessInjection.pdb 6 | -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Debug/XOR.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\Debug\XOR.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\Debug\XOR.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\Debug\XOR.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Debug\XOR.csproj.AssemblyReference.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Debug\XOR.csproj.CoreCompileInputs.cache 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Debug\XOR.exe 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Debug\XOR.pdb 8 | -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Debug/XOR.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\Debug\XOR.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\Debug\XOR.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\Debug\XOR.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Debug\XOR.csproj.AssemblyReference.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Debug\XOR.csproj.CoreCompileInputs.cache 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Debug\XOR.exe 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Debug\XOR.pdb 8 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/Release/DLLProcessHollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\bin\Release\DLLProcessHollowing.dll 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\bin\Release\DLLProcessHollowing.pdb 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\Release\DLLProcessHollowing.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\Release\DLLProcessHollowing.dll 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\Release\DLLProcessHollowing.pdb 6 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/Release/DLLProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\bin\Release\DLLProcessInjection.dll 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\bin\Release\DLLProcessInjection.pdb 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\Release\DLLProcessInjection.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\Release\DLLProcessInjection.dll 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\Release\DLLProcessInjection.pdb 6 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/Release/DLLProcessHollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\bin\Release\DLLProcessHollowing.dll 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\bin\Release\DLLProcessHollowing.pdb 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\Release\DLLProcessHollowing.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\Release\DLLProcessHollowing.dll 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\Release\DLLProcessHollowing.pdb 6 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/Release/DLLProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\bin\Release\DLLProcessInjection.dll 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\bin\Release\DLLProcessInjection.pdb 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\Release\DLLProcessInjection.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\Release\DLLProcessInjection.dll 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\Release\DLLProcessInjection.pdb 6 | -------------------------------------------------------------------------------- /PInvoke/DLLReflectiveDLLInjection/obj/Release/DLLReflectiveDLLInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLReflectiveDLLInjection\bin\Release\DLLReflectiveDLLInjection.dll 2 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLReflectiveDLLInjection\bin\Release\DLLReflectiveDLLInjection.pdb 3 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLReflectiveDLLInjection\obj\Release\DLLReflectiveDLLInjection.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLReflectiveDLLInjection\obj\Release\DLLReflectiveDLLInjection.dll 5 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLReflectiveDLLInjection\obj\Release\DLLReflectiveDLLInjection.pdb 6 | -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/Debug/CaesarCipher.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\Debug\CaesarCipher.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\Debug\CaesarCipher.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\Debug\CaesarCipher.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\Debug\CaesarCipher.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\Debug\CaesarCipher.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\Debug\CaesarCipher.pdb 7 | -------------------------------------------------------------------------------- /DInvoke/XOR/obj/Release/XOR.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\Release\XOR.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\Release\XOR.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\Release\XOR.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Release\XOR.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Release\XOR.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Release\XOR.pdb 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Release\XOR.csproj.AssemblyReference.cache 8 | -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/Debug/CaesarCipher.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\Debug\CaesarCipher.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\Debug\CaesarCipher.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\Debug\CaesarCipher.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\Debug\CaesarCipher.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\Debug\CaesarCipher.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\Debug\CaesarCipher.pdb 7 | -------------------------------------------------------------------------------- /PInvoke/XOR/obj/Release/XOR.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\Release\XOR.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\Release\XOR.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\Release\XOR.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Release\XOR.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Release\XOR.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Release\XOR.pdb 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\Release\XOR.csproj.AssemblyReference.cache 8 | -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/Release/CaesarCipher.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\Release\CaesarCipher.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\Release\CaesarCipher.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\Release\CaesarCipher.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\Release\CaesarCipher.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\Release\CaesarCipher.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\Release\CaesarCipher.pdb 7 | -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/Release/CaesarCipher.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\Release\CaesarCipher.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\Release\CaesarCipher.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\Release\CaesarCipher.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\Release\CaesarCipher.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\Release\CaesarCipher.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\Release\CaesarCipher.pdb 7 | -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Release/ProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\Release\ProcessInjection.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\Release\ProcessInjection.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\Release\ProcessInjection.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Release\ProcessInjection.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Release\ProcessInjection.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Release\ProcessInjection.pdb 7 | -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Release/ProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\Release\ProcessInjection.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\Release\ProcessInjection.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\Release\ProcessInjection.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Release\ProcessInjection.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Release\ProcessInjection.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Release\ProcessInjection.pdb 7 | -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\Debug\ProcessHollowing.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\Debug\ProcessHollowing.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\Debug\ProcessHollowing.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Debug\ProcessHollowing.csproj.AssemblyReference.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Debug\ProcessHollowing.csproj.CoreCompileInputs.cache 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Debug\ProcessHollowing.exe 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Debug\ProcessHollowing.pdb 8 | -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/obj/Debug/ProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\Debug\ProcessInjection.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\Debug\ProcessInjection.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\Debug\ProcessInjection.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Debug\ProcessInjection.csproj.AssemblyReference.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Debug\ProcessInjection.csproj.CoreCompileInputs.cache 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Debug\ProcessInjection.exe 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Debug\ProcessInjection.pdb 8 | -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Debug/ProcessHollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\Debug\ProcessHollowing.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\Debug\ProcessHollowing.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\Debug\ProcessHollowing.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Debug\ProcessHollowing.csproj.AssemblyReference.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Debug\ProcessHollowing.csproj.CoreCompileInputs.cache 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Debug\ProcessHollowing.exe 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Debug\ProcessHollowing.pdb 8 | -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/Debug/ProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\Debug\ProcessInjection.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\Debug\ProcessInjection.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\Debug\ProcessInjection.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Debug\ProcessInjection.csproj.AssemblyReference.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Debug\ProcessInjection.csproj.CoreCompileInputs.cache 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Debug\ProcessInjection.exe 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\Debug\ProcessInjection.pdb 8 | -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/obj/Release/ProcessHollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\Release\ProcessHollowing.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\Release\ProcessHollowing.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\Release\ProcessHollowing.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Release\ProcessHollowing.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Release\ProcessHollowing.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Release\ProcessHollowing.pdb 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Release\ProcessHollowing.csproj.AssemblyReference.cache 8 | -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/Release/ProcessHollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\Release\ProcessHollowing.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\Release\ProcessHollowing.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\Release\ProcessHollowing.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Release\ProcessHollowing.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Release\ProcessHollowing.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Release\ProcessHollowing.pdb 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\Release\ProcessHollowing.csproj.AssemblyReference.cache 8 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\Debug\DynamicProcessInjection.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\Debug\DynamicProcessInjection.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\Debug\DynamicProcessInjection.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Debug\DynamicProcessInjection.csproj.AssemblyReference.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Debug\DynamicProcessInjection.csproj.CoreCompileInputs.cache 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Debug\DynamicProcessInjection.exe 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Debug\DynamicProcessInjection.pdb 8 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Debug/DynamicProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\Debug\DynamicProcessInjection.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\Debug\DynamicProcessInjection.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\Debug\DynamicProcessInjection.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Debug\DynamicProcessInjection.csproj.AssemblyReference.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Debug\DynamicProcessInjection.csproj.CoreCompileInputs.cache 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Debug\DynamicProcessInjection.exe 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Debug\DynamicProcessInjection.pdb 8 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\Release\DynamicProcessInjection.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\Release\DynamicProcessInjection.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\Release\DynamicProcessInjection.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Release\DynamicProcessInjection.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Release\DynamicProcessInjection.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Release\DynamicProcessInjection.pdb 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Release\DynamicProcessInjection.csproj.AssemblyReference.cache 8 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/Release/DynamicProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\Release\DynamicProcessInjection.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\Release\DynamicProcessInjection.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\Release\DynamicProcessInjection.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Release\DynamicProcessInjection.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Release\DynamicProcessInjection.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Release\DynamicProcessInjection.pdb 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\Release\DynamicProcessInjection.csproj.AssemblyReference.cache 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 UserX 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🏭 Payload Factory 2 | This project is about different malware development techniques for AV and Defense evasion using C#. 3 | 4 | API calling methodologies using: 5 | * PInvoke (Platform Invoke) [https://www.pinvoke.net/](https://www.pinvoke.net). Calling Win32 and other unmanaged APIs from managed code. 6 | 7 | * DInvoke (Dynamic Invoke) [https://thewover.github.io/Dynamic-Invoke/](https://thewover.github.io/Dynamic-Invoke). Dynamically invoke unmanaged code from memory or disk while avoiding API Hooking, suspicious imports and having an Import table in the payload, evading EDR and AV scan interfaces. 8 | 9 | ## 🧬⚗️ Techniques 10 | 11 | ### 📃 Dynamic Link Libraries (DLL) 12 | * Process Hollowing 13 | * Process Injection 14 | * Reflective DLL Injection 15 | 16 | ## ⚙️ Executables (EXE) 17 | * Process Hollowing 18 | * Process Injection 19 | * Dynamic Process Injection 20 | * Suspended Thread Injection 21 | 22 | ## 🔐 Encryption 23 | * AES (Advanced Encryption Standard) 24 | * XOR (Exclusive OR) 25 | * Caesar Cipher 26 | 27 | ## 📥 Clone the Project 28 | ```bash 29 | git clone https://github.com/GeorgePatsias/PayloadFactory.git 30 | ``` 31 | ### Open `Payload.sln` with Visual Studio and compile for a `x64` bit architecture. 32 | 33 | ## References 34 | * [https://github.com/TheWover/DInvoke](https://github.com/TheWover/DInvoke) 35 | * [https://github.com/dotnet/pinvoke](https://github.com/dotnet/pinvoke) 36 | -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Text; 3 | 4 | namespace CaesarCipher 5 | { 6 | class Program 7 | { 8 | static void Main(string[] args) 9 | { 10 | byte[] buf = new byte[] { }; 11 | 12 | //Ceasar Cipher 13 | byte[] encoded = new byte[buf.Length]; 14 | for (int i = 0; i < buf.Length; i++) 15 | { 16 | encoded[i] = (byte)(((uint)buf[i] - 18) & 0xFF); // -18 are the Character shifts of the encoding 17 | } 18 | 19 | StringBuilder newshellcode = new StringBuilder(encoded.Length * 2); 20 | newshellcode.Append("byte[] encoded = new byte["); 21 | newshellcode.Append(encoded.Length); 22 | newshellcode.Append("] { "); 23 | for (int i = 0; i < encoded.Length; i++) 24 | { 25 | newshellcode.Append("0x"); 26 | newshellcode.AppendFormat("{0:x2}", encoded[i]); 27 | if (i < encoded.Length - 1) 28 | { 29 | newshellcode.Append(", "); 30 | } 31 | } 32 | newshellcode.Append(" };"); 33 | Console.WriteLine(newshellcode.ToString()); 34 | } 35 | } 36 | } 37 | 38 | /*CaesarCipher Decoder 39 | byte[] decoded = new byte[buf.Length]; 40 | for (int i = 0; i < buf.Length; i++) 41 | { 42 | decoded[i] = (byte)(((uint)buf[i] + 18) & 0xFF); 43 | }*/ 44 | -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Text; 3 | 4 | namespace CaesarCipher 5 | { 6 | class Program 7 | { 8 | static void Main(string[] args) 9 | { 10 | byte[] buf = new byte[] { }; 11 | 12 | //Ceasar Cipher 13 | byte[] encoded = new byte[buf.Length]; 14 | for (int i = 0; i < buf.Length; i++) 15 | { 16 | encoded[i] = (byte)(((uint)buf[i] - 18) & 0xFF); // -18 are the Character shifts of the encoding 17 | } 18 | 19 | StringBuilder newshellcode = new StringBuilder(encoded.Length * 2); 20 | newshellcode.Append("byte[] encoded = new byte["); 21 | newshellcode.Append(encoded.Length); 22 | newshellcode.Append("] { "); 23 | for (int i = 0; i < encoded.Length; i++) 24 | { 25 | newshellcode.Append("0x"); 26 | newshellcode.AppendFormat("{0:x2}", encoded[i]); 27 | if (i < encoded.Length - 1) 28 | { 29 | newshellcode.Append(", "); 30 | } 31 | } 32 | newshellcode.Append(" };"); 33 | Console.WriteLine(newshellcode.ToString()); 34 | } 35 | } 36 | } 37 | 38 | /*CaesarCipher Decoder 39 | byte[] decoded = new byte[buf.Length]; 40 | for (int i = 0; i < buf.Length; i++) 41 | { 42 | decoded[i] = (byte)(((uint)buf[i] + 18) & 0xFF); 43 | }*/ 44 | -------------------------------------------------------------------------------- /DInvoke/AES/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("AES")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("AES")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("f3ad613b-51d5-497f-8110-78ce5b830a5e")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DInvoke/XOR/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("XOR")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("XOR")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("66ba86ed-9c42-428d-8959-ef0ec87a4fab")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /PInvoke/AES/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("AES")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("AES")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("f3ad613b-51d5-497f-8110-78ce5b830a5e")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /PInvoke/XOR/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("XOR")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("XOR")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("66ba86ed-9c42-428d-8959-ef0ec87a4fab")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("CaesarCipher")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("CaesarCipher")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("2bc3dced-d8fd-4b6c-8e4c-b85ad0e2e36e")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("CaesarCipher")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("CaesarCipher")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("2bc3dced-d8fd-4b6c-8e4c-b85ad0e2e36e")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DInvoke/ProcessHollowing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ProcessHollowing")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ProcessHollowing")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("73848d19-c62c-423c-98d0-880454ab5426")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DInvoke/ProcessInjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ProcessInjection")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ProcessInjection")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("99e9b820-f0b5-49a0-ae84-cdf4df6b5734")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ProcessHollowing")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ProcessHollowing")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("73848d19-c62c-423c-98d0-880454ab5426")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ProcessInjection")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ProcessInjection")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("99e9b820-f0b5-49a0-ae84-cdf4df6b5734")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("DLLProcessHollowing")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("DLLProcessHollowing")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("671894e8-281c-4e63-9a58-d18d527b18c7")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("DLLProcessInjection")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("DLLProcessInjection")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("880c5f66-65cd-4a87-95b3-4f3311d51f40")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("DLLProcessHollowing")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("DLLProcessHollowing")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("671894e8-281c-4e63-9a58-d18d527b18c7")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("DLLProcessInjection")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("DLLProcessInjection")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("880c5f66-65cd-4a87-95b3-4f3311d51f40")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DInvoke/DynamicProcessInjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("DynamicProcessInjection")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("DynamicProcessInjection")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("1687cc95-78ae-4e59-bbfb-4bc2b98fa3bb")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("DynamicProcessInjection")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("DynamicProcessInjection")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("1687cc95-78ae-4e59-bbfb-4bc2b98fa3bb")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DInvoke/SuspendedThreadInjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("SuspendedThreadInjection")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("SuspendedThreadInjection")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("20e3e5aa-268d-4be5-9650-8baf6c1a50f3")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /PInvoke/SuspendedThreadInjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("SuspendedThreadInjection")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("SuspendedThreadInjection")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("6e217e33-46a3-4cc3-aaaf-a66e6f344da7")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DInvoke/DLLReflectiveDLLInjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("DLLReflectiveDLLInjection")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("DLLReflectiveDLLInjection")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("44c93acf-fd1b-45eb-af8a-afa12f752edc")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /PInvoke/DLLReflectiveDLLInjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("DLLReflectiveDLLInjection")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("DLLReflectiveDLLInjection")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("44c93acf-fd1b-45eb-af8a-afa12f752edc")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /PInvoke/AES/obj/x64/Release/AES.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\bin\x64\Release\AES.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\bin\x64\Release\AES.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\bin\x64\Release\AES.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\obj\x64\Release\AES.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\obj\x64\Release\AES.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\obj\x64\Release\AES.pdb 7 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\bin\x64\Release\AES.exe.config 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\bin\x64\Release\AES.exe 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\bin\x64\Release\AES.pdb 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\obj\x64\Release\AES.csproj.AssemblyReference.cache 11 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\obj\x64\Release\AES.csproj.CoreCompileInputs.cache 12 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\obj\x64\Release\AES.exe 13 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\obj\x64\Release\AES.pdb 14 | C:\Users\georg\Desktop\Hell\OSEP\Payload\AES\bin\x64\Release\AES.exe.config 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\AES\bin\x64\Release\AES.exe 16 | C:\Users\georg\Desktop\Hell\OSEP\Payload\AES\bin\x64\Release\AES.pdb 17 | C:\Users\georg\Desktop\Hell\OSEP\Payload\AES\obj\x64\Release\AES.csproj.CoreCompileInputs.cache 18 | C:\Users\georg\Desktop\Hell\OSEP\Payload\AES\obj\x64\Release\AES.exe 19 | C:\Users\georg\Desktop\Hell\OSEP\Payload\AES\obj\x64\Release\AES.pdb 20 | -------------------------------------------------------------------------------- /PInvoke/XOR/obj/x64/Release/XOR.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\x64\Release\XOR.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\x64\Release\XOR.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\x64\Release\XOR.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\x64\Release\XOR.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\x64\Release\XOR.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\x64\Release\XOR.pdb 7 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\bin\x64\Release\XOR.exe.config 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\bin\x64\Release\XOR.exe 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\bin\x64\Release\XOR.pdb 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\obj\x64\Release\XOR.csproj.AssemblyReference.cache 11 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\obj\x64\Release\XOR.csproj.CoreCompileInputs.cache 12 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\obj\x64\Release\XOR.exe 13 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\obj\x64\Release\XOR.pdb 14 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\bin\x64\Release\XOR.exe.config 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\bin\x64\Release\XOR.exe 16 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\bin\x64\Release\XOR.pdb 17 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\obj\x64\Release\XOR.csproj.CoreCompileInputs.cache 18 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\obj\x64\Release\XOR.exe 19 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\obj\x64\Release\XOR.pdb 20 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\obj\x64\Release\XOR.csproj.AssemblyReference.cache 21 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/obj/x64/Release/DLLProcessHollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.dll 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.pdb 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.dll 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.pdb 6 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.dll 7 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.pdb 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.csproj.CoreCompileInputs.cache 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.dll 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.pdb 11 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.dll 12 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.pdb 13 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.csproj.CoreCompileInputs.cache 14 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.dll 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.pdb 16 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/obj/x64/Release/DLLProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.dll 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.pdb 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.dll 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.pdb 6 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.dll 7 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.pdb 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.csproj.CoreCompileInputs.cache 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.dll 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.pdb 11 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.dll 12 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.pdb 13 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.csproj.CoreCompileInputs.cache 14 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.dll 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.pdb 16 | -------------------------------------------------------------------------------- /DInvoke/DLLReflectiveDLLInjection/obj/Release/DLLReflectiveDLLInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLReflectiveDLLInjection\bin\Release\DLLReflectiveDLLInjection.dll 2 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLReflectiveDLLInjection\bin\Release\DLLReflectiveDLLInjection.pdb 3 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLReflectiveDLLInjection\obj\Release\DLLReflectiveDLLInjection.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLReflectiveDLLInjection\obj\Release\DLLReflectiveDLLInjection.dll 5 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLReflectiveDLLInjection\obj\Release\DLLReflectiveDLLInjection.pdb 6 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLReflectiveDLLInjection\bin\Release\DLLReflectiveDLLInjection.dll 7 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLReflectiveDLLInjection\bin\Release\DLLReflectiveDLLInjection.pdb 8 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLReflectiveDLLInjection\obj\Release\DLLReflectiveDLLInjection.csproj.CoreCompileInputs.cache 9 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLReflectiveDLLInjection\obj\Release\DLLReflectiveDLLInjection.dll 10 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLReflectiveDLLInjection\obj\Release\DLLReflectiveDLLInjection.pdb 11 | C:\Users\georg\Desktop\Payload Factory\DLLReflectiveDLLInjection\bin\Release\DLLReflectiveDLLInjection.dll 12 | C:\Users\georg\Desktop\Payload Factory\DLLReflectiveDLLInjection\bin\Release\DLLReflectiveDLLInjection.pdb 13 | C:\Users\georg\Desktop\Payload Factory\DLLReflectiveDLLInjection\obj\Release\DLLReflectiveDLLInjection.csproj.CoreCompileInputs.cache 14 | C:\Users\georg\Desktop\Payload Factory\DLLReflectiveDLLInjection\obj\Release\DLLReflectiveDLLInjection.dll 15 | C:\Users\georg\Desktop\Payload Factory\DLLReflectiveDLLInjection\obj\Release\DLLReflectiveDLLInjection.pdb 16 | -------------------------------------------------------------------------------- /PInvoke/XOR/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Text; 3 | 4 | namespace XOR 5 | { 6 | class Program 7 | { 8 | private static byte[] xor(byte[] cipher, byte[] key) 9 | { 10 | byte[] xored = new byte[cipher.Length]; 11 | 12 | for (int i = 0; i < cipher.Length; i++) 13 | { 14 | xored[i] = (byte)(cipher[i] ^ key[i % key.Length]); 15 | } 16 | 17 | return xored; 18 | } 19 | 20 | static void Main(string[] args) 21 | { 22 | string key = "xor_key"; 23 | 24 | byte[] buf = new byte[] { }; 25 | 26 | byte[] xorshellcode; 27 | 28 | xorshellcode = xor(buf, Encoding.ASCII.GetBytes(key)); 29 | StringBuilder newshellcode = new StringBuilder(); 30 | newshellcode.Append("byte[] buf = new byte["); 31 | newshellcode.Append(xorshellcode.Length); 32 | newshellcode.Append("] { "); 33 | for (int i = 0; i < xorshellcode.Length; i++) 34 | { 35 | newshellcode.Append("0x"); 36 | newshellcode.AppendFormat("{0:x2}", xorshellcode[i]); 37 | if (i < xorshellcode.Length - 1) 38 | { 39 | newshellcode.Append(", "); 40 | } 41 | } 42 | newshellcode.Append(" };"); 43 | Console.WriteLine(newshellcode.ToString()); 44 | 45 | 46 | /* XOR Decryptor 47 | string key = "xor_key"; 48 | byte[] decoded = new byte[buf.Length]; 49 | for (int i = 0; i < buf.Length; i++) 50 | { 51 | decoded[i] = (byte)(buf[i] ^ Encoding.ASCII.GetBytes(key)[i % Encoding.ASCII.GetBytes(key).Length]); 52 | }*/ 53 | 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /DInvoke/XOR/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Text; 3 | 4 | namespace XOR 5 | { 6 | class Program 7 | { 8 | private static byte[] xor(byte[] cipher, byte[] key) 9 | { 10 | byte[] xored = new byte[cipher.Length]; 11 | 12 | for (int i = 0; i < cipher.Length; i++) 13 | { 14 | xored[i] = (byte)(cipher[i] ^ key[i % key.Length]); 15 | } 16 | 17 | return xored; 18 | } 19 | 20 | static void Main(string[] args) 21 | { 22 | string key = "key_xor"; 23 | 24 | byte[] buf = new byte[] { }; 25 | 26 | byte[] xorshellcode; 27 | 28 | xorshellcode = xor(buf, Encoding.ASCII.GetBytes(key)); 29 | StringBuilder newshellcode = new StringBuilder(); 30 | newshellcode.Append("byte[] buf = new byte["); 31 | newshellcode.Append(xorshellcode.Length); 32 | newshellcode.Append("] { "); 33 | for (int i = 0; i < xorshellcode.Length; i++) 34 | { 35 | newshellcode.Append("0x"); 36 | newshellcode.AppendFormat("{0:x2}", xorshellcode[i]); 37 | if (i < xorshellcode.Length - 1) 38 | { 39 | newshellcode.Append(", "); 40 | } 41 | } 42 | newshellcode.Append(" };"); 43 | Console.WriteLine(newshellcode.ToString()); 44 | 45 | 46 | /* XOR Decryptor 47 | string key = "HZzC3ZeX&e$^^9Yhp*5g$PA3E"; 48 | byte[] decoded = new byte[buf.Length]; 49 | for (int i = 0; i < buf.Length; i++) 50 | { 51 | decoded[i] = (byte)(buf[i] ^ Encoding.ASCII.GetBytes(key)[i % Encoding.ASCII.GetBytes(key).Length]); 52 | }*/ 53 | 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /PInvoke/CaesarCipher/obj/x64/Release/CaesarCipher.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.pdb 7 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.exe.config 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.exe 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.pdb 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.csproj.CoreCompileInputs.cache 11 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.exe 12 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.pdb 13 | C:\Users\georg\Desktop\Hell\OSEP\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.exe.config 14 | C:\Users\georg\Desktop\Hell\OSEP\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.exe 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.pdb 16 | C:\Users\georg\Desktop\Hell\OSEP\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.csproj.CoreCompileInputs.cache 17 | C:\Users\georg\Desktop\Hell\OSEP\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.exe 18 | C:\Users\georg\Desktop\Hell\OSEP\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.pdb 19 | -------------------------------------------------------------------------------- /PInvoke/ProcessInjection/obj/x64/Release/ProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\x64\Release\ProcessInjection.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\x64\Release\ProcessInjection.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\bin\x64\Release\ProcessInjection.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\x64\Release\ProcessInjection.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\x64\Release\ProcessInjection.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessInjection\obj\x64\Release\ProcessInjection.pdb 7 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessInjection\bin\x64\Release\ProcessInjection.exe.config 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessInjection\bin\x64\Release\ProcessInjection.exe 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessInjection\bin\x64\Release\ProcessInjection.pdb 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessInjection\obj\x64\Release\ProcessInjection.csproj.AssemblyReference.cache 11 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessInjection\obj\x64\Release\ProcessInjection.csproj.CoreCompileInputs.cache 12 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessInjection\obj\x64\Release\ProcessInjection.exe 13 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessInjection\obj\x64\Release\ProcessInjection.pdb 14 | C:\Users\georg\Desktop\Hell\OSEP\Payload\ProcessInjection\bin\x64\Release\ProcessInjection.exe.config 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\ProcessInjection\bin\x64\Release\ProcessInjection.exe 16 | C:\Users\georg\Desktop\Hell\OSEP\Payload\ProcessInjection\bin\x64\Release\ProcessInjection.pdb 17 | C:\Users\georg\Desktop\Hell\OSEP\Payload\ProcessInjection\obj\x64\Release\ProcessInjection.csproj.CoreCompileInputs.cache 18 | C:\Users\georg\Desktop\Hell\OSEP\Payload\ProcessInjection\obj\x64\Release\ProcessInjection.exe 19 | C:\Users\georg\Desktop\Hell\OSEP\Payload\ProcessInjection\obj\x64\Release\ProcessInjection.pdb 20 | -------------------------------------------------------------------------------- /PInvoke/ProcessHollowing/obj/x64/Release/ProcessHollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\x64\Release\ProcessHollowing.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\x64\Release\ProcessHollowing.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\bin\x64\Release\ProcessHollowing.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\x64\Release\ProcessHollowing.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\x64\Release\ProcessHollowing.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\x64\Release\ProcessHollowing.pdb 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\ProcessHollowing\obj\x64\Release\ProcessHollowing.csproj.AssemblyReference.cache 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessHollowing\bin\x64\Release\ProcessHollowing.exe.config 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessHollowing\bin\x64\Release\ProcessHollowing.exe 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessHollowing\bin\x64\Release\ProcessHollowing.pdb 11 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessHollowing\obj\x64\Release\ProcessHollowing.csproj.AssemblyReference.cache 12 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessHollowing\obj\x64\Release\ProcessHollowing.csproj.CoreCompileInputs.cache 13 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessHollowing\obj\x64\Release\ProcessHollowing.exe 14 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\ProcessHollowing\obj\x64\Release\ProcessHollowing.pdb 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\ProcessHollowing\bin\x64\Release\ProcessHollowing.exe.config 16 | C:\Users\georg\Desktop\Hell\OSEP\Payload\ProcessHollowing\bin\x64\Release\ProcessHollowing.exe 17 | C:\Users\georg\Desktop\Hell\OSEP\Payload\ProcessHollowing\bin\x64\Release\ProcessHollowing.pdb 18 | C:\Users\georg\Desktop\Hell\OSEP\Payload\ProcessHollowing\obj\x64\Release\ProcessHollowing.csproj.CoreCompileInputs.cache 19 | C:\Users\georg\Desktop\Hell\OSEP\Payload\ProcessHollowing\obj\x64\Release\ProcessHollowing.exe 20 | C:\Users\georg\Desktop\Hell\OSEP\Payload\ProcessHollowing\obj\x64\Release\ProcessHollowing.pdb 21 | -------------------------------------------------------------------------------- /DInvoke/DLLReflectiveDLLInjection/DLLReflectiveDLLInjection.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {44C93ACF-FD1B-45EB-AF8A-AFA12F752EDC} 8 | Library 9 | Properties 10 | DLLReflectiveDLLInjection 11 | DLLReflectiveDLLInjection 12 | v4.7.2 13 | 512 14 | true 15 | 16 | 17 | true 18 | full 19 | false 20 | bin\Debug\ 21 | DEBUG;TRACE 22 | prompt 23 | 4 24 | 25 | 26 | pdbonly 27 | true 28 | bin\Release\ 29 | TRACE 30 | prompt 31 | 4 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /PInvoke/DLLReflectiveDLLInjection/DLLReflectiveDLLInjection.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | 44c93acf-fd1b-45eb-af8a-afa12f752edc 8 | Library 9 | Properties 10 | DLLReflectiveDLLInjection 11 | DLLReflectiveDLLInjection 12 | v4.7.2 13 | 512 14 | true 15 | 16 | 17 | true 18 | full 19 | false 20 | bin\Debug\ 21 | DEBUG;TRACE 22 | prompt 23 | 4 24 | 25 | 26 | pdbonly 27 | true 28 | bin\Release\ 29 | TRACE 30 | prompt 31 | 4 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /PInvoke/SuspendedThreadInjection/SuspendedThreadInjection.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {6E217E33-46A3-4CC3-AAAF-A66E6F344DA7} 8 | Exe 9 | SuspendedThreadInjection 10 | SuspendedThreadInjection 11 | v4.7.2 12 | 512 13 | true 14 | true 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | x64 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /PInvoke/DynamicProcessInjection/obj/x64/Release/DynamicProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\x64\Release\DynamicProcessInjection.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\x64\Release\DynamicProcessInjection.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\bin\x64\Release\DynamicProcessInjection.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\x64\Release\DynamicProcessInjection.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\x64\Release\DynamicProcessInjection.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\x64\Release\DynamicProcessInjection.pdb 7 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DynamicProcessInjection\obj\x64\Release\DynamicProcessInjection.csproj.AssemblyReference.cache 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DynamicProcessInjection\bin\x64\Release\DynamicProcessInjection.exe.config 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DynamicProcessInjection\bin\x64\Release\DynamicProcessInjection.exe 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DynamicProcessInjection\bin\x64\Release\DynamicProcessInjection.pdb 11 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DynamicProcessInjection\obj\x64\Release\DynamicProcessInjection.csproj.AssemblyReference.cache 12 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DynamicProcessInjection\obj\x64\Release\DynamicProcessInjection.csproj.CoreCompileInputs.cache 13 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DynamicProcessInjection\obj\x64\Release\DynamicProcessInjection.exe 14 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DynamicProcessInjection\obj\x64\Release\DynamicProcessInjection.pdb 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DynamicProcessInjection\bin\x64\Release\DynamicProcessInjection.exe.config 16 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DynamicProcessInjection\bin\x64\Release\DynamicProcessInjection.exe 17 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DynamicProcessInjection\bin\x64\Release\DynamicProcessInjection.pdb 18 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DynamicProcessInjection\obj\x64\Release\DynamicProcessInjection.csproj.CoreCompileInputs.cache 19 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DynamicProcessInjection\obj\x64\Release\DynamicProcessInjection.exe 20 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DynamicProcessInjection\obj\x64\Release\DynamicProcessInjection.pdb 21 | -------------------------------------------------------------------------------- /DInvoke/SuspendedThreadInjection/SuspendedThreadInjection.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {20E3E5AA-268D-4BE5-9650-8BAF6C1A50F3} 8 | Exe 9 | SuspendedThreadInjection 10 | SuspendedThreadInjection 11 | v4.7.2 12 | 512 13 | true 14 | true 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | x64 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /DInvoke/AES/obj/x64/Release/AES.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\bin\x64\Release\AES.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\bin\x64\Release\AES.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\bin\x64\Release\AES.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\obj\x64\Release\AES.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\obj\x64\Release\AES.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\AES\obj\x64\Release\AES.pdb 7 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\bin\x64\Release\AES.exe.config 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\bin\x64\Release\AES.exe 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\bin\x64\Release\AES.pdb 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\obj\x64\Release\AES.csproj.AssemblyReference.cache 11 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\obj\x64\Release\AES.csproj.CoreCompileInputs.cache 12 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\obj\x64\Release\AES.exe 13 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\AES\obj\x64\Release\AES.pdb 14 | C:\Users\georg\Desktop\Hell\OSEP\Payload\AES\bin\x64\Release\AES.exe.config 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\AES\bin\x64\Release\AES.exe 16 | C:\Users\georg\Desktop\Hell\OSEP\Payload\AES\bin\x64\Release\AES.pdb 17 | C:\Users\georg\Desktop\Hell\OSEP\Payload\AES\obj\x64\Release\AES.csproj.CoreCompileInputs.cache 18 | C:\Users\georg\Desktop\Hell\OSEP\Payload\AES\obj\x64\Release\AES.exe 19 | C:\Users\georg\Desktop\Hell\OSEP\Payload\AES\obj\x64\Release\AES.pdb 20 | C:\Users\georg\Desktop\OSEP\Payload Factory\AES\bin\x64\Release\AES.exe.config 21 | C:\Users\georg\Desktop\OSEP\Payload Factory\AES\bin\x64\Release\AES.exe 22 | C:\Users\georg\Desktop\OSEP\Payload Factory\AES\bin\x64\Release\AES.pdb 23 | C:\Users\georg\Desktop\OSEP\Payload Factory\AES\obj\x64\Release\AES.csproj.CoreCompileInputs.cache 24 | C:\Users\georg\Desktop\OSEP\Payload Factory\AES\obj\x64\Release\AES.exe 25 | C:\Users\georg\Desktop\OSEP\Payload Factory\AES\obj\x64\Release\AES.pdb 26 | C:\Users\georg\Desktop\Payload Factory\AES\bin\x64\Release\AES.exe.config 27 | C:\Users\georg\Desktop\Payload Factory\AES\bin\x64\Release\AES.exe 28 | C:\Users\georg\Desktop\Payload Factory\AES\bin\x64\Release\AES.pdb 29 | C:\Users\georg\Desktop\Payload Factory\AES\obj\x64\Release\AES.csproj.AssemblyReference.cache 30 | C:\Users\georg\Desktop\Payload Factory\AES\obj\x64\Release\AES.csproj.CoreCompileInputs.cache 31 | C:\Users\georg\Desktop\Payload Factory\AES\obj\x64\Release\AES.exe 32 | C:\Users\georg\Desktop\Payload Factory\AES\obj\x64\Release\AES.pdb 33 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessHollowing/obj/x64/Release/DLLProcessHollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.dll 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.pdb 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.dll 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.pdb 6 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.dll 7 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.pdb 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.csproj.CoreCompileInputs.cache 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.dll 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.pdb 11 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.dll 12 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.pdb 13 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.csproj.CoreCompileInputs.cache 14 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.dll 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.pdb 16 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.csproj.CoreCompileInputs.cache 17 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.dll 18 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.pdb 19 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.dll 20 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.pdb 21 | C:\Users\georg\Desktop\Payload Factory\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.dll 22 | C:\Users\georg\Desktop\Payload Factory\DLLProcessHollowing\bin\x64\Release\DLLProcessHollowing.pdb 23 | C:\Users\georg\Desktop\Payload Factory\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.csproj.CoreCompileInputs.cache 24 | C:\Users\georg\Desktop\Payload Factory\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.dll 25 | C:\Users\georg\Desktop\Payload Factory\DLLProcessHollowing\obj\x64\Release\DLLProcessHollowing.pdb 26 | -------------------------------------------------------------------------------- /DInvoke/DLLProcessInjection/obj/x64/Release/DLLProcessInjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.dll 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.pdb 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.csproj.CoreCompileInputs.cache 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.dll 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.pdb 6 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.dll 7 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.pdb 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.csproj.CoreCompileInputs.cache 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.dll 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.pdb 11 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.dll 12 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.pdb 13 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.csproj.CoreCompileInputs.cache 14 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.dll 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.pdb 16 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.dll 17 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.pdb 18 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.csproj.CoreCompileInputs.cache 19 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.dll 20 | C:\Users\georg\Desktop\OSEP\Payload Factory\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.pdb 21 | C:\Users\georg\Desktop\Payload Factory\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.dll 22 | C:\Users\georg\Desktop\Payload Factory\DLLProcessInjection\bin\x64\Release\DLLProcessInjection.pdb 23 | C:\Users\georg\Desktop\Payload Factory\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.csproj.CoreCompileInputs.cache 24 | C:\Users\georg\Desktop\Payload Factory\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.dll 25 | C:\Users\georg\Desktop\Payload Factory\DLLProcessInjection\obj\x64\Release\DLLProcessInjection.pdb 26 | -------------------------------------------------------------------------------- /DInvoke/XOR/obj/x64/Release/XOR.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\x64\Release\XOR.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\x64\Release\XOR.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\bin\x64\Release\XOR.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\x64\Release\XOR.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\x64\Release\XOR.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\XOR\obj\x64\Release\XOR.pdb 7 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\bin\x64\Release\XOR.exe.config 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\bin\x64\Release\XOR.exe 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\bin\x64\Release\XOR.pdb 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\obj\x64\Release\XOR.csproj.AssemblyReference.cache 11 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\obj\x64\Release\XOR.csproj.CoreCompileInputs.cache 12 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\obj\x64\Release\XOR.exe 13 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\XOR\obj\x64\Release\XOR.pdb 14 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\bin\x64\Release\XOR.exe.config 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\bin\x64\Release\XOR.exe 16 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\bin\x64\Release\XOR.pdb 17 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\obj\x64\Release\XOR.csproj.CoreCompileInputs.cache 18 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\obj\x64\Release\XOR.exe 19 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\obj\x64\Release\XOR.pdb 20 | C:\Users\georg\Desktop\Hell\OSEP\Payload\XOR\obj\x64\Release\XOR.csproj.AssemblyReference.cache 21 | C:\Users\georg\Desktop\OSEP\Payload Factory\XOR\bin\x64\Release\XOR.exe.config 22 | C:\Users\georg\Desktop\OSEP\Payload Factory\XOR\bin\x64\Release\XOR.exe 23 | C:\Users\georg\Desktop\OSEP\Payload Factory\XOR\bin\x64\Release\XOR.pdb 24 | C:\Users\georg\Desktop\OSEP\Payload Factory\XOR\obj\x64\Release\XOR.csproj.CoreCompileInputs.cache 25 | C:\Users\georg\Desktop\OSEP\Payload Factory\XOR\obj\x64\Release\XOR.exe 26 | C:\Users\georg\Desktop\OSEP\Payload Factory\XOR\obj\x64\Release\XOR.pdb 27 | C:\Users\georg\Desktop\OSEP\Payload Factory\XOR\obj\x64\Release\XOR.csproj.AssemblyReference.cache 28 | C:\Users\georg\Desktop\Payload Factory\XOR\bin\x64\Release\XOR.exe.config 29 | C:\Users\georg\Desktop\Payload Factory\XOR\bin\x64\Release\XOR.exe 30 | C:\Users\georg\Desktop\Payload Factory\XOR\bin\x64\Release\XOR.pdb 31 | C:\Users\georg\Desktop\Payload Factory\XOR\obj\x64\Release\XOR.csproj.AssemblyReference.cache 32 | C:\Users\georg\Desktop\Payload Factory\XOR\obj\x64\Release\XOR.csproj.CoreCompileInputs.cache 33 | C:\Users\georg\Desktop\Payload Factory\XOR\obj\x64\Release\XOR.exe 34 | C:\Users\georg\Desktop\Payload Factory\XOR\obj\x64\Release\XOR.pdb 35 | -------------------------------------------------------------------------------- /DInvoke/CaesarCipher/obj/x64/Release/CaesarCipher.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.exe.config 2 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.exe 3 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.pdb 4 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.csproj.CoreCompileInputs.cache 5 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.exe 6 | C:\Users\georg\Desktop\Hell\Payloads - Yiannis\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.pdb 7 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.exe.config 8 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.exe 9 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.pdb 10 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.csproj.CoreCompileInputs.cache 11 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.exe 12 | C:\Users\georg\Desktop\Hell\Payload FACTORY\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.pdb 13 | C:\Users\georg\Desktop\Hell\OSEP\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.exe.config 14 | C:\Users\georg\Desktop\Hell\OSEP\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.exe 15 | C:\Users\georg\Desktop\Hell\OSEP\Payload\CaesarCipher\bin\x64\Release\CaesarCipher.pdb 16 | C:\Users\georg\Desktop\Hell\OSEP\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.csproj.CoreCompileInputs.cache 17 | C:\Users\georg\Desktop\Hell\OSEP\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.exe 18 | C:\Users\georg\Desktop\Hell\OSEP\Payload\CaesarCipher\obj\x64\Release\CaesarCipher.pdb 19 | C:\Users\georg\Desktop\OSEP\Payload Factory\CaesarCipher\bin\x64\Release\CaesarCipher.exe.config 20 | C:\Users\georg\Desktop\OSEP\Payload Factory\CaesarCipher\bin\x64\Release\CaesarCipher.exe 21 | C:\Users\georg\Desktop\OSEP\Payload Factory\CaesarCipher\bin\x64\Release\CaesarCipher.pdb 22 | C:\Users\georg\Desktop\OSEP\Payload Factory\CaesarCipher\obj\x64\Release\CaesarCipher.csproj.CoreCompileInputs.cache 23 | C:\Users\georg\Desktop\OSEP\Payload Factory\CaesarCipher\obj\x64\Release\CaesarCipher.exe 24 | C:\Users\georg\Desktop\OSEP\Payload Factory\CaesarCipher\obj\x64\Release\CaesarCipher.pdb 25 | C:\Users\georg\Desktop\Payload Factory\CaesarCipher\bin\x64\Release\CaesarCipher.exe.config 26 | C:\Users\georg\Desktop\Payload Factory\CaesarCipher\bin\x64\Release\CaesarCipher.exe 27 | C:\Users\georg\Desktop\Payload Factory\CaesarCipher\bin\x64\Release\CaesarCipher.pdb 28 | C:\Users\georg\Desktop\Payload Factory\CaesarCipher\obj\x64\Release\CaesarCipher.csproj.CoreCompileInputs.cache 29 | C:\Users\georg\Desktop\Payload Factory\CaesarCipher\obj\x64\Release\CaesarCipher.exe 30 | C:\Users\georg\Desktop\Payload Factory\CaesarCipher\obj\x64\Release\CaesarCipher.pdb 31 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessHollowing/DLLProcessHollowing.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {671894E8-281C-4E63-9A58-D18D527B18C7} 8 | Library 9 | Properties 10 | DLLProcessHollowing 11 | DLLProcessHollowing 12 | v4.7.2 13 | 512 14 | true 15 | 16 | 17 | true 18 | full 19 | false 20 | bin\Debug\ 21 | DEBUG;TRACE 22 | prompt 23 | 4 24 | 25 | 26 | pdbonly 27 | true 28 | bin\Release\ 29 | TRACE 30 | prompt 31 | 4 32 | 33 | 34 | true 35 | bin\x64\Debug\ 36 | DEBUG;TRACE 37 | full 38 | x64 39 | 7.3 40 | prompt 41 | 42 | 43 | bin\x64\Release\ 44 | TRACE 45 | true 46 | pdbonly 47 | x64 48 | 7.3 49 | prompt 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /PInvoke/DLLProcessInjection/DLLProcessInjection.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {880C5F66-65CD-4A87-95B3-4F3311D51F40} 8 | Library 9 | Properties 10 | DLLProcessInjection 11 | DLLProcessInjection 12 | v4.7.2 13 | 512 14 | true 15 | 16 | 17 | true 18 | full 19 | false 20 | bin\Debug\ 21 | DEBUG;TRACE 22 | prompt 23 | 4 24 | 25 | 26 | pdbonly 27 | true 28 | bin\Release\ 29 | TRACE 30 | prompt 31 | 4 32 | 33 | 34 | true 35 | bin\x64\Debug\ 36 | DEBUG;TRACE 37 | full 38 | x64 39 | 7.3 40 | prompt 41 | 42 | 43 | bin\x64\Release\ 44 | TRACE 45 | true 46 | pdbonly 47 | x64 48 | 7.3 49 | prompt 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | --------------------------------------------------------------------------------