├── BOF ├── AddMachineAccount │ ├── MachineAccounts.cna │ ├── MachineAccounts_bof.s1.py │ ├── README.md │ └── SOURCE │ │ ├── AddMachineAccount.c │ │ ├── AddMachineAccount.h │ │ ├── DelMachineAccount.c │ │ ├── GetMachineAccountQuota.c │ │ ├── Makefile │ │ └── beacon.h ├── Askcreds │ ├── Askcreds.cna │ ├── Askcreds_bof.s1.py │ ├── README.md │ └── SOURCE │ │ ├── Askcreds.c │ │ ├── Askcreds.h │ │ ├── Makefile │ │ └── beacon.h ├── CVE-2022-26923 │ ├── CVE-2022-26923.cna │ ├── CVE-2022-26923_bof.s1.py │ ├── README.md │ └── SOURCE │ │ ├── AddMachineAccount.h │ │ ├── CVE-2022-26923.c │ │ ├── Makefile │ │ └── beacon.h ├── Domaininfo │ ├── Domaininfo.cna │ ├── Domaininfo_bof.s1.py │ ├── README.md │ └── SOURCE │ │ ├── Domaininfo.c │ │ ├── Domaininfo.h │ │ ├── Makefile │ │ └── beacon.h ├── FindObjects │ ├── FindObjects.cna │ ├── FindObjects_bof.s1.py │ ├── README.md │ └── SOURCE │ │ ├── FindModule.c │ │ ├── FindObjects.h │ │ ├── FindProcHandle.c │ │ ├── Makefile │ │ ├── Syscalls-WoW64.h │ │ ├── Syscalls.h │ │ └── beacon.h ├── KerbHash │ ├── KerbHash.cna │ ├── KerbHash_bof.s1.py │ ├── README.md │ └── SOURCE │ │ ├── KerbHash.c │ │ ├── KerbHash.h │ │ ├── Makefile │ │ └── beacon.h ├── Kerberoast │ ├── Kerberoast.cna │ ├── Kerberoast_bof.s1.py │ ├── README.md │ ├── SOURCE │ │ ├── Kerberoast.c │ │ ├── Kerberoast.h │ │ ├── Makefile │ │ └── beacon.h │ ├── TicketToHashcat.py │ └── requirements.txt ├── Klist │ ├── Klist.cna │ ├── Klist_bof.s1.py │ ├── README.md │ └── SOURCE │ │ ├── Klist.c │ │ ├── Klist.h │ │ ├── Makefile │ │ └── beacon.h ├── Lapsdump │ ├── Lapsdump.cna │ ├── Lapsdump_bof.s1.py │ ├── README.md │ └── SOURCE │ │ ├── Lapsdump.c │ │ ├── Lapsdump.h │ │ ├── Makefile │ │ └── beacon.h ├── Makefile ├── PetitPotam │ ├── PetitPotam.cna │ ├── PetitPotam_bof.s1.py │ ├── README.md │ └── SOURCE │ │ ├── Makefile │ │ ├── PetitPotam.c │ │ ├── PetitPotam.h │ │ ├── beacon.h │ │ ├── ms-dtyp.h │ │ ├── ms-efsrpc_c.h │ │ ├── ms-efsrpc_c_x86.h │ │ └── ms-efsrpc_h.h ├── Psc │ ├── Psc.cna │ ├── README.md │ ├── SOURCE │ │ ├── Makefile │ │ ├── Psc.c │ │ ├── Psc.h │ │ ├── Syscalls-WoW64.h │ │ ├── Syscalls.h │ │ └── beacon.h │ └── psc_bof.s1.py ├── Psk │ ├── Psk.cna │ ├── README.md │ ├── SOURCE │ │ ├── Makefile │ │ ├── Psk.c │ │ ├── Psk.h │ │ ├── Syscalls-WoW64.h │ │ ├── Syscalls.h │ │ └── beacon.h │ └── psk_bof.s1.py ├── Psm │ ├── Psm.cna │ ├── README.md │ ├── SOURCE │ │ ├── Makefile │ │ ├── Psm.c │ │ ├── Psm.h │ │ ├── Syscalls-WoW64.h │ │ ├── Syscalls.h │ │ └── beacon.h │ └── psm_bof.s1.py ├── Psw │ ├── Psw.cna │ ├── README.md │ ├── SOURCE │ │ ├── Makefile │ │ ├── Psw.c │ │ ├── Psw.h │ │ ├── Syscalls-WoW64.h │ │ ├── Syscalls.h │ │ └── beacon.h │ └── psw_bof.s1.py ├── Psx │ ├── Psx.cna │ ├── README.md │ └── SOURCE │ │ ├── Makefile │ │ ├── Psx.c │ │ ├── Psx.h │ │ ├── Syscalls-WoW64.h │ │ ├── Syscalls.h │ │ └── beacon.h ├── ReconAD │ ├── README.md │ ├── ReconAD.cna │ ├── ReconADComputers_bof.s1.py │ ├── ReconADGroups_bof.s1.py │ ├── ReconADUsers_bof.s1.py │ ├── ReconAD_bof.s1.py │ └── SOURCE │ │ ├── Makefile │ │ ├── ReconAD.c │ │ ├── ReconAD.h │ │ └── beacon.h ├── Smbinfo │ ├── README.md │ ├── SOURCE │ │ ├── Makefile │ │ ├── Smbinfo.c │ │ ├── Smbinfo.h │ │ └── beacon.h │ ├── Smbinfo.cna │ └── Smbinfo_bof.s1.py ├── SprayAD │ ├── README.md │ ├── SOURCE │ │ ├── Makefile │ │ ├── SprayAD.c │ │ ├── SprayAD.h │ │ └── beacon.h │ ├── SprayAD.cna │ └── SprayAD_bof.s1.py ├── Stage1-OC2TC-bof.py ├── StartWebClient │ ├── README.md │ ├── SOURCE │ │ ├── Makefile │ │ ├── StartWebClient.c │ │ ├── StartWebClient.h │ │ └── beacon.h │ ├── StartWebClient.cna │ └── StartWebClient_bof.s1.py ├── WdToggle │ ├── README.md │ ├── SOURCE │ │ ├── Makefile │ │ ├── Syscalls.h │ │ ├── WdToggle.c │ │ ├── WdToggle.h │ │ └── beacon.h │ ├── WdToggle.cna │ └── WdToggle_bof.s1.py └── Winver │ ├── README.md │ ├── SOURCE │ ├── Makefile │ ├── Syscalls-WoW64.h │ ├── Syscalls.h │ ├── Winver.c │ ├── Winver.h │ └── beacon.h │ ├── Winver.cna │ └── Winver_bof.s1.py ├── Other ├── PetitPotam │ ├── PetitPotam.cna │ ├── README.md │ └── SOURCE │ │ ├── PetitPotam.sln │ │ └── PetitPotam │ │ ├── PetitPotam.vcxproj │ │ ├── PetitPotam.vcxproj.filters │ │ ├── PetitPotam.vcxproj.user │ │ ├── ReflectiveDLLInjection.h │ │ ├── ReflectiveDll.c │ │ ├── ReflectiveLoader.c │ │ ├── ReflectiveLoader.h │ │ ├── ms-dtyp.h │ │ ├── ms-dtyp.idl │ │ ├── ms-efsrpc.c │ │ ├── ms-efsrpc.h │ │ └── ms-efsrpc.idl └── RemotePipeList │ ├── README.md │ ├── RemotePipeList.cna │ ├── source │ ├── .gitignore │ ├── App.config │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RemotePipeList.csproj │ ├── RemotePipeList.sln │ └── packages.config │ └── stage1-remotepipelist.py └── README.md /BOF/AddMachineAccount/MachineAccounts.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/AddMachineAccount/MachineAccounts.cna -------------------------------------------------------------------------------- /BOF/AddMachineAccount/MachineAccounts_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/AddMachineAccount/MachineAccounts_bof.s1.py -------------------------------------------------------------------------------- /BOF/AddMachineAccount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/AddMachineAccount/README.md -------------------------------------------------------------------------------- /BOF/AddMachineAccount/SOURCE/AddMachineAccount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/AddMachineAccount/SOURCE/AddMachineAccount.c -------------------------------------------------------------------------------- /BOF/AddMachineAccount/SOURCE/AddMachineAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/AddMachineAccount/SOURCE/AddMachineAccount.h -------------------------------------------------------------------------------- /BOF/AddMachineAccount/SOURCE/DelMachineAccount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/AddMachineAccount/SOURCE/DelMachineAccount.c -------------------------------------------------------------------------------- /BOF/AddMachineAccount/SOURCE/GetMachineAccountQuota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/AddMachineAccount/SOURCE/GetMachineAccountQuota.c -------------------------------------------------------------------------------- /BOF/AddMachineAccount/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/AddMachineAccount/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/AddMachineAccount/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/AddMachineAccount/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Askcreds/Askcreds.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Askcreds/Askcreds.cna -------------------------------------------------------------------------------- /BOF/Askcreds/Askcreds_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Askcreds/Askcreds_bof.s1.py -------------------------------------------------------------------------------- /BOF/Askcreds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Askcreds/README.md -------------------------------------------------------------------------------- /BOF/Askcreds/SOURCE/Askcreds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Askcreds/SOURCE/Askcreds.c -------------------------------------------------------------------------------- /BOF/Askcreds/SOURCE/Askcreds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Askcreds/SOURCE/Askcreds.h -------------------------------------------------------------------------------- /BOF/Askcreds/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Askcreds/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/Askcreds/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Askcreds/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/CVE-2022-26923/CVE-2022-26923.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/CVE-2022-26923/CVE-2022-26923.cna -------------------------------------------------------------------------------- /BOF/CVE-2022-26923/CVE-2022-26923_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/CVE-2022-26923/CVE-2022-26923_bof.s1.py -------------------------------------------------------------------------------- /BOF/CVE-2022-26923/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/CVE-2022-26923/README.md -------------------------------------------------------------------------------- /BOF/CVE-2022-26923/SOURCE/AddMachineAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/CVE-2022-26923/SOURCE/AddMachineAccount.h -------------------------------------------------------------------------------- /BOF/CVE-2022-26923/SOURCE/CVE-2022-26923.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/CVE-2022-26923/SOURCE/CVE-2022-26923.c -------------------------------------------------------------------------------- /BOF/CVE-2022-26923/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/CVE-2022-26923/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/CVE-2022-26923/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/CVE-2022-26923/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Domaininfo/Domaininfo.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Domaininfo/Domaininfo.cna -------------------------------------------------------------------------------- /BOF/Domaininfo/Domaininfo_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Domaininfo/Domaininfo_bof.s1.py -------------------------------------------------------------------------------- /BOF/Domaininfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Domaininfo/README.md -------------------------------------------------------------------------------- /BOF/Domaininfo/SOURCE/Domaininfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Domaininfo/SOURCE/Domaininfo.c -------------------------------------------------------------------------------- /BOF/Domaininfo/SOURCE/Domaininfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Domaininfo/SOURCE/Domaininfo.h -------------------------------------------------------------------------------- /BOF/Domaininfo/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Domaininfo/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/Domaininfo/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Domaininfo/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/FindObjects/FindObjects.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/FindObjects/FindObjects.cna -------------------------------------------------------------------------------- /BOF/FindObjects/FindObjects_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/FindObjects/FindObjects_bof.s1.py -------------------------------------------------------------------------------- /BOF/FindObjects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/FindObjects/README.md -------------------------------------------------------------------------------- /BOF/FindObjects/SOURCE/FindModule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/FindObjects/SOURCE/FindModule.c -------------------------------------------------------------------------------- /BOF/FindObjects/SOURCE/FindObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/FindObjects/SOURCE/FindObjects.h -------------------------------------------------------------------------------- /BOF/FindObjects/SOURCE/FindProcHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/FindObjects/SOURCE/FindProcHandle.c -------------------------------------------------------------------------------- /BOF/FindObjects/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/FindObjects/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/FindObjects/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/FindObjects/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /BOF/FindObjects/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/FindObjects/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /BOF/FindObjects/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/FindObjects/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/KerbHash/KerbHash.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/KerbHash/KerbHash.cna -------------------------------------------------------------------------------- /BOF/KerbHash/KerbHash_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/KerbHash/KerbHash_bof.s1.py -------------------------------------------------------------------------------- /BOF/KerbHash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/KerbHash/README.md -------------------------------------------------------------------------------- /BOF/KerbHash/SOURCE/KerbHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/KerbHash/SOURCE/KerbHash.c -------------------------------------------------------------------------------- /BOF/KerbHash/SOURCE/KerbHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/KerbHash/SOURCE/KerbHash.h -------------------------------------------------------------------------------- /BOF/KerbHash/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/KerbHash/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/KerbHash/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/KerbHash/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Kerberoast/Kerberoast.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Kerberoast/Kerberoast.cna -------------------------------------------------------------------------------- /BOF/Kerberoast/Kerberoast_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Kerberoast/Kerberoast_bof.s1.py -------------------------------------------------------------------------------- /BOF/Kerberoast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Kerberoast/README.md -------------------------------------------------------------------------------- /BOF/Kerberoast/SOURCE/Kerberoast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Kerberoast/SOURCE/Kerberoast.c -------------------------------------------------------------------------------- /BOF/Kerberoast/SOURCE/Kerberoast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Kerberoast/SOURCE/Kerberoast.h -------------------------------------------------------------------------------- /BOF/Kerberoast/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Kerberoast/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/Kerberoast/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Kerberoast/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Kerberoast/TicketToHashcat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Kerberoast/TicketToHashcat.py -------------------------------------------------------------------------------- /BOF/Kerberoast/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Kerberoast/requirements.txt -------------------------------------------------------------------------------- /BOF/Klist/Klist.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Klist/Klist.cna -------------------------------------------------------------------------------- /BOF/Klist/Klist_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Klist/Klist_bof.s1.py -------------------------------------------------------------------------------- /BOF/Klist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Klist/README.md -------------------------------------------------------------------------------- /BOF/Klist/SOURCE/Klist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Klist/SOURCE/Klist.c -------------------------------------------------------------------------------- /BOF/Klist/SOURCE/Klist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Klist/SOURCE/Klist.h -------------------------------------------------------------------------------- /BOF/Klist/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Klist/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/Klist/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Klist/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Lapsdump/Lapsdump.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Lapsdump/Lapsdump.cna -------------------------------------------------------------------------------- /BOF/Lapsdump/Lapsdump_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Lapsdump/Lapsdump_bof.s1.py -------------------------------------------------------------------------------- /BOF/Lapsdump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Lapsdump/README.md -------------------------------------------------------------------------------- /BOF/Lapsdump/SOURCE/Lapsdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Lapsdump/SOURCE/Lapsdump.c -------------------------------------------------------------------------------- /BOF/Lapsdump/SOURCE/Lapsdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Lapsdump/SOURCE/Lapsdump.h -------------------------------------------------------------------------------- /BOF/Lapsdump/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Lapsdump/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/Lapsdump/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Lapsdump/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Makefile -------------------------------------------------------------------------------- /BOF/PetitPotam/PetitPotam.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/PetitPotam/PetitPotam.cna -------------------------------------------------------------------------------- /BOF/PetitPotam/PetitPotam_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/PetitPotam/PetitPotam_bof.s1.py -------------------------------------------------------------------------------- /BOF/PetitPotam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/PetitPotam/README.md -------------------------------------------------------------------------------- /BOF/PetitPotam/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/PetitPotam/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/PetitPotam/SOURCE/PetitPotam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/PetitPotam/SOURCE/PetitPotam.c -------------------------------------------------------------------------------- /BOF/PetitPotam/SOURCE/PetitPotam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/PetitPotam/SOURCE/PetitPotam.h -------------------------------------------------------------------------------- /BOF/PetitPotam/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/PetitPotam/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/PetitPotam/SOURCE/ms-dtyp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/PetitPotam/SOURCE/ms-dtyp.h -------------------------------------------------------------------------------- /BOF/PetitPotam/SOURCE/ms-efsrpc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/PetitPotam/SOURCE/ms-efsrpc_c.h -------------------------------------------------------------------------------- /BOF/PetitPotam/SOURCE/ms-efsrpc_c_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/PetitPotam/SOURCE/ms-efsrpc_c_x86.h -------------------------------------------------------------------------------- /BOF/PetitPotam/SOURCE/ms-efsrpc_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/PetitPotam/SOURCE/ms-efsrpc_h.h -------------------------------------------------------------------------------- /BOF/Psc/Psc.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psc/Psc.cna -------------------------------------------------------------------------------- /BOF/Psc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psc/README.md -------------------------------------------------------------------------------- /BOF/Psc/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psc/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/Psc/SOURCE/Psc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psc/SOURCE/Psc.c -------------------------------------------------------------------------------- /BOF/Psc/SOURCE/Psc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psc/SOURCE/Psc.h -------------------------------------------------------------------------------- /BOF/Psc/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psc/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /BOF/Psc/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psc/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /BOF/Psc/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psc/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Psc/psc_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psc/psc_bof.s1.py -------------------------------------------------------------------------------- /BOF/Psk/Psk.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psk/Psk.cna -------------------------------------------------------------------------------- /BOF/Psk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psk/README.md -------------------------------------------------------------------------------- /BOF/Psk/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psk/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/Psk/SOURCE/Psk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psk/SOURCE/Psk.c -------------------------------------------------------------------------------- /BOF/Psk/SOURCE/Psk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psk/SOURCE/Psk.h -------------------------------------------------------------------------------- /BOF/Psk/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psk/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /BOF/Psk/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psk/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /BOF/Psk/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psk/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Psk/psk_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psk/psk_bof.s1.py -------------------------------------------------------------------------------- /BOF/Psm/Psm.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psm/Psm.cna -------------------------------------------------------------------------------- /BOF/Psm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psm/README.md -------------------------------------------------------------------------------- /BOF/Psm/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psm/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/Psm/SOURCE/Psm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psm/SOURCE/Psm.c -------------------------------------------------------------------------------- /BOF/Psm/SOURCE/Psm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psm/SOURCE/Psm.h -------------------------------------------------------------------------------- /BOF/Psm/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psm/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /BOF/Psm/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psm/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /BOF/Psm/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psm/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Psm/psm_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psm/psm_bof.s1.py -------------------------------------------------------------------------------- /BOF/Psw/Psw.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psw/Psw.cna -------------------------------------------------------------------------------- /BOF/Psw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psw/README.md -------------------------------------------------------------------------------- /BOF/Psw/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psw/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/Psw/SOURCE/Psw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psw/SOURCE/Psw.c -------------------------------------------------------------------------------- /BOF/Psw/SOURCE/Psw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psw/SOURCE/Psw.h -------------------------------------------------------------------------------- /BOF/Psw/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psw/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /BOF/Psw/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psw/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /BOF/Psw/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psw/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Psw/psw_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psw/psw_bof.s1.py -------------------------------------------------------------------------------- /BOF/Psx/Psx.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psx/Psx.cna -------------------------------------------------------------------------------- /BOF/Psx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psx/README.md -------------------------------------------------------------------------------- /BOF/Psx/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psx/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/Psx/SOURCE/Psx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psx/SOURCE/Psx.c -------------------------------------------------------------------------------- /BOF/Psx/SOURCE/Psx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psx/SOURCE/Psx.h -------------------------------------------------------------------------------- /BOF/Psx/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psx/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /BOF/Psx/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psx/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /BOF/Psx/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Psx/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/ReconAD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/ReconAD/README.md -------------------------------------------------------------------------------- /BOF/ReconAD/ReconAD.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/ReconAD/ReconAD.cna -------------------------------------------------------------------------------- /BOF/ReconAD/ReconADComputers_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/ReconAD/ReconADComputers_bof.s1.py -------------------------------------------------------------------------------- /BOF/ReconAD/ReconADGroups_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/ReconAD/ReconADGroups_bof.s1.py -------------------------------------------------------------------------------- /BOF/ReconAD/ReconADUsers_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/ReconAD/ReconADUsers_bof.s1.py -------------------------------------------------------------------------------- /BOF/ReconAD/ReconAD_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/ReconAD/ReconAD_bof.s1.py -------------------------------------------------------------------------------- /BOF/ReconAD/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/ReconAD/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/ReconAD/SOURCE/ReconAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/ReconAD/SOURCE/ReconAD.c -------------------------------------------------------------------------------- /BOF/ReconAD/SOURCE/ReconAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/ReconAD/SOURCE/ReconAD.h -------------------------------------------------------------------------------- /BOF/ReconAD/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/ReconAD/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Smbinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Smbinfo/README.md -------------------------------------------------------------------------------- /BOF/Smbinfo/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Smbinfo/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/Smbinfo/SOURCE/Smbinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Smbinfo/SOURCE/Smbinfo.c -------------------------------------------------------------------------------- /BOF/Smbinfo/SOURCE/Smbinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Smbinfo/SOURCE/Smbinfo.h -------------------------------------------------------------------------------- /BOF/Smbinfo/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Smbinfo/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Smbinfo/Smbinfo.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Smbinfo/Smbinfo.cna -------------------------------------------------------------------------------- /BOF/Smbinfo/Smbinfo_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Smbinfo/Smbinfo_bof.s1.py -------------------------------------------------------------------------------- /BOF/SprayAD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/SprayAD/README.md -------------------------------------------------------------------------------- /BOF/SprayAD/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/SprayAD/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/SprayAD/SOURCE/SprayAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/SprayAD/SOURCE/SprayAD.c -------------------------------------------------------------------------------- /BOF/SprayAD/SOURCE/SprayAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/SprayAD/SOURCE/SprayAD.h -------------------------------------------------------------------------------- /BOF/SprayAD/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/SprayAD/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/SprayAD/SprayAD.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/SprayAD/SprayAD.cna -------------------------------------------------------------------------------- /BOF/SprayAD/SprayAD_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/SprayAD/SprayAD_bof.s1.py -------------------------------------------------------------------------------- /BOF/Stage1-OC2TC-bof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Stage1-OC2TC-bof.py -------------------------------------------------------------------------------- /BOF/StartWebClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/StartWebClient/README.md -------------------------------------------------------------------------------- /BOF/StartWebClient/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/StartWebClient/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/StartWebClient/SOURCE/StartWebClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/StartWebClient/SOURCE/StartWebClient.c -------------------------------------------------------------------------------- /BOF/StartWebClient/SOURCE/StartWebClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/StartWebClient/SOURCE/StartWebClient.h -------------------------------------------------------------------------------- /BOF/StartWebClient/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/StartWebClient/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/StartWebClient/StartWebClient.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/StartWebClient/StartWebClient.cna -------------------------------------------------------------------------------- /BOF/StartWebClient/StartWebClient_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/StartWebClient/StartWebClient_bof.s1.py -------------------------------------------------------------------------------- /BOF/WdToggle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/WdToggle/README.md -------------------------------------------------------------------------------- /BOF/WdToggle/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/WdToggle/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/WdToggle/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/WdToggle/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /BOF/WdToggle/SOURCE/WdToggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/WdToggle/SOURCE/WdToggle.c -------------------------------------------------------------------------------- /BOF/WdToggle/SOURCE/WdToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/WdToggle/SOURCE/WdToggle.h -------------------------------------------------------------------------------- /BOF/WdToggle/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/WdToggle/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/WdToggle/WdToggle.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/WdToggle/WdToggle.cna -------------------------------------------------------------------------------- /BOF/WdToggle/WdToggle_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/WdToggle/WdToggle_bof.s1.py -------------------------------------------------------------------------------- /BOF/Winver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Winver/README.md -------------------------------------------------------------------------------- /BOF/Winver/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Winver/SOURCE/Makefile -------------------------------------------------------------------------------- /BOF/Winver/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Winver/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /BOF/Winver/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Winver/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /BOF/Winver/SOURCE/Winver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Winver/SOURCE/Winver.c -------------------------------------------------------------------------------- /BOF/Winver/SOURCE/Winver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Winver/SOURCE/Winver.h -------------------------------------------------------------------------------- /BOF/Winver/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Winver/SOURCE/beacon.h -------------------------------------------------------------------------------- /BOF/Winver/Winver.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Winver/Winver.cna -------------------------------------------------------------------------------- /BOF/Winver/Winver_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/BOF/Winver/Winver_bof.s1.py -------------------------------------------------------------------------------- /Other/PetitPotam/PetitPotam.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/PetitPotam.cna -------------------------------------------------------------------------------- /Other/PetitPotam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/README.md -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam.sln -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam/PetitPotam.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam/PetitPotam.vcxproj -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam/PetitPotam.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam/PetitPotam.vcxproj.filters -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam/PetitPotam.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam/PetitPotam.vcxproj.user -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam/ReflectiveDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam/ReflectiveDll.c -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam/ReflectiveLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam/ReflectiveLoader.c -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam/ReflectiveLoader.h -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam/ms-dtyp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam/ms-dtyp.h -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam/ms-dtyp.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam/ms-dtyp.idl -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam/ms-efsrpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam/ms-efsrpc.c -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam/ms-efsrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam/ms-efsrpc.h -------------------------------------------------------------------------------- /Other/PetitPotam/SOURCE/PetitPotam/ms-efsrpc.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/PetitPotam/SOURCE/PetitPotam/ms-efsrpc.idl -------------------------------------------------------------------------------- /Other/RemotePipeList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/RemotePipeList/README.md -------------------------------------------------------------------------------- /Other/RemotePipeList/RemotePipeList.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/RemotePipeList/RemotePipeList.cna -------------------------------------------------------------------------------- /Other/RemotePipeList/source/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | bin 3 | obj 4 | packages -------------------------------------------------------------------------------- /Other/RemotePipeList/source/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/RemotePipeList/source/App.config -------------------------------------------------------------------------------- /Other/RemotePipeList/source/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/RemotePipeList/source/FodyWeavers.xml -------------------------------------------------------------------------------- /Other/RemotePipeList/source/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/RemotePipeList/source/FodyWeavers.xsd -------------------------------------------------------------------------------- /Other/RemotePipeList/source/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/RemotePipeList/source/Program.cs -------------------------------------------------------------------------------- /Other/RemotePipeList/source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/RemotePipeList/source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Other/RemotePipeList/source/RemotePipeList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/RemotePipeList/source/RemotePipeList.csproj -------------------------------------------------------------------------------- /Other/RemotePipeList/source/RemotePipeList.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/RemotePipeList/source/RemotePipeList.sln -------------------------------------------------------------------------------- /Other/RemotePipeList/source/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/RemotePipeList/source/packages.config -------------------------------------------------------------------------------- /Other/RemotePipeList/stage1-remotepipelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/Other/RemotePipeList/stage1-remotepipelist.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outflanknl/C2-Tool-Collection/HEAD/README.md --------------------------------------------------------------------------------