├── Evasion ├── ReadMe.md ├── amsi.fs └── etw.fs ├── LICENSE ├── OperatingWithFSharp.md ├── README.md ├── Shellcode Loaders ├── CreateRemoteThread.fs ├── QueueUserAPC.fs ├── ReadMe.md └── SameProcess.fs ├── UnmanagedFSharp ├── HostingCLR.sln ├── HostingCLR.suo ├── HostingCLR │ ├── HostingCLR.aps │ ├── HostingCLR.cpp │ ├── HostingCLR.rc │ ├── HostingCLR.vcxproj │ ├── HostingCLR.vcxproj.filters │ ├── HostingCLR.vcxproj.user │ ├── ReadMe.txt │ ├── Release │ │ ├── HostingCLR.exe.recipe │ │ ├── HostingCLR.log │ │ ├── HostingCLR.obj │ │ ├── HostingCLR.pch │ │ ├── HostingCLR.res │ │ ├── HostingCLR.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── HostingCLR.lastbuildstate │ │ │ ├── HostingCLR.write.1u.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── rc.command.1.tlog │ │ │ ├── rc.read.1.tlog │ │ │ └── rc.write.1.tlog │ │ ├── HostingCLR.vcxproj.FileListAbsolute.txt │ │ ├── HostingCLR.vcxprojAssemblyReference.cache │ │ ├── mscorlib.tlh │ │ ├── stdafx.obj │ │ └── vc142.pdb │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── LICENSE └── README.md └── What The F.pdf /Evasion/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/Evasion/ReadMe.md -------------------------------------------------------------------------------- /Evasion/amsi.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/Evasion/amsi.fs -------------------------------------------------------------------------------- /Evasion/etw.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/Evasion/etw.fs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/LICENSE -------------------------------------------------------------------------------- /OperatingWithFSharp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/OperatingWithFSharp.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/README.md -------------------------------------------------------------------------------- /Shellcode Loaders/CreateRemoteThread.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/Shellcode Loaders/CreateRemoteThread.fs -------------------------------------------------------------------------------- /Shellcode Loaders/QueueUserAPC.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/Shellcode Loaders/QueueUserAPC.fs -------------------------------------------------------------------------------- /Shellcode Loaders/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/Shellcode Loaders/ReadMe.md -------------------------------------------------------------------------------- /Shellcode Loaders/SameProcess.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/Shellcode Loaders/SameProcess.fs -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR.sln -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR.suo -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/HostingCLR.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/HostingCLR.aps -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/HostingCLR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/HostingCLR.cpp -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/HostingCLR.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/HostingCLR.rc -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/HostingCLR.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/HostingCLR.vcxproj -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/HostingCLR.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/HostingCLR.vcxproj.filters -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/HostingCLR.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/HostingCLR.vcxproj.user -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/ReadMe.txt -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.exe.recipe -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.log -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.obj -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.pch -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.res -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/HostingCLR.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/HostingCLR.lastbuildstate -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/HostingCLR.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/HostingCLR.write.1u.tlog -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/rc.command.1.tlog -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/rc.read.1.tlog -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.tlog/rc.write.1.tlog -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/HostingCLR.vcxprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/HostingCLR.vcxprojAssemblyReference.cache -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/mscorlib.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/mscorlib.tlh -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/stdafx.obj -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/Release/vc142.pdb -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/resource.h -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/stdafx.cpp -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/stdafx.h -------------------------------------------------------------------------------- /UnmanagedFSharp/HostingCLR/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/HostingCLR/targetver.h -------------------------------------------------------------------------------- /UnmanagedFSharp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/LICENSE -------------------------------------------------------------------------------- /UnmanagedFSharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/UnmanagedFSharp/README.md -------------------------------------------------------------------------------- /What The F.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/What-The-F/HEAD/What The F.pdf --------------------------------------------------------------------------------