├── .gitattributes ├── .gitignore ├── ARM └── Release │ ├── PIC_Bindshell.exe │ ├── PIC_Bindshell.map │ └── PIC_Bindshell_shellcode.bin ├── LICENSE.txt ├── PIC_Bindshell.sln ├── PIC_Bindshell ├── 64BitHelper.h ├── AdjustStack.asm ├── BindShell.c ├── Get-FunctionHash.ps1 ├── Get-PEHeader.ps1 ├── GetProcAddressWithHash.h ├── Out-Shellcode.ps1 ├── PIC_Bindshell.vcxproj ├── PIC_Bindshell.vcxproj.filters ├── function_link_order.txt └── function_link_order64.txt ├── Release ├── PIC_Bindshell.exe ├── PIC_Bindshell.map └── PIC_Bindshell_shellcode.bin ├── lib └── PowerShell │ ├── Get-FunctionHash.ps1 │ ├── Get-LibSymbols.ps1 │ ├── Get-ObjDump.format.ps1xml │ ├── Get-PEHeader.ps1 │ └── Out-Shellcode.ps1 └── x64 └── Release ├── PIC_Bindshell.exe ├── PIC_Bindshell.map └── PIC_Bindshell_shellcode.bin /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/.gitignore -------------------------------------------------------------------------------- /ARM/Release/PIC_Bindshell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/ARM/Release/PIC_Bindshell.exe -------------------------------------------------------------------------------- /ARM/Release/PIC_Bindshell.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/ARM/Release/PIC_Bindshell.map -------------------------------------------------------------------------------- /ARM/Release/PIC_Bindshell_shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/ARM/Release/PIC_Bindshell_shellcode.bin -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PIC_Bindshell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/PIC_Bindshell.sln -------------------------------------------------------------------------------- /PIC_Bindshell/64BitHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/PIC_Bindshell/64BitHelper.h -------------------------------------------------------------------------------- /PIC_Bindshell/AdjustStack.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/PIC_Bindshell/AdjustStack.asm -------------------------------------------------------------------------------- /PIC_Bindshell/BindShell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/PIC_Bindshell/BindShell.c -------------------------------------------------------------------------------- /PIC_Bindshell/Get-FunctionHash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/PIC_Bindshell/Get-FunctionHash.ps1 -------------------------------------------------------------------------------- /PIC_Bindshell/Get-PEHeader.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/PIC_Bindshell/Get-PEHeader.ps1 -------------------------------------------------------------------------------- /PIC_Bindshell/GetProcAddressWithHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/PIC_Bindshell/GetProcAddressWithHash.h -------------------------------------------------------------------------------- /PIC_Bindshell/Out-Shellcode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/PIC_Bindshell/Out-Shellcode.ps1 -------------------------------------------------------------------------------- /PIC_Bindshell/PIC_Bindshell.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/PIC_Bindshell/PIC_Bindshell.vcxproj -------------------------------------------------------------------------------- /PIC_Bindshell/PIC_Bindshell.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/PIC_Bindshell/PIC_Bindshell.vcxproj.filters -------------------------------------------------------------------------------- /PIC_Bindshell/function_link_order.txt: -------------------------------------------------------------------------------- 1 | ExecutePayload 2 | GetProcAddressWithHash -------------------------------------------------------------------------------- /PIC_Bindshell/function_link_order64.txt: -------------------------------------------------------------------------------- 1 | Begin 2 | GetProcAddressWithHash 3 | ExecutePayload -------------------------------------------------------------------------------- /Release/PIC_Bindshell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/Release/PIC_Bindshell.exe -------------------------------------------------------------------------------- /Release/PIC_Bindshell.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/Release/PIC_Bindshell.map -------------------------------------------------------------------------------- /Release/PIC_Bindshell_shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/Release/PIC_Bindshell_shellcode.bin -------------------------------------------------------------------------------- /lib/PowerShell/Get-FunctionHash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/lib/PowerShell/Get-FunctionHash.ps1 -------------------------------------------------------------------------------- /lib/PowerShell/Get-LibSymbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/lib/PowerShell/Get-LibSymbols.ps1 -------------------------------------------------------------------------------- /lib/PowerShell/Get-ObjDump.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/lib/PowerShell/Get-ObjDump.format.ps1xml -------------------------------------------------------------------------------- /lib/PowerShell/Get-PEHeader.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/lib/PowerShell/Get-PEHeader.ps1 -------------------------------------------------------------------------------- /lib/PowerShell/Out-Shellcode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/lib/PowerShell/Out-Shellcode.ps1 -------------------------------------------------------------------------------- /x64/Release/PIC_Bindshell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/x64/Release/PIC_Bindshell.exe -------------------------------------------------------------------------------- /x64/Release/PIC_Bindshell.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/x64/Release/PIC_Bindshell.map -------------------------------------------------------------------------------- /x64/Release/PIC_Bindshell_shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattifestation/PIC_Bindshell/HEAD/x64/Release/PIC_Bindshell_shellcode.bin --------------------------------------------------------------------------------