├── .dockerignore ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ ├── build-binaries.yml │ ├── build-zipapps.yml │ ├── lint.yml │ └── test.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── exten ├── C2API │ ├── Requests │ │ ├── AuthenticationRequest.cs │ │ ├── ExtHandlerRequest.cs │ │ ├── HostedFileRequest.cs │ │ ├── HttpHandlerRequest.cs │ │ ├── ReversePortForwardRequest.cs │ │ ├── SmbHandlerRequest.cs │ │ ├── SocksRequest.cs │ │ ├── TaskRequest.cs │ │ ├── TcpHandlerRequest.cs │ │ └── WebhookRequest.cs │ ├── Responses │ │ ├── AuthenticationResponse.cs │ │ ├── C2ProfileResponse.cs │ │ ├── DroneResponse.cs │ │ ├── ExtHandlerResponse.cs │ │ ├── HostedFileEventResponse.cs │ │ ├── HostedFileResponse.cs │ │ ├── HttpHandlerResponse.cs │ │ ├── ReversePortForwardResponse.cs │ │ ├── SmbHandlerResponse.cs │ │ ├── SocksResponse.cs │ │ ├── TaskRecordResponse.cs │ │ ├── TcpHandlerResponse.cs │ │ ├── UserAuthEventResponse.cs │ │ ├── WebLogEventResponse.cs │ │ └── WebhookResponse.cs │ ├── Routes.cs │ └── SharpC2.API.csproj ├── Client │ ├── App.xaml │ ├── App.xaml.cs │ ├── Client.csproj │ ├── Commands │ │ ├── Core.yaml │ │ ├── Enumeration.yaml │ │ ├── Execution.yaml │ │ ├── Injection.yaml │ │ ├── Lateral.yaml │ │ └── Tokens.yaml │ ├── Components │ │ ├── Drones │ │ │ ├── DroneTableFull.razor │ │ │ └── SleepDialogue.razor │ │ ├── Events │ │ │ ├── AuthEvents.razor │ │ │ └── WebLogs.razor │ │ ├── Handlers │ │ │ ├── CreateExtHandler.razor │ │ │ ├── CreateHttpHandler.razor │ │ │ ├── CreateSmbHandler.razor │ │ │ ├── CreateTcpHandler.razor │ │ │ ├── ExtHandlers.razor │ │ │ ├── HostAFile.razor │ │ │ ├── HostedFiles.razor │ │ │ ├── HttpHandlers.razor │ │ │ ├── SmbHandlers.razor │ │ │ └── TcpHandlers.razor │ │ ├── Pivots │ │ │ ├── CreateReversePortForward.razor │ │ │ ├── CreateSocksProxy.razor │ │ │ ├── ReversePortForwardTable.razor │ │ │ └── SocksProxyTable.razor │ │ ├── Tasks │ │ │ ├── DirectoryListing.razor │ │ │ ├── ProcessListing.razor │ │ │ └── TaskInput.razor │ │ └── Webhooks │ │ │ └── CreateWebhook.razor │ ├── Main.razor │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── Models │ │ ├── DroneCommand.cs │ │ ├── Drones │ │ │ ├── Drone.cs │ │ │ └── Metadata.cs │ │ ├── Events │ │ │ ├── SharpC2Event.cs │ │ │ ├── UserAuthEvent.cs │ │ │ └── WebLogEvent.cs │ │ ├── Handlers │ │ │ ├── C2Profile.cs │ │ │ ├── ExtHandler.cs │ │ │ ├── Handler.cs │ │ │ ├── HostedFile.cs │ │ │ ├── HttpHandler.cs │ │ │ ├── SmbHandler.cs │ │ │ └── TcpHandler.cs │ │ ├── Pivots │ │ │ ├── ReversePortForward.cs │ │ │ └── SocksProxy.cs │ │ ├── Tasks │ │ │ ├── DirectoryEntry.cs │ │ │ ├── ProcessEntry.cs │ │ │ └── TaskRecord.cs │ │ └── Webhooks │ │ │ └── SharpC2Webhook.cs │ ├── Pages │ │ ├── Drones.razor │ │ ├── Events.razor │ │ ├── Handlers.razor │ │ ├── Index.razor │ │ ├── Interact.razor │ │ ├── Payloads.razor │ │ ├── Pivots.razor │ │ └── Webhooks.razor │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ └── Resources │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Tizen │ │ │ ├── Main.cs │ │ │ └── tizen-manifest.xml │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ └── Package.appxmanifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Resources │ │ ├── AppIcon │ │ │ ├── appicon.svg │ │ │ └── appiconfg.svg │ │ ├── Fonts │ │ │ └── OpenSans-Regular.ttf │ │ ├── Images │ │ │ └── dotnet_bot.svg │ │ ├── Raw │ │ │ └── AboutAssets.txt │ │ └── Splash │ │ │ └── splash.svg │ ├── Services │ │ ├── CommandService.cs │ │ ├── SharpC2Api.cs │ │ └── SharpC2Hub.cs │ ├── Shared │ │ ├── AuthenticationProvider.cs │ │ ├── MainLayout.razor │ │ ├── NavMenu.razor │ │ └── RedirectToLogin.razor │ ├── Utilities │ │ └── Extensions.cs │ └── _Imports.razor ├── Drone │ ├── CommModules │ │ ├── CommModule.cs │ │ ├── ExtCommModule.cs │ │ ├── HttpCommModule.cs │ │ ├── IpcCommModule.cs │ │ ├── SmbCommModule.cs │ │ └── TcpCommModule.cs │ ├── Commands │ │ ├── ChangeDirectory.cs │ │ ├── Connect.cs │ │ ├── DcomCommand.cs │ │ ├── DroneCommand.cs │ │ ├── ExecuteAssembly.cs │ │ ├── KillProcess.cs │ │ ├── Link.cs │ │ ├── ListDirectory.cs │ │ ├── ListProcesses.cs │ │ ├── MakeDirectory.cs │ │ ├── MakeToken.cs │ │ ├── PowerShell.cs │ │ ├── PowerShellImport.cs │ │ ├── PrintWorkingDirectory.cs │ │ ├── PsExecCommand.cs │ │ ├── ReadFile.cs │ │ ├── RemoveDirectory.cs │ │ ├── RemoveFile.cs │ │ ├── RevToSelf.cs │ │ ├── Run.cs │ │ ├── RunAs.cs │ │ ├── RunPe.cs │ │ ├── SetSleep.cs │ │ ├── ShInject.cs │ │ ├── ShSpawn.cs │ │ ├── Shell.cs │ │ ├── StealToken.cs │ │ ├── StopDrone.cs │ │ ├── TakeScreenshot.cs │ │ ├── UploadFile.cs │ │ ├── WhoAmI.cs │ │ ├── WinRmCommand.cs │ │ └── WmiCommand.cs │ ├── Config.cs │ ├── Drone.cs │ ├── Drone.csproj │ ├── Global.cs │ ├── Interop │ │ ├── Data.cs │ │ ├── Delegates.cs │ │ └── Methods.cs │ ├── Messages │ │ ├── C2Frame.cs │ │ ├── DirectoryEntry.cs │ │ ├── DroneTask.cs │ │ ├── LinkNotification.cs │ │ ├── Metadata.cs │ │ ├── ProcessEntry.cs │ │ ├── ReversePortForwardPacket.cs │ │ ├── Socks4ConnectRequest.cs │ │ ├── Socks4Packet.cs │ │ └── TaskOutput.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Management.Automation.dll │ ├── Utilities │ │ ├── Crypto.cs │ │ ├── Extensions.cs │ │ ├── Helpers.cs │ │ ├── PELoader │ │ │ ├── ArgumentHandler.cs │ │ │ ├── ExitPatcher.cs │ │ │ ├── ExtraAPIPatcher.cs │ │ │ ├── ExtraEnvironmentPatcher.cs │ │ │ ├── FileDescriptorRedirector.cs │ │ │ ├── ImportResolver.cs │ │ │ ├── PeLoader.cs │ │ │ └── PeMapper.cs │ │ ├── PowerShellRunner.cs │ │ ├── ReversePortForwardState.cs │ │ └── TransactedAssembly.cs │ ├── dnMerge.config │ └── packages.config ├── ExternalC2 │ ├── DemoClient │ │ ├── DemoClient.csproj │ │ ├── Extensions.cs │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── DemoController │ │ ├── DemoController.csproj │ │ ├── Extensions.cs │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── ExternalC2.Net │ │ ├── Client │ │ └── DroneController.cs │ │ ├── ExternalC2.Net.csproj │ │ └── Server │ │ └── ServerController.cs ├── Stagers │ ├── ExeStager │ │ ├── ExeStager.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── SvcStager │ │ ├── App.config │ │ ├── DroneService.Designer.cs │ │ ├── DroneService.cs │ │ ├── Helpers.cs │ │ ├── Interop │ │ ├── Data.cs │ │ ├── Delegates.cs │ │ └── Methods.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SvcStager.csproj │ │ └── packages.config └── TeamServer │ ├── .dockerignore │ ├── C2Profiles │ ├── C2Profile.cs │ └── default.yaml │ ├── Controllers │ ├── AuthenticationController.cs │ ├── DronesController.cs │ ├── EventsController.cs │ ├── HandlersController.cs │ ├── HostedFilesController.cs │ ├── PayloadsController.cs │ ├── PivotsController.cs │ ├── ProfilesController.cs │ ├── TasksController.cs │ └── WebhooksController.cs │ ├── Dockerfile │ ├── Drones │ ├── Drone.cs │ └── Metadata.cs │ ├── Events │ ├── SharpC2Event.cs │ ├── UserAuthEvent.cs │ └── WebLogEvent.cs │ ├── Filters │ └── InjectionFilters.cs │ ├── Global.cs │ ├── Handlers │ ├── ExtHandler.cs │ ├── Handler.cs │ ├── HostedFile.cs │ ├── HttpHandler.cs │ ├── HttpHandlerController.cs │ ├── SmbHandler.cs │ └── TcpHandler.cs │ ├── Hubs │ ├── INotificationHub.cs │ └── NotificationHub.cs │ ├── Interfaces │ ├── IAuthenticationService.cs │ ├── ICryptoService.cs │ ├── IDatabaseService.cs │ ├── IDroneService.cs │ ├── IEventService.cs │ ├── IHandlerService.cs │ ├── IHostedFilesService.cs │ ├── IPayloadService.cs │ ├── IPeerToPeerService.cs │ ├── IProfileService.cs │ ├── IReversePortForwardService.cs │ ├── IServerModule.cs │ ├── IServerService.cs │ ├── ISocksService.cs │ ├── ITaskService.cs │ └── IWebhookService.cs │ ├── Messages │ ├── C2Frame.cs │ ├── DroneTask.cs │ ├── LinkNotification.cs │ ├── ReversePortForwardPacket.cs │ ├── Socks4ConnectRequest.cs │ ├── Socks4Data.cs │ ├── Socks4Packet.cs │ └── TaskOutput.cs │ ├── Middleware │ └── WebLogMiddleware.cs │ ├── Modules │ ├── CheckInModule.cs │ ├── ExitModule.cs │ ├── LinkModule.cs │ ├── ReversePortForwardModule.cs │ ├── ServerModule.cs │ ├── SocksModule.cs │ ├── TaskOutputModule.cs │ └── UnlinkModule.cs │ ├── Pivots │ ├── ReversePortForward.cs │ └── SocksProxy.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Resources │ ├── drone.dll │ ├── exe_stager.exe │ ├── stager.ps1 │ └── svc_stager.exe │ ├── Services │ ├── AuthenticationService.cs │ ├── CryptoService.cs │ ├── DatabaseService.cs │ ├── DroneService.cs │ ├── EventService.cs │ ├── HandlerService.cs │ ├── HostedFileService.cs │ ├── PayloadService.cs │ ├── PeerToPeerService.cs │ ├── ProfileService.cs │ ├── ReversePortForwardService.cs │ ├── ServerService.cs │ ├── SocksService.cs │ ├── TaskService.cs │ └── WebhookService.cs │ ├── Storage │ ├── CryptoDao.cs │ ├── CustomWebhookDao.cs │ ├── DroneDao.cs │ ├── ExtHandlerDao.cs │ ├── HostedFileDao.cs │ ├── HttpHandlerDao.cs │ ├── ReversePortForwardDao.cs │ ├── SlackWebhookDao.cs │ ├── SmbHandlerDao.cs │ ├── SocksDao.cs │ ├── TaskRecordDao.cs │ ├── TcpHandlerDao.cs │ ├── UserAuthDao.cs │ └── WebLogDao.cs │ ├── Tasks │ └── TaskRecord.cs │ ├── TeamServer.csproj │ ├── Utilities │ ├── Extensions.cs │ └── Helpers.cs │ ├── Webhooks │ ├── CustomWebhook.cs │ ├── SharpC2Webhook.cs │ └── SlackWebhook.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── logon ├── .gitignore ├── LICENSE ├── logon.c ├── logon.sln ├── logon.vcxproj ├── logon.vcxproj.filters ├── logon │ ├── HandlesEnumerator.c │ ├── HandlesEnumerator.vcxproj │ ├── HandlesEnumerator.vcxproj.filters │ └── ntdef.h └── ntdef.h ├── netexec.spec ├── nxc ├── .hooks │ ├── hook-lsassy.py │ └── hook-pypykatz.py ├── __init__.py ├── cli.py ├── config.py ├── connection.py ├── console.py ├── context.py ├── data │ ├── default.pem │ ├── impersonate_module │ │ └── impersonate.bs64 │ ├── keepass_trigger_module │ │ ├── AddKeePassTrigger.ps1 │ │ ├── RemoveKeePassTrigger.ps1 │ │ └── RestartKeePass.ps1 │ ├── msol_dump │ │ └── msol_dump.ps1 │ ├── nxc.conf │ ├── nxc.ico │ ├── pi_module │ │ └── pi.bs64 │ ├── veeam_dump_module │ │ ├── veeam_dump_mssql.ps1 │ │ └── veeam_dump_postgresql.ps1 │ └── wmiexec_event_vbscripts │ │ ├── Exec_Command_Silent.vbs │ │ └── Exec_Command_WithOutput.vbs ├── database.py ├── first_run.py ├── helpers │ ├── __init__.py │ ├── args.py │ ├── bash.py │ ├── bloodhound.py │ ├── http.py │ ├── logger.py │ ├── misc.py │ ├── msada_guids.py │ ├── ntlm_parser.py │ └── powershell.py ├── loaders │ ├── __init__.py │ ├── moduleloader.py │ └── protocolloader.py ├── logger.py ├── modules │ ├── adcs.py │ ├── add-computer.py │ ├── bitlocker.py │ ├── daclread.py │ ├── dfscoerce.py │ ├── drop-sc.py │ ├── empire_exec.py │ ├── enum_av.py │ ├── enum_ca.py │ ├── enum_dns.py │ ├── enum_trusts.py │ ├── example_module.py │ ├── find-computer.py │ ├── firefox.py │ ├── get-desc-users.py │ ├── get-network.py │ ├── get-unixUserPassword.py │ ├── get-userPassword.py │ ├── get_netconnections.py │ ├── gpp_autologin.py │ ├── gpp_password.py │ ├── group-mem.py │ ├── groupmembership.py │ ├── handlekatz.py │ ├── hash_spider.py │ ├── hyperv-host.py │ ├── iis.py │ ├── impersonate.py │ ├── install_elevated.py │ ├── ioxidresolver.py │ ├── keepass_discover.py │ ├── keepass_trigger.py │ ├── laps.py │ ├── ldap-checker.py │ ├── lsassy.py │ ├── maq.py │ ├── masky.py │ ├── met_inject.py │ ├── mobaxterm.py │ ├── mremoteng.py │ ├── ms17-010.py │ ├── msol.py │ ├── mssql_priv.py │ ├── nanodump.py │ ├── nopac.py │ ├── ntdsutil.py │ ├── ntlmv1.py │ ├── obsolete.py │ ├── petitpotam.py │ ├── pi.py │ ├── pre2k.py │ ├── printerbug.py │ ├── printnightmare.py │ ├── procdump.py │ ├── pso.py │ ├── putty.py │ ├── rdcman.py │ ├── rdp.py │ ├── reg-query.py │ ├── reg-winlogon.py │ ├── runasppl.py │ ├── sccm.py │ ├── schtask_as.py │ ├── scuffy.py │ ├── security-questions.py │ ├── shadowcoerce.py │ ├── slinky.py │ ├── smbghost.py │ ├── spider_plus.py │ ├── spooler.py │ ├── subnets.py │ ├── teams_localdb.py │ ├── test_connection.py │ ├── uac.py │ ├── user-desc.py │ ├── veeam.py │ ├── vnc.py │ ├── wcc.py │ ├── wdigest.py │ ├── web_delivery.py │ ├── webdav.py │ ├── whoami.py │ ├── wifi.py │ ├── winscp.py │ └── zerologon.py ├── netexec.py ├── nxcdb.py ├── parsers │ ├── __init__.py │ ├── ip.py │ ├── ldap_results.py │ ├── nessus.py │ └── nmap.py ├── paths.py ├── protocols │ ├── __init__.py │ ├── ftp.py │ ├── ftp │ │ ├── __init__.py │ │ ├── database.py │ │ ├── db_navigator.py │ │ └── proto_args.py │ ├── ldap.py │ ├── ldap │ │ ├── __init__.py │ │ ├── bloodhound.py │ │ ├── database.py │ │ ├── db_navigator.py │ │ ├── gmsa.py │ │ ├── kerberos.py │ │ ├── laps.py │ │ └── proto_args.py │ ├── mssql.py │ ├── mssql │ │ ├── __init__.py │ │ ├── database.py │ │ ├── db_navigator.py │ │ ├── mssqlexec.py │ │ └── proto_args.py │ ├── rdp.py │ ├── rdp │ │ ├── __init__.py │ │ ├── database.py │ │ ├── db_navigator.py │ │ └── proto_args.py │ ├── smb.py │ ├── smb │ │ ├── __init__.py │ │ ├── atexec.py │ │ ├── database.py │ │ ├── db_navigator.py │ │ ├── firefox.py │ │ ├── kerberos.py │ │ ├── mmcexec.py │ │ ├── passpol.py │ │ ├── proto_args.py │ │ ├── remotefile.py │ │ ├── samrfunc.py │ │ ├── samruser.py │ │ ├── smbexec.py │ │ ├── smbspider.py │ │ └── wmiexec.py │ ├── ssh.py │ ├── ssh │ │ ├── __init__.py │ │ ├── database.py │ │ ├── db_navigator.py │ │ └── proto_args.py │ ├── vnc.py │ ├── vnc │ │ ├── __init__.py │ │ ├── database.py │ │ ├── db_navigator.py │ │ └── proto_args.py │ ├── winrm.py │ ├── winrm │ │ ├── __init__.py │ │ ├── database.py │ │ ├── db_navigator.py │ │ └── proto_args.py │ ├── wmi.py │ └── wmi │ │ ├── __init__.py │ │ ├── database.py │ │ ├── db_navigator.py │ │ ├── proto_args.py │ │ ├── wmiexec.py │ │ └── wmiexec_event.py └── servers │ ├── __init__.py │ └── smb.py ├── outflank ├── 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 ├── poetry.lock ├── pyproject.toml ├── relay ├── Images │ ├── demo.mp4 │ └── image-20220213094644590.png ├── packages │ ├── BouncyCastle.1.8.9 │ │ ├── .signature.p7s │ │ ├── BouncyCastle.1.8.9.nupkg │ │ └── README.md │ ├── ILMerge.3.0.41 │ │ ├── .signature.p7s │ │ ├── ILMerge.3.0.41.nupkg │ │ ├── docs │ │ │ └── ilmerge-manual.md │ │ └── tools │ │ │ └── net452 │ │ │ ├── ILMerge.exe │ │ │ └── System.Compiler.dll │ ├── MimeKitLite.2.15.1 │ │ ├── .signature.p7s │ │ ├── MimeKitLite.2.15.1.nupkg │ │ └── icons │ │ │ └── mimekit-50.png │ ├── System.Buffers.4.5.1 │ │ ├── .signature.p7s │ │ ├── LICENSE.TXT │ │ ├── System.Buffers.4.5.1.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── ref │ │ │ ├── net45 │ │ │ │ ├── System.Buffers.dll │ │ │ │ └── System.Buffers.xml │ │ │ ├── netcoreapp2.0 │ │ │ │ └── _._ │ │ │ ├── netstandard1.1 │ │ │ │ ├── System.Buffers.dll │ │ │ │ └── System.Buffers.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── System.Buffers.dll │ │ │ │ └── System.Buffers.xml │ │ │ └── uap10.0.16299 │ │ │ │ └── _._ │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ └── dnMerge.0.5.15 │ │ ├── .signature.p7s │ │ ├── buildMultiTargeting │ │ └── dnMerge.targets │ │ ├── dnMerge.0.5.15.nupkg │ │ └── tasks │ │ ├── net472 │ │ └── dnMerge.dll │ │ └── netstandard2.1 │ │ └── dnMerge.dll ├── port │ ├── App.config │ ├── CheckPort.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ ├── Debug │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── CheckPort.csproj.AssemblyReference.cache │ │ ├── CheckPort.csproj.ResolveComReference.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Interop.NetFwTypeLib.dll │ │ └── Release │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── CheckPort.csproj.AssemblyReference.cache │ │ ├── CheckPort.csproj.FileListAbsolute.txt │ │ ├── CheckPort.csproj.ResolveComReference.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Interop.NetFwTypeLib.dll ├── relay.sln └── relay │ ├── App.config │ ├── Clients │ ├── Attacks │ │ ├── Http │ │ │ ├── ADCS.cs │ │ │ ├── EWS.cs │ │ │ └── ProxyServer.cs │ │ ├── Ldap │ │ │ ├── DSInternals.Common │ │ │ │ ├── Data │ │ │ │ │ ├── DNWithBinary.cs │ │ │ │ │ └── Hello │ │ │ │ │ │ ├── CustomKeyInformation.cs │ │ │ │ │ │ ├── KeyCredential.cs │ │ │ │ │ │ ├── KeyCredentialEntryType.cs │ │ │ │ │ │ ├── KeyCredentialVersion.cs │ │ │ │ │ │ ├── KeyFlags.cs │ │ │ │ │ │ ├── KeySource.cs │ │ │ │ │ │ ├── KeyStrength.cs │ │ │ │ │ │ ├── KeyUsage.cs │ │ │ │ │ │ └── VolumeType.cs │ │ │ │ ├── Extensions │ │ │ │ │ ├── ByteArrayExtensions.cs │ │ │ │ │ └── RSAExtensions.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ └── Validator.cs │ │ │ ├── Generic.cs │ │ │ ├── LAPS.cs │ │ │ ├── RBCD.cs │ │ │ ├── ShadowCredential.cs │ │ │ ├── addGroupMember.cs │ │ │ ├── gMSA.cs │ │ │ └── setPassword.cs │ │ └── Smb │ │ │ ├── HiveParser │ │ │ ├── Crypto.cs │ │ │ ├── LsaSecret.cs │ │ │ ├── NL_Record.cs │ │ │ ├── NodeKey.cs │ │ │ ├── Parse.cs │ │ │ ├── Registry.cs │ │ │ ├── RegistryHive.cs │ │ │ └── ValueKey.cs │ │ │ ├── LSA.cs │ │ │ ├── RemoteRegistry.cs │ │ │ ├── ServiceManager.cs │ │ │ └── Shares.cs │ ├── Http.cs │ ├── Ldap.cs │ ├── Rpc.cs │ └── Smb.cs │ ├── Com │ ├── BufferUtils.cs │ ├── COMInterfaces.cs │ ├── COMObjRef.cs │ ├── COMUtilities.cs │ ├── ComUtils.cs │ ├── SafeBufferGeneric.cs │ ├── SafeHGlobalBuffer.cs │ └── SafeStructureInOutBuffer.cs │ ├── IStorage │ ├── IEnumSTATSTG.cs │ ├── ILockBytes.cs │ ├── IMarshal.cs │ ├── IStorage.cs │ ├── IStream.cs │ ├── Ole32.cs │ ├── StandardActivator.cs │ └── StorageTrigger.cs │ ├── KrbRelay.crproj │ ├── KrbRelay.csproj │ ├── KrbRelay.csproj.user │ ├── Misc │ ├── Helpers.cs │ ├── Interop.cs │ ├── Natives.cs │ └── SecurityBuffer.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Smb │ ├── RPCForSMBLibrary │ │ ├── Client │ │ │ └── Helpers │ │ │ │ ├── EFSServiceHelper.cs │ │ │ │ ├── IRPCRequest.cs │ │ │ │ ├── LsaServiceHelper.cs │ │ │ │ ├── NetlogonServiceHelper.cs │ │ │ │ ├── RPCCallHelperEx.cs │ │ │ │ ├── RprnServiceHelper.cs │ │ │ │ ├── RrpServiceHelper.cs │ │ │ │ ├── SIDHelper.cs │ │ │ │ ├── SamrServiceHelper.cs │ │ │ │ ├── ScmrServiceHelper.cs │ │ │ │ ├── ServerServiceHelperEx.cs │ │ │ │ └── TschServiceHelper.cs │ │ ├── RPC │ │ │ └── NDR │ │ │ │ └── NDRSid.cs │ │ └── Services │ │ │ ├── EFSService │ │ │ ├── EFSService.cs │ │ │ ├── EfsRpcCloseRawRequest.cs │ │ │ ├── EfsRpcCloseRawResponse.cs │ │ │ ├── EfsRpcOpenFileRawRequest.cs │ │ │ ├── EfsRpcOpenFileRawResponse.cs │ │ │ ├── Enums │ │ │ │ └── EFSServiceOpName.cs │ │ │ └── Structures │ │ │ │ └── EXImportContextHandle.cs │ │ │ ├── LsaRemoteService │ │ │ ├── Enums │ │ │ │ ├── LsaRemoteServiceOpName.cs │ │ │ │ └── LsaSIDNameUse.cs │ │ │ ├── LsaRemoteService.cs │ │ │ ├── LsarAddAccountRightsRequest.cs │ │ │ ├── LsarAddAccountRightsResponse.cs │ │ │ ├── LsarCloseRequest.cs │ │ │ ├── LsarCloseResponse.cs │ │ │ ├── LsarLookupNamesRequest.cs │ │ │ ├── LsarLookupNamesResponse.cs │ │ │ ├── LsarLookupSidsRequest.cs │ │ │ ├── LsarLookupSidsResponse.cs │ │ │ ├── LsarOpenPolicyRequest.cs │ │ │ ├── LsarOpenPolicyResponse.cs │ │ │ └── Structures │ │ │ │ ├── LsaHandle.cs │ │ │ │ ├── LsaObjectAttributes.cs │ │ │ │ ├── LsaReferencedDomainList.cs │ │ │ │ ├── LsaSIDArray.cs │ │ │ │ ├── LsaSIDEnumBuffer.cs │ │ │ │ ├── LsaTranslatedArray.cs │ │ │ │ ├── LsaTranslatedName.cs │ │ │ │ ├── LsaTranslatedSid.cs │ │ │ │ ├── LsaTrustInformation.cs │ │ │ │ ├── LsaUnicodeString.cs │ │ │ │ ├── LsaUnicodeStringArray.cs │ │ │ │ └── _LSAPR_USER_RIGHT_SET.cs │ │ │ ├── NetlogonService │ │ │ ├── DsrGetDcNameRequest.cs │ │ │ ├── DsrGetDcNameResponse.cs │ │ │ ├── Enums │ │ │ │ └── NetlogonServiceOpName.cs │ │ │ ├── NetlogonService.cs │ │ │ └── Structures │ │ │ │ ├── DomainControllerInfo.cs │ │ │ │ └── NDRDomainControllerInfo.cs │ │ │ ├── RprnService │ │ │ ├── Enums │ │ │ │ └── RprnServiceOpName.cs │ │ │ ├── RpcAddPrinterDriverExRequest.cs │ │ │ ├── RpcAddPrinterDriverExResponse.cs │ │ │ ├── RpcClosePrinterRequest.cs │ │ │ ├── RpcClosePrinterResponse.cs │ │ │ ├── RpcOpenPrinterRequest.cs │ │ │ ├── RpcOpenPrinterResponse.cs │ │ │ ├── RprnService.cs │ │ │ ├── Structures │ │ │ │ ├── DEVMODE_CONTAINER.cs │ │ │ │ ├── DRIVER_CONTAINER.cs │ │ │ │ ├── DRIVER_INFO2.cs │ │ │ │ └── PRINTER_HANDLE.cs │ │ │ ├── rpcEnumPrinterDriversRequest.cs │ │ │ └── rpcEnumPrinterDriversResponse.cs │ │ │ ├── RrpService │ │ │ ├── Enums │ │ │ │ ├── REGSAM.cs │ │ │ │ ├── RrpServiceOpName.cs │ │ │ │ └── ValueType.cs │ │ │ ├── OpenLocalMachineRequest.cs │ │ │ ├── OpenLocalMachineResponse.cs │ │ │ ├── RrpService.cs │ │ │ ├── Structures │ │ │ │ ├── BYTE.cs │ │ │ │ ├── GUID.cs │ │ │ │ ├── LPDWORD.cs │ │ │ │ ├── RPC_HKEY.cs │ │ │ │ └── RPC_SECURITY_ATTRIBUTES.cs │ │ │ ├── baseRegCloseKeyRequest.cs │ │ │ ├── baseRegCloseKeyResponse.cs │ │ │ ├── baseRegCreateKeyRequest.cs │ │ │ ├── baseRegCreateKeyResponse.cs │ │ │ ├── baseRegOpenKeyRequest.cs │ │ │ ├── baseRegOpenKeyResponse.cs │ │ │ ├── baseRegQueryInfoKeyRequest.cs │ │ │ ├── baseRegQueryInfoKeyResponse.cs │ │ │ ├── baseRegQueryValueRequest.cs │ │ │ ├── baseRegQueryValueResponse.cs │ │ │ ├── baseRegSaveKeyRequest.cs │ │ │ └── baseRegSaveKeyResponse.cs │ │ │ ├── SamrService │ │ │ ├── Enums │ │ │ │ ├── AccessMask.cs │ │ │ │ └── SamrServiceOpName.cs │ │ │ ├── SamrConnectRequest.cs │ │ │ ├── SamrConnectResponse.cs │ │ │ ├── SamrService.cs │ │ │ ├── Structures │ │ │ │ ├── RPC_UNICODE_STRING.cs │ │ │ │ ├── RPC_UNICODE_STRING2.cs │ │ │ │ ├── SAMPR_ENUMERATION_BUFFER.cs │ │ │ │ ├── SAMPR_RID_ENUMERATION.cs │ │ │ │ ├── SAMPR_USER_INFO_BUFFER.cs │ │ │ │ ├── SAMPR_USER_INTERNAL1_INFORMATION.cs │ │ │ │ └── SamprHandle.cs │ │ │ ├── samrAddMemberToGroupRequest.cs │ │ │ ├── samrAddMemberToGroupResponse.cs │ │ │ ├── samrCloseHandleRequest.cs │ │ │ ├── samrCloseHandleResponse.cs │ │ │ ├── samrCreateUserInDomainRequest.cs │ │ │ ├── samrCreateUserInDomainResponse.cs │ │ │ ├── samrEnumerateDomainsInSamServerRequest.cs │ │ │ ├── samrEnumerateDomainsInSamServerResponse.cs │ │ │ ├── samrLookupDomainInSamServerRequest.cs │ │ │ ├── samrLookupDomainInSamServerResponse.cs │ │ │ ├── samrOpenDomainRequest.cs │ │ │ ├── samrOpenDomainResponse.cs │ │ │ ├── samrOpenGroupRequest.cs │ │ │ ├── samrOpenGroupResponse.cs │ │ │ ├── samrOpenUserRequest.cs │ │ │ ├── samrOpenUserResponse.cs │ │ │ ├── samrSetInformationUserRequest.cs │ │ │ └── samrSetInformationUserResponse.cs │ │ │ ├── ScmrService │ │ │ ├── Enums │ │ │ │ ├── SERIVCE_STARTUP.cs │ │ │ │ ├── SERVICE_ACCESS.cs │ │ │ │ └── ScmrServiceOpName.cs │ │ │ ├── RCreateServiceWRequest.cs │ │ │ ├── RCreateServiceWResponse.cs │ │ │ ├── ROpenSCManagerWRequest.cs │ │ │ ├── ROpenSCManagerWResponse.cs │ │ │ ├── ScmrService.cs │ │ │ ├── Structures │ │ │ │ ├── LPSC_RPC_HANDLE.cs │ │ │ │ ├── QUERY_SERVICE_CONFIGW.cs │ │ │ │ └── SERVICE_STATUS.cs │ │ │ ├── rChangeServiceConfigWRequest.cs │ │ │ ├── rChangeServiceConfigWResponse.cs │ │ │ ├── rCloseServiceHandleRequest.cs │ │ │ ├── rCloseServiceHandleResponse.cs │ │ │ ├── rControlServiceRequest.cs │ │ │ ├── rControlServiceResponse.cs │ │ │ ├── rOpenServiceWRequest.cs │ │ │ ├── rOpenServiceWResponse.cs │ │ │ ├── rQueryServiceConfigWRequest.cs │ │ │ ├── rQueryServiceConfigWResponse.cs │ │ │ ├── rQueryServiceStatusRequest.cs │ │ │ ├── rQueryServiceStatusResponse.cs │ │ │ ├── rStartServiceWRequest.cs │ │ │ └── rStartServiceWResponse.cs │ │ │ ├── ServerService │ │ │ ├── NetrRemoteTODRequest.cs │ │ │ ├── NetrRemoteTODResponse.cs │ │ │ ├── NetrServerStatisticsGetRequest.cs │ │ │ ├── NetrServerStatisticsGetResponse.cs │ │ │ └── Structures │ │ │ │ ├── NDRStatServer.cs │ │ │ │ └── NDRTimeOfDayInfo.cs │ │ │ └── TschService │ │ │ ├── Enums │ │ │ ├── TASK_CREATION.cs │ │ │ ├── TASK_LOGON_TYPE.cs │ │ │ └── TschServiceOpName.cs │ │ │ ├── Structures │ │ │ ├── TASK_USER_CRED.cs │ │ │ └── TASK_XML_ERROR_INFO.cs │ │ │ ├── TschService.cs │ │ │ ├── schRpcDeleteRequest.cs │ │ │ ├── schRpcDeleteResponse.cs │ │ │ ├── schRpcGetLastRunInfoRequest.cs │ │ │ ├── schRpcGetLastRunInfoResponse.cs │ │ │ ├── schRpcRegisterTaskRequest.cs │ │ │ ├── schRpcRegisterTaskResponse.cs │ │ │ ├── schRpcRunRequest.cs │ │ │ └── schRpcRunResponse.cs │ ├── SMBLibrary │ │ ├── Authentication │ │ │ ├── GSSAPI │ │ │ │ ├── Enums │ │ │ │ │ └── GSSAttributeName.cs │ │ │ │ ├── GSSProvider.cs │ │ │ │ ├── IGSSMechanism.cs │ │ │ │ └── SPNEGO │ │ │ │ │ ├── DerEncodingHelper.cs │ │ │ │ │ ├── SimpleProtectedNegotiationToken.cs │ │ │ │ │ ├── SimpleProtectedNegotiationTokenInit.cs │ │ │ │ │ ├── SimpleProtectedNegotiationTokenInit2.cs │ │ │ │ │ └── SimpleProtectedNegotiationTokenResponse.cs │ │ │ ├── LoginCounter.cs │ │ │ └── NTLM │ │ │ │ ├── Helpers │ │ │ │ ├── AVPairUtils.cs │ │ │ │ ├── AuthenticationMessageUtils.cs │ │ │ │ ├── MD4.cs │ │ │ │ ├── NTLMCryptography.cs │ │ │ │ └── RC4.cs │ │ │ │ ├── IndependentNTLMAuthenticationProvider.cs │ │ │ │ ├── NTLMAuthenticationProviderBase.cs │ │ │ │ └── Structures │ │ │ │ ├── AuthenticateMessage.cs │ │ │ │ ├── ChallengeMessage.cs │ │ │ │ ├── Enums │ │ │ │ ├── AVPairKey.cs │ │ │ │ ├── MessageTypeName.cs │ │ │ │ └── NegotiateFlags.cs │ │ │ │ ├── NTLMVersion.cs │ │ │ │ ├── NTLMv2ClientChallenge.cs │ │ │ │ └── NegotiateMessage.cs │ │ ├── Client │ │ │ ├── ConnectionState.cs │ │ │ ├── Enums │ │ │ │ └── AuthenticationMethod.cs │ │ │ ├── Helpers │ │ │ │ ├── NTLMAuthenticationHelper.cs │ │ │ │ ├── NamedPipeHelper.cs │ │ │ │ └── ServerServiceHelper.cs │ │ │ ├── ISMBClient.cs │ │ │ ├── ISMBFileStore.cs │ │ │ ├── NameServiceClient.cs │ │ │ ├── SMB1Client.cs │ │ │ ├── SMB1FileStore.cs │ │ │ ├── SMB2Client.cs │ │ │ └── SMB2FileStore.cs │ │ ├── DFS │ │ │ ├── DfsReferralEntry.cs │ │ │ ├── RequestGetDfsReferral.cs │ │ │ └── ResponseGetDfsReferral.cs │ │ ├── Enums │ │ │ ├── NTStatus.cs │ │ │ ├── SMBTransportType.cs │ │ │ └── Win32Error.cs │ │ ├── Exceptions │ │ │ └── UnsupportedInformationLevelException.cs │ │ ├── Helpers │ │ │ ├── FileTimeHelper.cs │ │ │ └── SP800_1008.cs │ │ ├── NTFileStore │ │ │ ├── Enums │ │ │ │ ├── AccessMask │ │ │ │ │ ├── AccessMask.cs │ │ │ │ │ ├── DirectoryAccessMask.cs │ │ │ │ │ └── FileAccessMask.cs │ │ │ │ ├── FileInformation │ │ │ │ │ ├── CompressionFormat.cs │ │ │ │ │ ├── ExtendedAttributeFlags.cs │ │ │ │ │ ├── FileAttributes.cs │ │ │ │ │ └── FileInformationClass.cs │ │ │ │ ├── FileSystemInformation │ │ │ │ │ ├── DeviceCharacteristics.cs │ │ │ │ │ ├── DeviceType.cs │ │ │ │ │ ├── FileSystemAttributes.cs │ │ │ │ │ ├── FileSystemControlFlags.cs │ │ │ │ │ ├── FileSystemInformationClass.cs │ │ │ │ │ └── SectorSizeInformationFlags.cs │ │ │ │ ├── IoControlCode.cs │ │ │ │ ├── NotifyChangeFilter.cs │ │ │ │ ├── NtCreateFile │ │ │ │ │ ├── CreateDisposition.cs │ │ │ │ │ ├── CreateOptions.cs │ │ │ │ │ ├── FileStatus.cs │ │ │ │ │ └── ShareAccess.cs │ │ │ │ └── SecurityInformation │ │ │ │ │ ├── ImpersonationLevel.cs │ │ │ │ │ └── SecurityInformation.cs │ │ │ ├── FileHandle.cs │ │ │ ├── INTFileStore.cs │ │ │ ├── NTFileStoreHelper.cs │ │ │ ├── NamedPipeStore.cs │ │ │ └── Structures │ │ │ │ ├── FileInformation │ │ │ │ ├── FileInformation.cs │ │ │ │ ├── Query │ │ │ │ │ ├── FileAccessInformation.cs │ │ │ │ │ ├── FileAlignmentInformation.cs │ │ │ │ │ ├── FileAllInformation.cs │ │ │ │ │ ├── FileAlternateNameInformation.cs │ │ │ │ │ ├── FileBasicInformation.cs │ │ │ │ │ ├── FileCompressionInformation.cs │ │ │ │ │ ├── FileEaInformation.cs │ │ │ │ │ ├── FileFullEAEntry.cs │ │ │ │ │ ├── FileFullEAInformation.cs │ │ │ │ │ ├── FileInternalInformation.cs │ │ │ │ │ ├── FileModeInformation.cs │ │ │ │ │ ├── FileNameInformation.cs │ │ │ │ │ ├── FileNetworkOpenInformation.cs │ │ │ │ │ ├── FilePositionInformation.cs │ │ │ │ │ ├── FileStandardInformation.cs │ │ │ │ │ ├── FileStreamEntry.cs │ │ │ │ │ └── FileStreamInformation.cs │ │ │ │ ├── QueryDirectory │ │ │ │ │ ├── FileBothDirectoryInformation.cs │ │ │ │ │ ├── FileDirectoryInformation.cs │ │ │ │ │ ├── FileFullDirectoryInformation.cs │ │ │ │ │ ├── FileIdBothDirectoryInformation.cs │ │ │ │ │ ├── FileIdFullDirectoryInformation.cs │ │ │ │ │ ├── FileNamesInformation.cs │ │ │ │ │ └── QueryDirectoryFileInformation.cs │ │ │ │ └── Set │ │ │ │ │ ├── FileAllocationInformation.cs │ │ │ │ │ ├── FileDispositionInformation.cs │ │ │ │ │ ├── FileEndOfFileInformation.cs │ │ │ │ │ ├── FileLinkInformationType1.cs │ │ │ │ │ ├── FileLinkInformationType2.cs │ │ │ │ │ ├── FileRenameInformationType1.cs │ │ │ │ │ ├── FileRenameInformationType2.cs │ │ │ │ │ ├── FileValidDataLengthInformation.cs │ │ │ │ │ └── SetFileTime.cs │ │ │ │ ├── FileNotifyInformation.cs │ │ │ │ ├── FileSystemInformation │ │ │ │ ├── FileFsAttributeInformation.cs │ │ │ │ ├── FileFsControlInformation.cs │ │ │ │ ├── FileFsDeviceInformation.cs │ │ │ │ ├── FileFsFullSizeInformation.cs │ │ │ │ ├── FileFsObjectIdInformation.cs │ │ │ │ ├── FileFsSectorSizeInformation.cs │ │ │ │ ├── FileFsSizeInformation.cs │ │ │ │ ├── FileFsVolumeInformation.cs │ │ │ │ └── FileSystemInformation.cs │ │ │ │ ├── IOCtl │ │ │ │ ├── ObjectIDBufferType1.cs │ │ │ │ └── PipeWaitRequest.cs │ │ │ │ └── SecurityInformation │ │ │ │ ├── ACE │ │ │ │ ├── ACE.cs │ │ │ │ ├── AccessAllowedACE.cs │ │ │ │ ├── AceHeader.cs │ │ │ │ └── Enums │ │ │ │ │ ├── AceFlags.cs │ │ │ │ │ └── AceType.cs │ │ │ │ ├── ACL.cs │ │ │ │ ├── Enums │ │ │ │ └── SecurityDescriptorControl.cs │ │ │ │ ├── SID.cs │ │ │ │ └── SecurityDescriptor.cs │ │ ├── NetBios │ │ │ ├── NBTConnectionReceiveBuffer.cs │ │ │ ├── NameServicePackets │ │ │ │ ├── EnumStructures │ │ │ │ │ └── NameFlags.cs │ │ │ │ ├── Enums │ │ │ │ │ ├── NameRecordType.cs │ │ │ │ │ ├── NameServiceOperation.cs │ │ │ │ │ ├── NetBiosSuffix.cs │ │ │ │ │ ├── OperationFlags.cs │ │ │ │ │ ├── QuestionClass.cs │ │ │ │ │ └── ResourceRecordClass.cs │ │ │ │ ├── NameQueryRequest.cs │ │ │ │ ├── NameRegistrationRequest.cs │ │ │ │ ├── NameServicePacketHeader.cs │ │ │ │ ├── NodeStatusRequest.cs │ │ │ │ ├── NodeStatusResponse.cs │ │ │ │ ├── PositiveNameQueryResponse.cs │ │ │ │ └── Structures │ │ │ │ │ ├── NodeStatistics.cs │ │ │ │ │ ├── QuestionSection.cs │ │ │ │ │ └── ResourceRecord.cs │ │ │ ├── NetBiosUtils.cs │ │ │ └── SessionPackets │ │ │ │ ├── Enums │ │ │ │ └── SessionPacketTypeName.cs │ │ │ │ ├── NegativeSessionResponsePacket.cs │ │ │ │ ├── PositiveSessionResponsePacket.cs │ │ │ │ ├── SessionKeepAlivePacket.cs │ │ │ │ ├── SessionMessagePacket.cs │ │ │ │ ├── SessionPacket.cs │ │ │ │ ├── SessionRequestPacket.cs │ │ │ │ └── SessionRetargetResponsePacket.cs │ │ ├── RPC │ │ │ ├── EnumStructures │ │ │ │ └── DataRepresentationFormat.cs │ │ │ ├── Enums │ │ │ │ ├── FaultStatus.cs │ │ │ │ ├── NegotiationResult.cs │ │ │ │ ├── PacketFlags.cs │ │ │ │ ├── PacketTypeName.cs │ │ │ │ └── RejectionReason.cs │ │ │ ├── NDR │ │ │ │ ├── INDRStructure.cs │ │ │ │ ├── NDRConformantArray.cs │ │ │ │ ├── NDRParser.cs │ │ │ │ ├── NDRTypeName.cs │ │ │ │ ├── NDRUnicodeString.cs │ │ │ │ └── NDRWriter.cs │ │ │ ├── PDU │ │ │ │ ├── BindAckPDU.cs │ │ │ │ ├── BindNakPDU.cs │ │ │ │ ├── BindPDU.cs │ │ │ │ ├── FaultPDU.cs │ │ │ │ ├── RPCPDU.cs │ │ │ │ ├── RequestPDU.cs │ │ │ │ └── ResponsePDU.cs │ │ │ ├── RPCHelper.cs │ │ │ └── Structures │ │ │ │ ├── ContextElement.cs │ │ │ │ ├── ContextList.cs │ │ │ │ ├── ResultElement.cs │ │ │ │ ├── ResultList.cs │ │ │ │ ├── SyntaxID.cs │ │ │ │ ├── Version.cs │ │ │ │ └── VersionsSupported.cs │ │ ├── SMB1 │ │ │ ├── Commands │ │ │ │ ├── CheckDirectoryRequest.cs │ │ │ │ ├── CheckDirectoryResponse.cs │ │ │ │ ├── CloseRequest.cs │ │ │ │ ├── CloseResponse.cs │ │ │ │ ├── CreateDirectoryRequest.cs │ │ │ │ ├── CreateDirectoryResponse.cs │ │ │ │ ├── DeleteDirectoryRequest.cs │ │ │ │ ├── DeleteDirectoryResponse.cs │ │ │ │ ├── DeleteRequest.cs │ │ │ │ ├── DeleteResponse.cs │ │ │ │ ├── EchoRequest.cs │ │ │ │ ├── EchoResponse.cs │ │ │ │ ├── ErrorResponse.cs │ │ │ │ ├── FindClose2Request.cs │ │ │ │ ├── FindClose2Response.cs │ │ │ │ ├── FlushRequest.cs │ │ │ │ ├── FlushResponse.cs │ │ │ │ ├── LockingAndXRequest.cs │ │ │ │ ├── LockingAndXResponse.cs │ │ │ │ ├── LogoffAndXRequest.cs │ │ │ │ ├── LogoffAndXResponse.cs │ │ │ │ ├── NTCancelRequest.cs │ │ │ │ ├── NTCreateAndXRequest.cs │ │ │ │ ├── NTCreateAndXResponse.cs │ │ │ │ ├── NTCreateAndXResponseExtended.cs │ │ │ │ ├── NTTransactInterimResponse.cs │ │ │ │ ├── NTTransactRequest.cs │ │ │ │ ├── NTTransactResponse.cs │ │ │ │ ├── NTTransactSecondaryRequest.cs │ │ │ │ ├── NegotiateRequest.cs │ │ │ │ ├── NegotiateResponse.cs │ │ │ │ ├── NegotiateResponseExtended.cs │ │ │ │ ├── NegotiateResponseNotSupported.cs │ │ │ │ ├── OpenAndXRequest.cs │ │ │ │ ├── OpenAndXResponse.cs │ │ │ │ ├── OpenAndXResponseExtended.cs │ │ │ │ ├── QueryInformationRequest.cs │ │ │ │ ├── QueryInformationResponse.cs │ │ │ │ ├── ReadAndXRequest.cs │ │ │ │ ├── ReadAndXResponse.cs │ │ │ │ ├── ReadRequest.cs │ │ │ │ ├── ReadResponse.cs │ │ │ │ ├── RenameRequest.cs │ │ │ │ ├── RenameResponse.cs │ │ │ │ ├── SMB1Command.cs │ │ │ │ ├── SMBAndXCommand.cs │ │ │ │ ├── SessionSetupAndXRequest.cs │ │ │ │ ├── SessionSetupAndXRequestExtended.cs │ │ │ │ ├── SessionSetupAndXResponse.cs │ │ │ │ ├── SessionSetupAndXResponseExtended.cs │ │ │ │ ├── SetInformation2Request.cs │ │ │ │ ├── SetInformation2Response.cs │ │ │ │ ├── SetInformationRequest.cs │ │ │ │ ├── SetInformationResponse.cs │ │ │ │ ├── Transaction2InterimResponse.cs │ │ │ │ ├── Transaction2Request.cs │ │ │ │ ├── Transaction2Response.cs │ │ │ │ ├── Transaction2SecondaryRequest.cs │ │ │ │ ├── TransactionInterimResponse.cs │ │ │ │ ├── TransactionRequest.cs │ │ │ │ ├── TransactionResponse.cs │ │ │ │ ├── TransactionSecondaryRequest.cs │ │ │ │ ├── TreeConnectAndXRequest.cs │ │ │ │ ├── TreeConnectAndXResponse.cs │ │ │ │ ├── TreeConnectAndXResponseExtended.cs │ │ │ │ ├── TreeDisconnectRequest.cs │ │ │ │ ├── TreeDisconnectResponse.cs │ │ │ │ ├── WriteAndXRequest.cs │ │ │ │ ├── WriteAndXResponse.cs │ │ │ │ ├── WriteRawFinalResponse.cs │ │ │ │ ├── WriteRawInterimResponse.cs │ │ │ │ ├── WriteRawRequest.cs │ │ │ │ ├── WriteRequest.cs │ │ │ │ └── WriteResponse.cs │ │ │ ├── EnumStructures │ │ │ │ ├── NamedPipeStatus.cs │ │ │ │ └── OpenResults.cs │ │ │ ├── Enums │ │ │ │ ├── CommandName.cs │ │ │ │ ├── ExtendedFileAttributes.cs │ │ │ │ ├── HeaderFlags.cs │ │ │ │ ├── HeaderFlags2.cs │ │ │ │ ├── Locking │ │ │ │ │ └── LockType.cs │ │ │ │ ├── NTCreate │ │ │ │ │ ├── FileStatusFlags.cs │ │ │ │ │ ├── NTCreateFlags.cs │ │ │ │ │ ├── OpLockLevel.cs │ │ │ │ │ └── SecurityFlags.cs │ │ │ │ ├── Negotiate │ │ │ │ │ ├── Capabilities.cs │ │ │ │ │ └── SecurityMode.cs │ │ │ │ ├── Open │ │ │ │ │ ├── AccessRights.cs │ │ │ │ │ ├── OpenFlags.cs │ │ │ │ │ └── OpenResult.cs │ │ │ │ ├── ResourceType.cs │ │ │ │ ├── SMBFileAttributes.cs │ │ │ │ ├── SessionSetup │ │ │ │ │ └── SessionSetupAction.cs │ │ │ │ ├── Transaction │ │ │ │ │ └── TransactionFlags.cs │ │ │ │ ├── TreeConnect │ │ │ │ │ ├── OptionalSupportFlags.cs │ │ │ │ │ ├── ServiceName.cs │ │ │ │ │ └── TreeConnectFlags.cs │ │ │ │ └── Write │ │ │ │ │ └── WriteMode.cs │ │ │ ├── NTTransactSubcommands │ │ │ │ ├── Enums │ │ │ │ │ └── NTTransactSubcommandName.cs │ │ │ │ ├── NTTransactCreateRequest.cs │ │ │ │ ├── NTTransactIOCTLRequest.cs │ │ │ │ ├── NTTransactIOCTLResponse.cs │ │ │ │ ├── NTTransactNotifyChangeRequest.cs │ │ │ │ ├── NTTransactNotifyChangeResponse.cs │ │ │ │ ├── NTTransactQuerySecurityDescriptorRequest.cs │ │ │ │ ├── NTTransactQuerySecurityDescriptorResponse.cs │ │ │ │ ├── NTTransactSetSecurityDescriptorRequest.cs │ │ │ │ ├── NTTransactSetSecurityDescriptorResponse.cs │ │ │ │ └── NTTransactSubcommand.cs │ │ │ ├── SMB1Header.cs │ │ │ ├── SMB1Helper.cs │ │ │ ├── SMB1Message.cs │ │ │ ├── ServiceNameHelper.cs │ │ │ ├── Transaction2Subcommands │ │ │ │ ├── EnumStructures │ │ │ │ │ ├── AccessModeOptions.cs │ │ │ │ │ ├── ActionTaken.cs │ │ │ │ │ └── OpenMode.cs │ │ │ │ ├── Enums │ │ │ │ │ ├── FindFlags.cs │ │ │ │ │ ├── Open2Flags.cs │ │ │ │ │ ├── SearchStorageType.cs │ │ │ │ │ └── Transaction2SubcommandName.cs │ │ │ │ ├── Transaction2CreateDirectoryRequest.cs │ │ │ │ ├── Transaction2CreateDirectoryResponse.cs │ │ │ │ ├── Transaction2FindFirst2Request.cs │ │ │ │ ├── Transaction2FindFirst2Response.cs │ │ │ │ ├── Transaction2FindNext2Request.cs │ │ │ │ ├── Transaction2FindNext2Response.cs │ │ │ │ ├── Transaction2GetDfsReferralRequest.cs │ │ │ │ ├── Transaction2GetDfsReferralResponse.cs │ │ │ │ ├── Transaction2Open2Request.cs │ │ │ │ ├── Transaction2Open2Response.cs │ │ │ │ ├── Transaction2QueryFSInformationRequest.cs │ │ │ │ ├── Transaction2QueryFSInformationResponse.cs │ │ │ │ ├── Transaction2QueryFileInformationRequest.cs │ │ │ │ ├── Transaction2QueryFileInformationResponse.cs │ │ │ │ ├── Transaction2QueryPathInformationRequest.cs │ │ │ │ ├── Transaction2QueryPathInformationResponse.cs │ │ │ │ ├── Transaction2SetFSInformationRequest.cs │ │ │ │ ├── Transaction2SetFSInformationResponse.cs │ │ │ │ ├── Transaction2SetFileInformationRequest.cs │ │ │ │ ├── Transaction2SetFileInformationResponse.cs │ │ │ │ ├── Transaction2SetPathInformationRequest.cs │ │ │ │ ├── Transaction2SetPathInformationResponse.cs │ │ │ │ └── Transaction2Subcommand.cs │ │ │ ├── TransactionSubcommands │ │ │ │ ├── Enums │ │ │ │ │ ├── NamedPipeState.cs │ │ │ │ │ ├── PipeState.cs │ │ │ │ │ └── TransactionSubcommandName.cs │ │ │ │ ├── TransactionCallNamedPipeRequest.cs │ │ │ │ ├── TransactionCallNamedPipeResponse.cs │ │ │ │ ├── TransactionPeekNamedPipeRequest.cs │ │ │ │ ├── TransactionPeekNamedPipeResponse.cs │ │ │ │ ├── TransactionQueryNamedPipeInfoRequest.cs │ │ │ │ ├── TransactionQueryNamedPipeInfoResponse.cs │ │ │ │ ├── TransactionQueryNamedPipeStateRequest.cs │ │ │ │ ├── TransactionQueryNamedPipeStateResponse.cs │ │ │ │ ├── TransactionRawReadNamedPipeRequest.cs │ │ │ │ ├── TransactionRawReadNamedPipeResponse.cs │ │ │ │ ├── TransactionRawWriteNamedPipeRequest.cs │ │ │ │ ├── TransactionRawWriteNamedPipeResponse.cs │ │ │ │ ├── TransactionReadNamedPipeRequest.cs │ │ │ │ ├── TransactionReadNamedPipeResponse.cs │ │ │ │ ├── TransactionSetNamedPipeStateRequest.cs │ │ │ │ ├── TransactionSetNamedPipeStateResponse.cs │ │ │ │ ├── TransactionSubcommand.cs │ │ │ │ ├── TransactionTransactNamedPipeRequest.cs │ │ │ │ ├── TransactionTransactNamedPipeResponse.cs │ │ │ │ ├── TransactionWaitNamedPipeRequest.cs │ │ │ │ ├── TransactionWriteNamedPipeRequest.cs │ │ │ │ └── TransactionWriteNamedPipeResponse.cs │ │ │ └── UTimeHelper.cs │ │ ├── SMB1FileStore │ │ │ ├── Enums │ │ │ │ ├── FindInformationLevel.cs │ │ │ │ ├── QueryFSInformationLevel.cs │ │ │ │ ├── QueryInformationLevel.cs │ │ │ │ └── SetInformationLevel.cs │ │ │ ├── Helpers │ │ │ │ ├── FindInformationHelper.cs │ │ │ │ ├── QueryFSInformationHelper.cs │ │ │ │ ├── QueryInformationHelper.cs │ │ │ │ └── SetInformationHelper.cs │ │ │ └── Structures │ │ │ │ ├── ExtendedFileAttributes │ │ │ │ ├── ExtendedAttributeName.cs │ │ │ │ ├── ExtendedAttributeNameList.cs │ │ │ │ ├── FullExtendedAttribute.cs │ │ │ │ └── FullExtendedAttributeList.cs │ │ │ │ ├── FindInformation │ │ │ │ ├── FindFileBothDirectoryInfo.cs │ │ │ │ ├── FindFileDirectoryInfo.cs │ │ │ │ ├── FindFileFullDirectoryInfo.cs │ │ │ │ ├── FindFileIDBothDirectoryInfo.cs │ │ │ │ ├── FindFileIDFullDirectoryInfo.cs │ │ │ │ ├── FindFileNamesInfo.cs │ │ │ │ ├── FindInformation.cs │ │ │ │ └── FindInformationList.cs │ │ │ │ ├── QueryFSInformation │ │ │ │ ├── QueryFSAttibuteInfo.cs │ │ │ │ ├── QueryFSDeviceInfo.cs │ │ │ │ ├── QueryFSInformation.cs │ │ │ │ ├── QueryFSSizeInfo.cs │ │ │ │ └── QueryFSVolumeInfo.cs │ │ │ │ ├── QueryInformation │ │ │ │ ├── QueryFileAllInfo.cs │ │ │ │ ├── QueryFileAltNameInfo.cs │ │ │ │ ├── QueryFileBasicInfo.cs │ │ │ │ ├── QueryFileCompressionInfo.cs │ │ │ │ ├── QueryFileEaInfo.cs │ │ │ │ ├── QueryFileNameInfo.cs │ │ │ │ ├── QueryFileStandardInfo.cs │ │ │ │ ├── QueryFileStreamInfo.cs │ │ │ │ └── QueryInformation.cs │ │ │ │ └── SetInformation │ │ │ │ ├── SetFileAllocationInfo.cs │ │ │ │ ├── SetFileBasicInfo.cs │ │ │ │ ├── SetFileDispositionInfo.cs │ │ │ │ ├── SetFileEndOfFileInfo.cs │ │ │ │ └── SetInformation.cs │ │ ├── SMB2 │ │ │ ├── Commands │ │ │ │ ├── CancelRequest.cs │ │ │ │ ├── ChangeNotifyRequest.cs │ │ │ │ ├── ChangeNotifyResponse.cs │ │ │ │ ├── CloseRequest.cs │ │ │ │ ├── CloseResponse.cs │ │ │ │ ├── CreateRequest.cs │ │ │ │ ├── CreateResponse.cs │ │ │ │ ├── EchoRequest.cs │ │ │ │ ├── EchoResponse.cs │ │ │ │ ├── ErrorResponse.cs │ │ │ │ ├── FlushRequest.cs │ │ │ │ ├── FlushResponse.cs │ │ │ │ ├── IOCtlRequest.cs │ │ │ │ ├── IOCtlResponse.cs │ │ │ │ ├── LockRequest.cs │ │ │ │ ├── LockResponse.cs │ │ │ │ ├── LogoffRequest.cs │ │ │ │ ├── LogoffResponse.cs │ │ │ │ ├── NegotiateRequest.cs │ │ │ │ ├── NegotiateResponse.cs │ │ │ │ ├── QueryDirectoryRequest.cs │ │ │ │ ├── QueryDirectoryResponse.cs │ │ │ │ ├── QueryInfoRequest.cs │ │ │ │ ├── QueryInfoResponse.cs │ │ │ │ ├── ReadRequest.cs │ │ │ │ ├── ReadResponse.cs │ │ │ │ ├── SMB2Command.cs │ │ │ │ ├── SessionSetupRequest.cs │ │ │ │ ├── SessionSetupResponse.cs │ │ │ │ ├── SetInfoRequest.cs │ │ │ │ ├── SetInfoResponse.cs │ │ │ │ ├── TreeConnectRequest.cs │ │ │ │ ├── TreeConnectResponse.cs │ │ │ │ ├── TreeDisconnectRequest.cs │ │ │ │ ├── TreeDisconnectResponse.cs │ │ │ │ ├── WriteRequest.cs │ │ │ │ └── WriteResponse.cs │ │ │ ├── Enums │ │ │ │ ├── ChangeNotify │ │ │ │ │ └── ChangeNotifyFlags.cs │ │ │ │ ├── Close │ │ │ │ │ └── CloseFlags.cs │ │ │ │ ├── Create │ │ │ │ │ ├── CreateAction.cs │ │ │ │ │ ├── CreateResponseFlags.cs │ │ │ │ │ └── OplockLevel.cs │ │ │ │ ├── IOCtl │ │ │ │ │ └── IOCtlRequestFlags.cs │ │ │ │ ├── InfoType.cs │ │ │ │ ├── Negotiate │ │ │ │ │ ├── Capabilities.cs │ │ │ │ │ ├── NegotiateContextType.cs │ │ │ │ │ ├── SMB2Dialect.cs │ │ │ │ │ └── SecurityMode.cs │ │ │ │ ├── QueryDirectory │ │ │ │ │ └── QueryDirectoryFlags.cs │ │ │ │ ├── Read │ │ │ │ │ └── ReadFlags.cs │ │ │ │ ├── SMB2CommandName.cs │ │ │ │ ├── SMB2PacketHeaderFlags.cs │ │ │ │ ├── SMB2TransformHeaderFlags.cs │ │ │ │ ├── SessionSetup │ │ │ │ │ ├── SessionFlags.cs │ │ │ │ │ └── SessionSetupFlags.cs │ │ │ │ ├── TreeConnect │ │ │ │ │ ├── ShareCapabilities.cs │ │ │ │ │ ├── ShareFlags.cs │ │ │ │ │ └── ShareType.cs │ │ │ │ └── Write │ │ │ │ │ └── WriteFlags.cs │ │ │ ├── SMB2Cryptography.cs │ │ │ ├── SMB2Header.cs │ │ │ ├── SMB2TransformHeader.cs │ │ │ └── Structures │ │ │ │ ├── CreateContext.cs │ │ │ │ ├── Enums │ │ │ │ └── LockFlags.cs │ │ │ │ ├── FileID.cs │ │ │ │ ├── LockElement.cs │ │ │ │ └── NegotiateContext.cs │ │ ├── Server │ │ │ ├── ConnectionManager.cs │ │ │ ├── ConnectionRequestEventArgs.cs │ │ │ ├── ConnectionState │ │ │ │ ├── ConnectionState.cs │ │ │ │ ├── OpenFileObject.cs │ │ │ │ ├── OpenSearch.cs │ │ │ │ ├── ProcessStateObject.cs │ │ │ │ ├── SMB1AsyncContext.cs │ │ │ │ ├── SMB1ConnectionState.cs │ │ │ │ ├── SMB1Session.cs │ │ │ │ ├── SMB2AsyncContext.cs │ │ │ │ ├── SMB2ConnectionState.cs │ │ │ │ ├── SMB2Session.cs │ │ │ │ └── SecurityContext.cs │ │ │ ├── Enums │ │ │ │ └── SMBDialect.cs │ │ │ ├── Helpers │ │ │ │ └── ServerPathUtils.cs │ │ │ ├── Information │ │ │ │ ├── OpenFileInformation.cs │ │ │ │ └── SessionInformation.cs │ │ │ ├── NameServer.cs │ │ │ ├── SMB1 │ │ │ │ ├── CancelHelper.cs │ │ │ │ ├── CloseHelper.cs │ │ │ │ ├── EchoHelper.cs │ │ │ │ ├── FileStoreResponseHelper.cs │ │ │ │ ├── LockingHelper.cs │ │ │ │ ├── NTCreateHelper.cs │ │ │ │ ├── NTTransactHelper.cs │ │ │ │ ├── NegotiateHelper.cs │ │ │ │ ├── NotifyChangeHelper.cs │ │ │ │ ├── OpenAndXHelper.cs │ │ │ │ ├── ReadWriteResponseHelper.cs │ │ │ │ ├── SMB1FileStoreHelper.Query.cs │ │ │ │ ├── SMB1FileStoreHelper.QueryDirectory.cs │ │ │ │ ├── SMB1FileStoreHelper.QueryFileSystem.cs │ │ │ │ ├── SMB1FileStoreHelper.Set.cs │ │ │ │ ├── SMB1FileStoreHelper.cs │ │ │ │ ├── SessionSetupHelper.cs │ │ │ │ ├── Transaction2SubcommandHelper.cs │ │ │ │ ├── TransactionHelper.cs │ │ │ │ ├── TransactionSubcommandHelper.cs │ │ │ │ └── TreeConnectHelper.cs │ │ │ ├── SMB2 │ │ │ │ ├── CancelHelper.cs │ │ │ │ ├── ChangeNotifyHelper.cs │ │ │ │ ├── CloseHelper.cs │ │ │ │ ├── CreateHelper.cs │ │ │ │ ├── EchoHelper.cs │ │ │ │ ├── IOCtlHelper.cs │ │ │ │ ├── LockHelper.cs │ │ │ │ ├── NegotiateHelper.cs │ │ │ │ ├── QueryDirectoryHelper.cs │ │ │ │ ├── QueryInfoHelper.cs │ │ │ │ ├── ReadWriteResponseHelper.cs │ │ │ │ ├── SessionSetupHelper.cs │ │ │ │ ├── SetInfoHelper.cs │ │ │ │ └── TreeConnectHelper.cs │ │ │ ├── SMBServer.SMB1.cs │ │ │ ├── SMBServer.SMB2.cs │ │ │ ├── SMBServer.cs │ │ │ └── Shares │ │ │ │ ├── AccessRequestArgs.cs │ │ │ │ ├── Enums │ │ │ │ └── CachingPolicy.cs │ │ │ │ ├── FileSystemShare.cs │ │ │ │ ├── ISMBShare.cs │ │ │ │ ├── NamedPipeShare.cs │ │ │ │ └── SMBShareCollection.cs │ │ ├── Services │ │ │ ├── Enums │ │ │ │ └── PlatformName.cs │ │ │ ├── Exceptions │ │ │ │ └── UnsupportedOpNumException.cs │ │ │ ├── RPCPipeStream.cs │ │ │ ├── RemoteService.cs │ │ │ ├── RemoteServiceHelper.cs │ │ │ ├── ServerService │ │ │ │ ├── EnumStructures │ │ │ │ │ └── ShareTypeExtended.cs │ │ │ │ ├── Enums │ │ │ │ │ ├── Permissions.cs │ │ │ │ │ ├── ServerServiceOpName.cs │ │ │ │ │ └── ServerType.cs │ │ │ │ ├── NetrServerGetInfoRequest.cs │ │ │ │ ├── NetrServerGetInfoResponse.cs │ │ │ │ ├── NetrShareEnumRequest.cs │ │ │ │ ├── NetrShareEnumResponse.cs │ │ │ │ ├── NetrShareGetInfoRequest.cs │ │ │ │ ├── NetrShareGetInfoResponse.cs │ │ │ │ ├── ServerService.cs │ │ │ │ └── Structures │ │ │ │ │ ├── ServerInfo │ │ │ │ │ ├── ServerInfo.cs │ │ │ │ │ ├── ServerInfo100.cs │ │ │ │ │ ├── ServerInfo101.cs │ │ │ │ │ └── ServerInfoLevel.cs │ │ │ │ │ └── ShareInfo │ │ │ │ │ ├── IShareInfoContainer.cs │ │ │ │ │ ├── IShareInfoEntry.cs │ │ │ │ │ ├── ShareEnum.cs │ │ │ │ │ ├── ShareInfo.cs │ │ │ │ │ ├── ShareInfo0Container.cs │ │ │ │ │ ├── ShareInfo0Entry.cs │ │ │ │ │ ├── ShareInfo1Container.cs │ │ │ │ │ ├── ShareInfo1Entry.cs │ │ │ │ │ ├── ShareInfo2Container.cs │ │ │ │ │ ├── ShareInfo2Entry.cs │ │ │ │ │ └── ShareInfo502Entry.cs │ │ │ └── WorkstationService │ │ │ │ ├── Enums │ │ │ │ └── WorkstationServiceOpName.cs │ │ │ │ ├── NetrWkstaGetInfoRequest.cs │ │ │ │ ├── NetrWkstaGetInfoResponse.cs │ │ │ │ ├── Structures │ │ │ │ ├── WorkstationInfo.cs │ │ │ │ ├── WorkstationInfo100.cs │ │ │ │ ├── WorkstationInfo101.cs │ │ │ │ └── WorkstationInfoLevel.cs │ │ │ │ └── WorkstationService.cs │ │ └── Utilities │ │ │ ├── LogEntry.cs │ │ │ └── SocketUtils.cs │ └── Utilities │ │ ├── ByteUtils │ │ ├── BigEndianReader.cs │ │ ├── BigEndianWriter.cs │ │ ├── ByteReader.cs │ │ ├── ByteUtils.cs │ │ ├── ByteWriter.cs │ │ ├── LittleEndianReader.cs │ │ └── LittleEndianWriter.cs │ │ ├── Comparers │ │ └── ReverseComparer.cs │ │ ├── Conversion │ │ ├── BigEndianConverter.cs │ │ ├── Conversion.SimpleTypes.cs │ │ └── LittleEndianConverter.cs │ │ ├── Cryptography │ │ ├── AesCcm.cs │ │ ├── AesCmac.cs │ │ └── CRC32.cs │ │ ├── Generics │ │ ├── BlockingQueue.cs │ │ ├── KeyValuePairList.Sort.cs │ │ ├── KeyValuePairList.cs │ │ ├── Map.cs │ │ ├── Reference.cs │ │ └── SortedList.cs │ │ ├── Strings │ │ └── QuotedStringUtils.cs │ │ └── Threading │ │ ├── CountdownLatch.cs │ │ └── Parallel.cs │ ├── Spoofing │ ├── HttpServer.cs │ ├── LLMNR.cs │ ├── UDP.cs │ └── Util.cs │ ├── obj │ └── Release │ │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── KrbRelay.csproj.FileListAbsolute.txt │ └── packages.config ├── sharp ├── args │ ├── ArgumentParser.cs │ ├── ArgumentParserResult.cs │ ├── CommandCollection.cs │ └── Info.cs ├── commands │ ├── ICommand.cs │ ├── KerberosSpray.cs │ ├── KerberosTgtdeleg.cs │ ├── NtlmCim.cs │ ├── NtlmLdap.cs │ ├── NtlmReg32.cs │ ├── NtlmSmb.cs │ ├── NtlmWinrm.cs │ ├── kerberosLdap.cs │ ├── kerberosReg32.cs │ ├── kerberosSmb.cs │ └── kerberosWinrm.cs ├── helpers │ ├── AmsiFail.cs │ ├── Impersonator.cs │ ├── Jea.cs │ ├── JeaRules.ps1 │ ├── Misc.cs │ ├── PsFunction.cs │ ├── SecurityContext.cs │ └── Tasks.cs ├── packages.config ├── program.cs ├── projects │ ├── HiveParser │ │ ├── Crypto.cs │ │ ├── LsaSecret.cs │ │ ├── NL_Record.cs │ │ ├── NodeKey.cs │ │ ├── Registry.cs │ │ ├── RegistryHive.cs │ │ └── ValueKey.cs │ ├── MiniDump │ │ ├── Crypto │ │ │ ├── BCrypt.cs │ │ │ └── Crypto.cs │ │ ├── Decryptor │ │ │ ├── Cloudap_.cs │ │ │ ├── Credman.cs │ │ │ ├── Dpapi_.cs │ │ │ ├── KerberosSessions.cs │ │ │ ├── Kerberos_.cs │ │ │ ├── LiveSsp_.cs │ │ │ ├── LogonSessions.cs │ │ │ ├── Msv1_.cs │ │ │ ├── Rdp_.cs │ │ │ ├── Ssp_.cs │ │ │ ├── Tspkg_.cs │ │ │ ├── WDigest_.cs │ │ │ ├── lsadecryptor_lsa_decryptor.cs │ │ │ ├── lsadecryptor_lsa_decryptor_nt5.cs │ │ │ └── lsadecryptor_lsa_decryptor_nt6.cs │ │ ├── Helpers.cs │ │ ├── Program.cs │ │ ├── Streams │ │ │ ├── Directory.cs │ │ │ ├── Header.cs │ │ │ ├── Memory64ListStream.cs │ │ │ ├── Memory86ListStream.cs │ │ │ ├── MinidumpMemory.cs │ │ │ ├── ModuleList.cs │ │ │ ├── Parse.cs │ │ │ └── SystemInfo.cs │ │ └── Templates │ │ │ ├── cloudap_templates.cs │ │ │ ├── credman_templates.cs │ │ │ ├── dpapi_templates.cs │ │ │ ├── kerberos_templates.cs │ │ │ ├── livessp_templates.cs │ │ │ ├── lsa_template_nt6.cs │ │ │ ├── lsa_templates.cs │ │ │ ├── msv_templates.cs │ │ │ ├── rdp_templates.cs │ │ │ ├── ssp_templates.cs │ │ │ ├── tspkg_templates.cs │ │ │ └── wdigest_templates.cs │ ├── Rubeus │ │ └── Asn1 │ │ │ ├── Asn1Extensions.cs │ │ │ ├── AsnElt.cs │ │ │ ├── AsnException.cs │ │ │ ├── AsnIO.cs │ │ │ └── AsnOID.cs │ ├── SharpDPAPI │ │ └── SharpDPAPI.cs │ └── SharpKatz │ │ ├── Credential │ │ └── Credential.cs │ │ ├── Crypto │ │ └── BCrypt.cs │ │ ├── Keys.cs │ │ ├── Module │ │ ├── Kerberos.cs │ │ ├── LogonSessions.cs │ │ ├── Msv1.cs │ │ ├── Pth.cs │ │ ├── Ptp.cs │ │ └── Tspkg.cs │ │ ├── OSVersionHelper.cs │ │ ├── Utility.cs │ │ ├── Win32 │ │ ├── CustomLoadLibrary.cs │ │ ├── Natives.cs │ │ └── Syscall.cs │ │ └── WinBuild │ │ ├── IWinBuild.cs │ │ ├── WinBuild1507.cs │ │ ├── WinBuild1511.cs │ │ ├── WinBuild1607.cs │ │ ├── WinBuild1703.cs │ │ ├── WinBuild1803.cs │ │ ├── WinBuild1809.cs │ │ ├── WinBuild1903.cs │ │ └── WinBuild2004.cs ├── properties │ └── AssemblyInfo.cs ├── sharp.csproj ├── sharp.sln └── sharp.user ├── shell.nix └── tests ├── README.md ├── data ├── test_amsi_bypass.txt ├── test_file.txt ├── test_hashes.txt ├── test_key.priv ├── test_passwords.txt └── test_users.txt ├── e2e_commands.txt ├── e2e_tests.py └── test_smb_database.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build-binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/.github/workflows/build-binaries.yml -------------------------------------------------------------------------------- /.github/workflows/build-zipapps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/.github/workflows/build-zipapps.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/README.md -------------------------------------------------------------------------------- /exten/C2API/Requests/AuthenticationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Requests/AuthenticationRequest.cs -------------------------------------------------------------------------------- /exten/C2API/Requests/ExtHandlerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Requests/ExtHandlerRequest.cs -------------------------------------------------------------------------------- /exten/C2API/Requests/HostedFileRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Requests/HostedFileRequest.cs -------------------------------------------------------------------------------- /exten/C2API/Requests/HttpHandlerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Requests/HttpHandlerRequest.cs -------------------------------------------------------------------------------- /exten/C2API/Requests/ReversePortForwardRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Requests/ReversePortForwardRequest.cs -------------------------------------------------------------------------------- /exten/C2API/Requests/SmbHandlerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Requests/SmbHandlerRequest.cs -------------------------------------------------------------------------------- /exten/C2API/Requests/SocksRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Requests/SocksRequest.cs -------------------------------------------------------------------------------- /exten/C2API/Requests/TaskRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Requests/TaskRequest.cs -------------------------------------------------------------------------------- /exten/C2API/Requests/TcpHandlerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Requests/TcpHandlerRequest.cs -------------------------------------------------------------------------------- /exten/C2API/Requests/WebhookRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Requests/WebhookRequest.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/AuthenticationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/AuthenticationResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/C2ProfileResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/C2ProfileResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/DroneResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/DroneResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/ExtHandlerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/ExtHandlerResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/HostedFileEventResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/HostedFileEventResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/HostedFileResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/HostedFileResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/HttpHandlerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/HttpHandlerResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/SmbHandlerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/SmbHandlerResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/SocksResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/SocksResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/TaskRecordResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/TaskRecordResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/TcpHandlerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/TcpHandlerResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/UserAuthEventResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/UserAuthEventResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/WebLogEventResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/WebLogEventResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Responses/WebhookResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Responses/WebhookResponse.cs -------------------------------------------------------------------------------- /exten/C2API/Routes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/Routes.cs -------------------------------------------------------------------------------- /exten/C2API/SharpC2.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/C2API/SharpC2.API.csproj -------------------------------------------------------------------------------- /exten/Client/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/App.xaml -------------------------------------------------------------------------------- /exten/Client/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/App.xaml.cs -------------------------------------------------------------------------------- /exten/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Client.csproj -------------------------------------------------------------------------------- /exten/Client/Commands/Core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Commands/Core.yaml -------------------------------------------------------------------------------- /exten/Client/Commands/Enumeration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Commands/Enumeration.yaml -------------------------------------------------------------------------------- /exten/Client/Commands/Execution.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Commands/Execution.yaml -------------------------------------------------------------------------------- /exten/Client/Commands/Injection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Commands/Injection.yaml -------------------------------------------------------------------------------- /exten/Client/Commands/Lateral.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Commands/Lateral.yaml -------------------------------------------------------------------------------- /exten/Client/Commands/Tokens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Commands/Tokens.yaml -------------------------------------------------------------------------------- /exten/Client/Components/Events/AuthEvents.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Components/Events/AuthEvents.razor -------------------------------------------------------------------------------- /exten/Client/Components/Events/WebLogs.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Components/Events/WebLogs.razor -------------------------------------------------------------------------------- /exten/Client/Components/Handlers/HostAFile.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Components/Handlers/HostAFile.razor -------------------------------------------------------------------------------- /exten/Client/Components/Tasks/TaskInput.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Components/Tasks/TaskInput.razor -------------------------------------------------------------------------------- /exten/Client/Main.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Main.razor -------------------------------------------------------------------------------- /exten/Client/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/MainPage.xaml -------------------------------------------------------------------------------- /exten/Client/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/MainPage.xaml.cs -------------------------------------------------------------------------------- /exten/Client/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/MauiProgram.cs -------------------------------------------------------------------------------- /exten/Client/Models/DroneCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/DroneCommand.cs -------------------------------------------------------------------------------- /exten/Client/Models/Drones/Drone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Drones/Drone.cs -------------------------------------------------------------------------------- /exten/Client/Models/Drones/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Drones/Metadata.cs -------------------------------------------------------------------------------- /exten/Client/Models/Events/SharpC2Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Events/SharpC2Event.cs -------------------------------------------------------------------------------- /exten/Client/Models/Events/UserAuthEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Events/UserAuthEvent.cs -------------------------------------------------------------------------------- /exten/Client/Models/Events/WebLogEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Events/WebLogEvent.cs -------------------------------------------------------------------------------- /exten/Client/Models/Handlers/C2Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Handlers/C2Profile.cs -------------------------------------------------------------------------------- /exten/Client/Models/Handlers/ExtHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Handlers/ExtHandler.cs -------------------------------------------------------------------------------- /exten/Client/Models/Handlers/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Handlers/Handler.cs -------------------------------------------------------------------------------- /exten/Client/Models/Handlers/HostedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Handlers/HostedFile.cs -------------------------------------------------------------------------------- /exten/Client/Models/Handlers/HttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Handlers/HttpHandler.cs -------------------------------------------------------------------------------- /exten/Client/Models/Handlers/SmbHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Handlers/SmbHandler.cs -------------------------------------------------------------------------------- /exten/Client/Models/Handlers/TcpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Handlers/TcpHandler.cs -------------------------------------------------------------------------------- /exten/Client/Models/Pivots/ReversePortForward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Pivots/ReversePortForward.cs -------------------------------------------------------------------------------- /exten/Client/Models/Pivots/SocksProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Pivots/SocksProxy.cs -------------------------------------------------------------------------------- /exten/Client/Models/Tasks/DirectoryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Tasks/DirectoryEntry.cs -------------------------------------------------------------------------------- /exten/Client/Models/Tasks/ProcessEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Tasks/ProcessEntry.cs -------------------------------------------------------------------------------- /exten/Client/Models/Tasks/TaskRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Tasks/TaskRecord.cs -------------------------------------------------------------------------------- /exten/Client/Models/Webhooks/SharpC2Webhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Models/Webhooks/SharpC2Webhook.cs -------------------------------------------------------------------------------- /exten/Client/Pages/Drones.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Pages/Drones.razor -------------------------------------------------------------------------------- /exten/Client/Pages/Events.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Pages/Events.razor -------------------------------------------------------------------------------- /exten/Client/Pages/Handlers.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Pages/Handlers.razor -------------------------------------------------------------------------------- /exten/Client/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Pages/Index.razor -------------------------------------------------------------------------------- /exten/Client/Pages/Interact.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Pages/Interact.razor -------------------------------------------------------------------------------- /exten/Client/Pages/Payloads.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Pages/Payloads.razor -------------------------------------------------------------------------------- /exten/Client/Pages/Pivots.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Pages/Pivots.razor -------------------------------------------------------------------------------- /exten/Client/Pages/Webhooks.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Pages/Webhooks.razor -------------------------------------------------------------------------------- /exten/Client/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /exten/Client/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /exten/Client/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /exten/Client/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /exten/Client/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /exten/Client/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /exten/Client/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /exten/Client/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /exten/Client/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /exten/Client/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /exten/Client/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /exten/Client/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /exten/Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /exten/Client/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /exten/Client/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /exten/Client/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /exten/Client/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /exten/Client/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /exten/Client/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /exten/Client/Services/CommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Services/CommandService.cs -------------------------------------------------------------------------------- /exten/Client/Services/SharpC2Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Services/SharpC2Api.cs -------------------------------------------------------------------------------- /exten/Client/Services/SharpC2Hub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Services/SharpC2Hub.cs -------------------------------------------------------------------------------- /exten/Client/Shared/AuthenticationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Shared/AuthenticationProvider.cs -------------------------------------------------------------------------------- /exten/Client/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Shared/MainLayout.razor -------------------------------------------------------------------------------- /exten/Client/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Shared/NavMenu.razor -------------------------------------------------------------------------------- /exten/Client/Shared/RedirectToLogin.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Shared/RedirectToLogin.razor -------------------------------------------------------------------------------- /exten/Client/Utilities/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/Utilities/Extensions.cs -------------------------------------------------------------------------------- /exten/Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Client/_Imports.razor -------------------------------------------------------------------------------- /exten/Drone/CommModules/CommModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/CommModules/CommModule.cs -------------------------------------------------------------------------------- /exten/Drone/CommModules/ExtCommModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/CommModules/ExtCommModule.cs -------------------------------------------------------------------------------- /exten/Drone/CommModules/HttpCommModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/CommModules/HttpCommModule.cs -------------------------------------------------------------------------------- /exten/Drone/CommModules/IpcCommModule.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exten/Drone/CommModules/SmbCommModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/CommModules/SmbCommModule.cs -------------------------------------------------------------------------------- /exten/Drone/CommModules/TcpCommModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/CommModules/TcpCommModule.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/ChangeDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/ChangeDirectory.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/Connect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/Connect.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/DcomCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/DcomCommand.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/DroneCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/DroneCommand.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/ExecuteAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/ExecuteAssembly.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/KillProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/KillProcess.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/Link.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/ListDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/ListDirectory.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/ListProcesses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/ListProcesses.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/MakeDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/MakeDirectory.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/MakeToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/MakeToken.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/PowerShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/PowerShell.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/PowerShellImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/PowerShellImport.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/PrintWorkingDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/PrintWorkingDirectory.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/PsExecCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/PsExecCommand.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/ReadFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/ReadFile.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/RemoveDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/RemoveDirectory.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/RemoveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/RemoveFile.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/RevToSelf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/RevToSelf.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/Run.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/Run.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/RunAs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/RunAs.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/RunPe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/RunPe.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/SetSleep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/SetSleep.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/ShInject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/ShInject.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/ShSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/ShSpawn.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/Shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/Shell.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/StealToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/StealToken.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/StopDrone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/StopDrone.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/TakeScreenshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/TakeScreenshot.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/UploadFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/UploadFile.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/WhoAmI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/WhoAmI.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/WinRmCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/WinRmCommand.cs -------------------------------------------------------------------------------- /exten/Drone/Commands/WmiCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Commands/WmiCommand.cs -------------------------------------------------------------------------------- /exten/Drone/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Config.cs -------------------------------------------------------------------------------- /exten/Drone/Drone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Drone.cs -------------------------------------------------------------------------------- /exten/Drone/Drone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Drone.csproj -------------------------------------------------------------------------------- /exten/Drone/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Global.cs -------------------------------------------------------------------------------- /exten/Drone/Interop/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Interop/Data.cs -------------------------------------------------------------------------------- /exten/Drone/Interop/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Interop/Delegates.cs -------------------------------------------------------------------------------- /exten/Drone/Interop/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Interop/Methods.cs -------------------------------------------------------------------------------- /exten/Drone/Messages/C2Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Messages/C2Frame.cs -------------------------------------------------------------------------------- /exten/Drone/Messages/DirectoryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Messages/DirectoryEntry.cs -------------------------------------------------------------------------------- /exten/Drone/Messages/DroneTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Messages/DroneTask.cs -------------------------------------------------------------------------------- /exten/Drone/Messages/LinkNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Messages/LinkNotification.cs -------------------------------------------------------------------------------- /exten/Drone/Messages/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Messages/Metadata.cs -------------------------------------------------------------------------------- /exten/Drone/Messages/ProcessEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Messages/ProcessEntry.cs -------------------------------------------------------------------------------- /exten/Drone/Messages/ReversePortForwardPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Messages/ReversePortForwardPacket.cs -------------------------------------------------------------------------------- /exten/Drone/Messages/Socks4ConnectRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Messages/Socks4ConnectRequest.cs -------------------------------------------------------------------------------- /exten/Drone/Messages/Socks4Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Messages/Socks4Packet.cs -------------------------------------------------------------------------------- /exten/Drone/Messages/TaskOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Messages/TaskOutput.cs -------------------------------------------------------------------------------- /exten/Drone/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Program.cs -------------------------------------------------------------------------------- /exten/Drone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /exten/Drone/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/System.Management.Automation.dll -------------------------------------------------------------------------------- /exten/Drone/Utilities/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Utilities/Crypto.cs -------------------------------------------------------------------------------- /exten/Drone/Utilities/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Utilities/Extensions.cs -------------------------------------------------------------------------------- /exten/Drone/Utilities/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Utilities/Helpers.cs -------------------------------------------------------------------------------- /exten/Drone/Utilities/PELoader/ArgumentHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Utilities/PELoader/ArgumentHandler.cs -------------------------------------------------------------------------------- /exten/Drone/Utilities/PELoader/ExitPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Utilities/PELoader/ExitPatcher.cs -------------------------------------------------------------------------------- /exten/Drone/Utilities/PELoader/ExtraAPIPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Utilities/PELoader/ExtraAPIPatcher.cs -------------------------------------------------------------------------------- /exten/Drone/Utilities/PELoader/ImportResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Utilities/PELoader/ImportResolver.cs -------------------------------------------------------------------------------- /exten/Drone/Utilities/PELoader/PeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Utilities/PELoader/PeLoader.cs -------------------------------------------------------------------------------- /exten/Drone/Utilities/PELoader/PeMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Utilities/PELoader/PeMapper.cs -------------------------------------------------------------------------------- /exten/Drone/Utilities/PowerShellRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Utilities/PowerShellRunner.cs -------------------------------------------------------------------------------- /exten/Drone/Utilities/ReversePortForwardState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Utilities/ReversePortForwardState.cs -------------------------------------------------------------------------------- /exten/Drone/Utilities/TransactedAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/Utilities/TransactedAssembly.cs -------------------------------------------------------------------------------- /exten/Drone/dnMerge.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/dnMerge.config -------------------------------------------------------------------------------- /exten/Drone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Drone/packages.config -------------------------------------------------------------------------------- /exten/ExternalC2/DemoClient/DemoClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/ExternalC2/DemoClient/DemoClient.csproj -------------------------------------------------------------------------------- /exten/ExternalC2/DemoClient/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/ExternalC2/DemoClient/Extensions.cs -------------------------------------------------------------------------------- /exten/ExternalC2/DemoClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/ExternalC2/DemoClient/Program.cs -------------------------------------------------------------------------------- /exten/ExternalC2/DemoController/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/ExternalC2/DemoController/Extensions.cs -------------------------------------------------------------------------------- /exten/ExternalC2/DemoController/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/ExternalC2/DemoController/Program.cs -------------------------------------------------------------------------------- /exten/Stagers/ExeStager/ExeStager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Stagers/ExeStager/ExeStager.csproj -------------------------------------------------------------------------------- /exten/Stagers/ExeStager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Stagers/ExeStager/Program.cs -------------------------------------------------------------------------------- /exten/Stagers/SvcStager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Stagers/SvcStager/App.config -------------------------------------------------------------------------------- /exten/Stagers/SvcStager/DroneService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Stagers/SvcStager/DroneService.Designer.cs -------------------------------------------------------------------------------- /exten/Stagers/SvcStager/DroneService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Stagers/SvcStager/DroneService.cs -------------------------------------------------------------------------------- /exten/Stagers/SvcStager/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Stagers/SvcStager/Helpers.cs -------------------------------------------------------------------------------- /exten/Stagers/SvcStager/Interop/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Stagers/SvcStager/Interop/Data.cs -------------------------------------------------------------------------------- /exten/Stagers/SvcStager/Interop/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Stagers/SvcStager/Interop/Delegates.cs -------------------------------------------------------------------------------- /exten/Stagers/SvcStager/Interop/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Stagers/SvcStager/Interop/Methods.cs -------------------------------------------------------------------------------- /exten/Stagers/SvcStager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Stagers/SvcStager/Program.cs -------------------------------------------------------------------------------- /exten/Stagers/SvcStager/SvcStager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Stagers/SvcStager/SvcStager.csproj -------------------------------------------------------------------------------- /exten/Stagers/SvcStager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/Stagers/SvcStager/packages.config -------------------------------------------------------------------------------- /exten/TeamServer/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/.dockerignore -------------------------------------------------------------------------------- /exten/TeamServer/C2Profiles/C2Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/C2Profiles/C2Profile.cs -------------------------------------------------------------------------------- /exten/TeamServer/C2Profiles/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/C2Profiles/default.yaml -------------------------------------------------------------------------------- /exten/TeamServer/Controllers/DronesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Controllers/DronesController.cs -------------------------------------------------------------------------------- /exten/TeamServer/Controllers/EventsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Controllers/EventsController.cs -------------------------------------------------------------------------------- /exten/TeamServer/Controllers/PivotsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Controllers/PivotsController.cs -------------------------------------------------------------------------------- /exten/TeamServer/Controllers/TasksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Controllers/TasksController.cs -------------------------------------------------------------------------------- /exten/TeamServer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Dockerfile -------------------------------------------------------------------------------- /exten/TeamServer/Drones/Drone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Drones/Drone.cs -------------------------------------------------------------------------------- /exten/TeamServer/Drones/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Drones/Metadata.cs -------------------------------------------------------------------------------- /exten/TeamServer/Events/SharpC2Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Events/SharpC2Event.cs -------------------------------------------------------------------------------- /exten/TeamServer/Events/UserAuthEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Events/UserAuthEvent.cs -------------------------------------------------------------------------------- /exten/TeamServer/Events/WebLogEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Events/WebLogEvent.cs -------------------------------------------------------------------------------- /exten/TeamServer/Filters/InjectionFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Filters/InjectionFilters.cs -------------------------------------------------------------------------------- /exten/TeamServer/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Global.cs -------------------------------------------------------------------------------- /exten/TeamServer/Handlers/ExtHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Handlers/ExtHandler.cs -------------------------------------------------------------------------------- /exten/TeamServer/Handlers/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Handlers/Handler.cs -------------------------------------------------------------------------------- /exten/TeamServer/Handlers/HostedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Handlers/HostedFile.cs -------------------------------------------------------------------------------- /exten/TeamServer/Handlers/HttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Handlers/HttpHandler.cs -------------------------------------------------------------------------------- /exten/TeamServer/Handlers/SmbHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Handlers/SmbHandler.cs -------------------------------------------------------------------------------- /exten/TeamServer/Handlers/TcpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Handlers/TcpHandler.cs -------------------------------------------------------------------------------- /exten/TeamServer/Hubs/INotificationHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Hubs/INotificationHub.cs -------------------------------------------------------------------------------- /exten/TeamServer/Hubs/NotificationHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Hubs/NotificationHub.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/ICryptoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/ICryptoService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/IDatabaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/IDatabaseService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/IDroneService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/IDroneService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/IEventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/IEventService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/IHandlerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/IHandlerService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/IPayloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/IPayloadService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/IPeerToPeerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/IPeerToPeerService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/IProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/IProfileService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/IServerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/IServerModule.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/IServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/IServerService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/ISocksService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/ISocksService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/ITaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/ITaskService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Interfaces/IWebhookService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Interfaces/IWebhookService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Messages/C2Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Messages/C2Frame.cs -------------------------------------------------------------------------------- /exten/TeamServer/Messages/DroneTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Messages/DroneTask.cs -------------------------------------------------------------------------------- /exten/TeamServer/Messages/LinkNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Messages/LinkNotification.cs -------------------------------------------------------------------------------- /exten/TeamServer/Messages/Socks4ConnectRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Messages/Socks4ConnectRequest.cs -------------------------------------------------------------------------------- /exten/TeamServer/Messages/Socks4Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Messages/Socks4Data.cs -------------------------------------------------------------------------------- /exten/TeamServer/Messages/Socks4Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Messages/Socks4Packet.cs -------------------------------------------------------------------------------- /exten/TeamServer/Messages/TaskOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Messages/TaskOutput.cs -------------------------------------------------------------------------------- /exten/TeamServer/Middleware/WebLogMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Middleware/WebLogMiddleware.cs -------------------------------------------------------------------------------- /exten/TeamServer/Modules/CheckInModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Modules/CheckInModule.cs -------------------------------------------------------------------------------- /exten/TeamServer/Modules/ExitModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Modules/ExitModule.cs -------------------------------------------------------------------------------- /exten/TeamServer/Modules/LinkModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Modules/LinkModule.cs -------------------------------------------------------------------------------- /exten/TeamServer/Modules/ServerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Modules/ServerModule.cs -------------------------------------------------------------------------------- /exten/TeamServer/Modules/SocksModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Modules/SocksModule.cs -------------------------------------------------------------------------------- /exten/TeamServer/Modules/TaskOutputModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Modules/TaskOutputModule.cs -------------------------------------------------------------------------------- /exten/TeamServer/Modules/UnlinkModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Modules/UnlinkModule.cs -------------------------------------------------------------------------------- /exten/TeamServer/Pivots/ReversePortForward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Pivots/ReversePortForward.cs -------------------------------------------------------------------------------- /exten/TeamServer/Pivots/SocksProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Pivots/SocksProxy.cs -------------------------------------------------------------------------------- /exten/TeamServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Program.cs -------------------------------------------------------------------------------- /exten/TeamServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /exten/TeamServer/Resources/drone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Resources/drone.dll -------------------------------------------------------------------------------- /exten/TeamServer/Resources/exe_stager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Resources/exe_stager.exe -------------------------------------------------------------------------------- /exten/TeamServer/Resources/stager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Resources/stager.ps1 -------------------------------------------------------------------------------- /exten/TeamServer/Resources/svc_stager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Resources/svc_stager.exe -------------------------------------------------------------------------------- /exten/TeamServer/Services/CryptoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/CryptoService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Services/DatabaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/DatabaseService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Services/DroneService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/DroneService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Services/EventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/EventService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Services/HandlerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/HandlerService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Services/HostedFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/HostedFileService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Services/PayloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/PayloadService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Services/PeerToPeerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/PeerToPeerService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Services/ProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/ProfileService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Services/ServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/ServerService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Services/SocksService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/SocksService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Services/TaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/TaskService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Services/WebhookService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Services/WebhookService.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/CryptoDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/CryptoDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/CustomWebhookDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/CustomWebhookDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/DroneDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/DroneDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/ExtHandlerDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/ExtHandlerDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/HostedFileDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/HostedFileDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/HttpHandlerDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/HttpHandlerDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/ReversePortForwardDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/ReversePortForwardDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/SlackWebhookDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/SlackWebhookDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/SmbHandlerDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/SmbHandlerDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/SocksDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/SocksDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/TaskRecordDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/TaskRecordDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/TcpHandlerDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/TcpHandlerDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/UserAuthDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/UserAuthDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Storage/WebLogDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Storage/WebLogDao.cs -------------------------------------------------------------------------------- /exten/TeamServer/Tasks/TaskRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Tasks/TaskRecord.cs -------------------------------------------------------------------------------- /exten/TeamServer/TeamServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/TeamServer.csproj -------------------------------------------------------------------------------- /exten/TeamServer/Utilities/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Utilities/Extensions.cs -------------------------------------------------------------------------------- /exten/TeamServer/Utilities/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Utilities/Helpers.cs -------------------------------------------------------------------------------- /exten/TeamServer/Webhooks/CustomWebhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Webhooks/CustomWebhook.cs -------------------------------------------------------------------------------- /exten/TeamServer/Webhooks/SharpC2Webhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Webhooks/SharpC2Webhook.cs -------------------------------------------------------------------------------- /exten/TeamServer/Webhooks/SlackWebhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/Webhooks/SlackWebhook.cs -------------------------------------------------------------------------------- /exten/TeamServer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/appsettings.Development.json -------------------------------------------------------------------------------- /exten/TeamServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/exten/TeamServer/appsettings.json -------------------------------------------------------------------------------- /logon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/logon/.gitignore -------------------------------------------------------------------------------- /logon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/logon/LICENSE -------------------------------------------------------------------------------- /logon/logon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/logon/logon.c -------------------------------------------------------------------------------- /logon/logon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/logon/logon.sln -------------------------------------------------------------------------------- /logon/logon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/logon/logon.vcxproj -------------------------------------------------------------------------------- /logon/logon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/logon/logon.vcxproj.filters -------------------------------------------------------------------------------- /logon/logon/HandlesEnumerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/logon/logon/HandlesEnumerator.c -------------------------------------------------------------------------------- /logon/logon/HandlesEnumerator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/logon/logon/HandlesEnumerator.vcxproj -------------------------------------------------------------------------------- /logon/logon/HandlesEnumerator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/logon/logon/HandlesEnumerator.vcxproj.filters -------------------------------------------------------------------------------- /logon/logon/ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/logon/logon/ntdef.h -------------------------------------------------------------------------------- /logon/ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/logon/ntdef.h -------------------------------------------------------------------------------- /netexec.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/netexec.spec -------------------------------------------------------------------------------- /nxc/.hooks/hook-lsassy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/.hooks/hook-lsassy.py -------------------------------------------------------------------------------- /nxc/.hooks/hook-pypykatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/.hooks/hook-pypykatz.py -------------------------------------------------------------------------------- /nxc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/cli.py -------------------------------------------------------------------------------- /nxc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/config.py -------------------------------------------------------------------------------- /nxc/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/connection.py -------------------------------------------------------------------------------- /nxc/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/console.py -------------------------------------------------------------------------------- /nxc/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/context.py -------------------------------------------------------------------------------- /nxc/data/default.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/data/default.pem -------------------------------------------------------------------------------- /nxc/data/impersonate_module/impersonate.bs64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/data/impersonate_module/impersonate.bs64 -------------------------------------------------------------------------------- /nxc/data/msol_dump/msol_dump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/data/msol_dump/msol_dump.ps1 -------------------------------------------------------------------------------- /nxc/data/nxc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/data/nxc.conf -------------------------------------------------------------------------------- /nxc/data/nxc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/data/nxc.ico -------------------------------------------------------------------------------- /nxc/data/pi_module/pi.bs64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/data/pi_module/pi.bs64 -------------------------------------------------------------------------------- /nxc/data/veeam_dump_module/veeam_dump_mssql.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/data/veeam_dump_module/veeam_dump_mssql.ps1 -------------------------------------------------------------------------------- /nxc/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/database.py -------------------------------------------------------------------------------- /nxc/first_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/first_run.py -------------------------------------------------------------------------------- /nxc/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/helpers/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/helpers/args.py -------------------------------------------------------------------------------- /nxc/helpers/bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/helpers/bash.py -------------------------------------------------------------------------------- /nxc/helpers/bloodhound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/helpers/bloodhound.py -------------------------------------------------------------------------------- /nxc/helpers/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/helpers/http.py -------------------------------------------------------------------------------- /nxc/helpers/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/helpers/logger.py -------------------------------------------------------------------------------- /nxc/helpers/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/helpers/misc.py -------------------------------------------------------------------------------- /nxc/helpers/msada_guids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/helpers/msada_guids.py -------------------------------------------------------------------------------- /nxc/helpers/ntlm_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/helpers/ntlm_parser.py -------------------------------------------------------------------------------- /nxc/helpers/powershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/helpers/powershell.py -------------------------------------------------------------------------------- /nxc/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/loaders/moduleloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/loaders/moduleloader.py -------------------------------------------------------------------------------- /nxc/loaders/protocolloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/loaders/protocolloader.py -------------------------------------------------------------------------------- /nxc/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/logger.py -------------------------------------------------------------------------------- /nxc/modules/adcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/adcs.py -------------------------------------------------------------------------------- /nxc/modules/add-computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/add-computer.py -------------------------------------------------------------------------------- /nxc/modules/bitlocker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/bitlocker.py -------------------------------------------------------------------------------- /nxc/modules/daclread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/daclread.py -------------------------------------------------------------------------------- /nxc/modules/dfscoerce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/dfscoerce.py -------------------------------------------------------------------------------- /nxc/modules/drop-sc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/drop-sc.py -------------------------------------------------------------------------------- /nxc/modules/empire_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/empire_exec.py -------------------------------------------------------------------------------- /nxc/modules/enum_av.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/enum_av.py -------------------------------------------------------------------------------- /nxc/modules/enum_ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/enum_ca.py -------------------------------------------------------------------------------- /nxc/modules/enum_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/enum_dns.py -------------------------------------------------------------------------------- /nxc/modules/enum_trusts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/enum_trusts.py -------------------------------------------------------------------------------- /nxc/modules/example_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/example_module.py -------------------------------------------------------------------------------- /nxc/modules/find-computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/find-computer.py -------------------------------------------------------------------------------- /nxc/modules/firefox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/firefox.py -------------------------------------------------------------------------------- /nxc/modules/get-desc-users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/get-desc-users.py -------------------------------------------------------------------------------- /nxc/modules/get-network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/get-network.py -------------------------------------------------------------------------------- /nxc/modules/get-unixUserPassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/get-unixUserPassword.py -------------------------------------------------------------------------------- /nxc/modules/get-userPassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/get-userPassword.py -------------------------------------------------------------------------------- /nxc/modules/get_netconnections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/get_netconnections.py -------------------------------------------------------------------------------- /nxc/modules/gpp_autologin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/gpp_autologin.py -------------------------------------------------------------------------------- /nxc/modules/gpp_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/gpp_password.py -------------------------------------------------------------------------------- /nxc/modules/group-mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/group-mem.py -------------------------------------------------------------------------------- /nxc/modules/groupmembership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/groupmembership.py -------------------------------------------------------------------------------- /nxc/modules/handlekatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/handlekatz.py -------------------------------------------------------------------------------- /nxc/modules/hash_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/hash_spider.py -------------------------------------------------------------------------------- /nxc/modules/hyperv-host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/hyperv-host.py -------------------------------------------------------------------------------- /nxc/modules/iis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/iis.py -------------------------------------------------------------------------------- /nxc/modules/impersonate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/impersonate.py -------------------------------------------------------------------------------- /nxc/modules/install_elevated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/install_elevated.py -------------------------------------------------------------------------------- /nxc/modules/ioxidresolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/ioxidresolver.py -------------------------------------------------------------------------------- /nxc/modules/keepass_discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/keepass_discover.py -------------------------------------------------------------------------------- /nxc/modules/keepass_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/keepass_trigger.py -------------------------------------------------------------------------------- /nxc/modules/laps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/laps.py -------------------------------------------------------------------------------- /nxc/modules/ldap-checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/ldap-checker.py -------------------------------------------------------------------------------- /nxc/modules/lsassy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/lsassy.py -------------------------------------------------------------------------------- /nxc/modules/maq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/maq.py -------------------------------------------------------------------------------- /nxc/modules/masky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/masky.py -------------------------------------------------------------------------------- /nxc/modules/met_inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/met_inject.py -------------------------------------------------------------------------------- /nxc/modules/mobaxterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/mobaxterm.py -------------------------------------------------------------------------------- /nxc/modules/mremoteng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/mremoteng.py -------------------------------------------------------------------------------- /nxc/modules/ms17-010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/ms17-010.py -------------------------------------------------------------------------------- /nxc/modules/msol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/msol.py -------------------------------------------------------------------------------- /nxc/modules/mssql_priv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/mssql_priv.py -------------------------------------------------------------------------------- /nxc/modules/nanodump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/nanodump.py -------------------------------------------------------------------------------- /nxc/modules/nopac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/nopac.py -------------------------------------------------------------------------------- /nxc/modules/ntdsutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/ntdsutil.py -------------------------------------------------------------------------------- /nxc/modules/ntlmv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/ntlmv1.py -------------------------------------------------------------------------------- /nxc/modules/obsolete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/obsolete.py -------------------------------------------------------------------------------- /nxc/modules/petitpotam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/petitpotam.py -------------------------------------------------------------------------------- /nxc/modules/pi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/pi.py -------------------------------------------------------------------------------- /nxc/modules/pre2k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/pre2k.py -------------------------------------------------------------------------------- /nxc/modules/printerbug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/printerbug.py -------------------------------------------------------------------------------- /nxc/modules/printnightmare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/printnightmare.py -------------------------------------------------------------------------------- /nxc/modules/procdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/procdump.py -------------------------------------------------------------------------------- /nxc/modules/pso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/pso.py -------------------------------------------------------------------------------- /nxc/modules/putty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/putty.py -------------------------------------------------------------------------------- /nxc/modules/rdcman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/rdcman.py -------------------------------------------------------------------------------- /nxc/modules/rdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/rdp.py -------------------------------------------------------------------------------- /nxc/modules/reg-query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/reg-query.py -------------------------------------------------------------------------------- /nxc/modules/reg-winlogon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/reg-winlogon.py -------------------------------------------------------------------------------- /nxc/modules/runasppl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/runasppl.py -------------------------------------------------------------------------------- /nxc/modules/sccm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/sccm.py -------------------------------------------------------------------------------- /nxc/modules/schtask_as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/schtask_as.py -------------------------------------------------------------------------------- /nxc/modules/scuffy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/scuffy.py -------------------------------------------------------------------------------- /nxc/modules/security-questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/security-questions.py -------------------------------------------------------------------------------- /nxc/modules/shadowcoerce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/shadowcoerce.py -------------------------------------------------------------------------------- /nxc/modules/slinky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/slinky.py -------------------------------------------------------------------------------- /nxc/modules/smbghost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/smbghost.py -------------------------------------------------------------------------------- /nxc/modules/spider_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/spider_plus.py -------------------------------------------------------------------------------- /nxc/modules/spooler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/spooler.py -------------------------------------------------------------------------------- /nxc/modules/subnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/subnets.py -------------------------------------------------------------------------------- /nxc/modules/teams_localdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/teams_localdb.py -------------------------------------------------------------------------------- /nxc/modules/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/test_connection.py -------------------------------------------------------------------------------- /nxc/modules/uac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/uac.py -------------------------------------------------------------------------------- /nxc/modules/user-desc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/user-desc.py -------------------------------------------------------------------------------- /nxc/modules/veeam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/veeam.py -------------------------------------------------------------------------------- /nxc/modules/vnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/vnc.py -------------------------------------------------------------------------------- /nxc/modules/wcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/wcc.py -------------------------------------------------------------------------------- /nxc/modules/wdigest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/wdigest.py -------------------------------------------------------------------------------- /nxc/modules/web_delivery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/web_delivery.py -------------------------------------------------------------------------------- /nxc/modules/webdav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/webdav.py -------------------------------------------------------------------------------- /nxc/modules/whoami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/whoami.py -------------------------------------------------------------------------------- /nxc/modules/wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/wifi.py -------------------------------------------------------------------------------- /nxc/modules/winscp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/winscp.py -------------------------------------------------------------------------------- /nxc/modules/zerologon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/modules/zerologon.py -------------------------------------------------------------------------------- /nxc/netexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/netexec.py -------------------------------------------------------------------------------- /nxc/nxcdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/nxcdb.py -------------------------------------------------------------------------------- /nxc/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/parsers/ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/parsers/ip.py -------------------------------------------------------------------------------- /nxc/parsers/ldap_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/parsers/ldap_results.py -------------------------------------------------------------------------------- /nxc/parsers/nessus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/parsers/nessus.py -------------------------------------------------------------------------------- /nxc/parsers/nmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/parsers/nmap.py -------------------------------------------------------------------------------- /nxc/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/paths.py -------------------------------------------------------------------------------- /nxc/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/protocols/ftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ftp.py -------------------------------------------------------------------------------- /nxc/protocols/ftp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/protocols/ftp/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ftp/database.py -------------------------------------------------------------------------------- /nxc/protocols/ftp/db_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ftp/db_navigator.py -------------------------------------------------------------------------------- /nxc/protocols/ftp/proto_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ftp/proto_args.py -------------------------------------------------------------------------------- /nxc/protocols/ldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ldap.py -------------------------------------------------------------------------------- /nxc/protocols/ldap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/protocols/ldap/bloodhound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ldap/bloodhound.py -------------------------------------------------------------------------------- /nxc/protocols/ldap/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ldap/database.py -------------------------------------------------------------------------------- /nxc/protocols/ldap/db_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ldap/db_navigator.py -------------------------------------------------------------------------------- /nxc/protocols/ldap/gmsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ldap/gmsa.py -------------------------------------------------------------------------------- /nxc/protocols/ldap/kerberos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ldap/kerberos.py -------------------------------------------------------------------------------- /nxc/protocols/ldap/laps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ldap/laps.py -------------------------------------------------------------------------------- /nxc/protocols/ldap/proto_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ldap/proto_args.py -------------------------------------------------------------------------------- /nxc/protocols/mssql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/mssql.py -------------------------------------------------------------------------------- /nxc/protocols/mssql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/protocols/mssql/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/mssql/database.py -------------------------------------------------------------------------------- /nxc/protocols/mssql/db_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/mssql/db_navigator.py -------------------------------------------------------------------------------- /nxc/protocols/mssql/mssqlexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/mssql/mssqlexec.py -------------------------------------------------------------------------------- /nxc/protocols/mssql/proto_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/mssql/proto_args.py -------------------------------------------------------------------------------- /nxc/protocols/rdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/rdp.py -------------------------------------------------------------------------------- /nxc/protocols/rdp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/protocols/rdp/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/rdp/database.py -------------------------------------------------------------------------------- /nxc/protocols/rdp/db_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/rdp/db_navigator.py -------------------------------------------------------------------------------- /nxc/protocols/rdp/proto_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/rdp/proto_args.py -------------------------------------------------------------------------------- /nxc/protocols/smb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb.py -------------------------------------------------------------------------------- /nxc/protocols/smb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/protocols/smb/atexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/atexec.py -------------------------------------------------------------------------------- /nxc/protocols/smb/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/database.py -------------------------------------------------------------------------------- /nxc/protocols/smb/db_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/db_navigator.py -------------------------------------------------------------------------------- /nxc/protocols/smb/firefox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/firefox.py -------------------------------------------------------------------------------- /nxc/protocols/smb/kerberos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/kerberos.py -------------------------------------------------------------------------------- /nxc/protocols/smb/mmcexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/mmcexec.py -------------------------------------------------------------------------------- /nxc/protocols/smb/passpol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/passpol.py -------------------------------------------------------------------------------- /nxc/protocols/smb/proto_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/proto_args.py -------------------------------------------------------------------------------- /nxc/protocols/smb/remotefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/remotefile.py -------------------------------------------------------------------------------- /nxc/protocols/smb/samrfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/samrfunc.py -------------------------------------------------------------------------------- /nxc/protocols/smb/samruser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/samruser.py -------------------------------------------------------------------------------- /nxc/protocols/smb/smbexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/smbexec.py -------------------------------------------------------------------------------- /nxc/protocols/smb/smbspider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/smbspider.py -------------------------------------------------------------------------------- /nxc/protocols/smb/wmiexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/smb/wmiexec.py -------------------------------------------------------------------------------- /nxc/protocols/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ssh.py -------------------------------------------------------------------------------- /nxc/protocols/ssh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/protocols/ssh/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ssh/database.py -------------------------------------------------------------------------------- /nxc/protocols/ssh/db_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ssh/db_navigator.py -------------------------------------------------------------------------------- /nxc/protocols/ssh/proto_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/ssh/proto_args.py -------------------------------------------------------------------------------- /nxc/protocols/vnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/vnc.py -------------------------------------------------------------------------------- /nxc/protocols/vnc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/protocols/vnc/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/vnc/database.py -------------------------------------------------------------------------------- /nxc/protocols/vnc/db_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/vnc/db_navigator.py -------------------------------------------------------------------------------- /nxc/protocols/vnc/proto_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/vnc/proto_args.py -------------------------------------------------------------------------------- /nxc/protocols/winrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/winrm.py -------------------------------------------------------------------------------- /nxc/protocols/winrm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/protocols/winrm/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/winrm/database.py -------------------------------------------------------------------------------- /nxc/protocols/winrm/db_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/winrm/db_navigator.py -------------------------------------------------------------------------------- /nxc/protocols/winrm/proto_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/winrm/proto_args.py -------------------------------------------------------------------------------- /nxc/protocols/wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/wmi.py -------------------------------------------------------------------------------- /nxc/protocols/wmi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/protocols/wmi/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/wmi/database.py -------------------------------------------------------------------------------- /nxc/protocols/wmi/db_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/wmi/db_navigator.py -------------------------------------------------------------------------------- /nxc/protocols/wmi/proto_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/wmi/proto_args.py -------------------------------------------------------------------------------- /nxc/protocols/wmi/wmiexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/wmi/wmiexec.py -------------------------------------------------------------------------------- /nxc/protocols/wmi/wmiexec_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/protocols/wmi/wmiexec_event.py -------------------------------------------------------------------------------- /nxc/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxc/servers/smb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/nxc/servers/smb.py -------------------------------------------------------------------------------- /outflank/bof/AddMachineAccount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/AddMachineAccount/README.md -------------------------------------------------------------------------------- /outflank/bof/AddMachineAccount/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/AddMachineAccount/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/AddMachineAccount/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/AddMachineAccount/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Askcreds/Askcreds.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Askcreds/Askcreds.cna -------------------------------------------------------------------------------- /outflank/bof/Askcreds/Askcreds_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Askcreds/Askcreds_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/Askcreds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Askcreds/README.md -------------------------------------------------------------------------------- /outflank/bof/Askcreds/SOURCE/Askcreds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Askcreds/SOURCE/Askcreds.c -------------------------------------------------------------------------------- /outflank/bof/Askcreds/SOURCE/Askcreds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Askcreds/SOURCE/Askcreds.h -------------------------------------------------------------------------------- /outflank/bof/Askcreds/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Askcreds/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/Askcreds/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Askcreds/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/CVE-2022-26923/CVE-2022-26923.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/CVE-2022-26923/CVE-2022-26923.cna -------------------------------------------------------------------------------- /outflank/bof/CVE-2022-26923/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/CVE-2022-26923/README.md -------------------------------------------------------------------------------- /outflank/bof/CVE-2022-26923/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/CVE-2022-26923/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/CVE-2022-26923/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/CVE-2022-26923/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Domaininfo/Domaininfo.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Domaininfo/Domaininfo.cna -------------------------------------------------------------------------------- /outflank/bof/Domaininfo/Domaininfo_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Domaininfo/Domaininfo_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/Domaininfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Domaininfo/README.md -------------------------------------------------------------------------------- /outflank/bof/Domaininfo/SOURCE/Domaininfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Domaininfo/SOURCE/Domaininfo.c -------------------------------------------------------------------------------- /outflank/bof/Domaininfo/SOURCE/Domaininfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Domaininfo/SOURCE/Domaininfo.h -------------------------------------------------------------------------------- /outflank/bof/Domaininfo/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Domaininfo/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/Domaininfo/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Domaininfo/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/FindObjects/FindObjects.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/FindObjects/FindObjects.cna -------------------------------------------------------------------------------- /outflank/bof/FindObjects/FindObjects_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/FindObjects/FindObjects_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/FindObjects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/FindObjects/README.md -------------------------------------------------------------------------------- /outflank/bof/FindObjects/SOURCE/FindModule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/FindObjects/SOURCE/FindModule.c -------------------------------------------------------------------------------- /outflank/bof/FindObjects/SOURCE/FindObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/FindObjects/SOURCE/FindObjects.h -------------------------------------------------------------------------------- /outflank/bof/FindObjects/SOURCE/FindProcHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/FindObjects/SOURCE/FindProcHandle.c -------------------------------------------------------------------------------- /outflank/bof/FindObjects/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/FindObjects/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/FindObjects/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/FindObjects/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /outflank/bof/FindObjects/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/FindObjects/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /outflank/bof/FindObjects/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/FindObjects/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/KerbHash/KerbHash.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/KerbHash/KerbHash.cna -------------------------------------------------------------------------------- /outflank/bof/KerbHash/KerbHash_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/KerbHash/KerbHash_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/KerbHash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/KerbHash/README.md -------------------------------------------------------------------------------- /outflank/bof/KerbHash/SOURCE/KerbHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/KerbHash/SOURCE/KerbHash.c -------------------------------------------------------------------------------- /outflank/bof/KerbHash/SOURCE/KerbHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/KerbHash/SOURCE/KerbHash.h -------------------------------------------------------------------------------- /outflank/bof/KerbHash/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/KerbHash/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/KerbHash/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/KerbHash/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Kerberoast/Kerberoast.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Kerberoast/Kerberoast.cna -------------------------------------------------------------------------------- /outflank/bof/Kerberoast/Kerberoast_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Kerberoast/Kerberoast_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/Kerberoast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Kerberoast/README.md -------------------------------------------------------------------------------- /outflank/bof/Kerberoast/SOURCE/Kerberoast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Kerberoast/SOURCE/Kerberoast.c -------------------------------------------------------------------------------- /outflank/bof/Kerberoast/SOURCE/Kerberoast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Kerberoast/SOURCE/Kerberoast.h -------------------------------------------------------------------------------- /outflank/bof/Kerberoast/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Kerberoast/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/Kerberoast/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Kerberoast/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Kerberoast/TicketToHashcat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Kerberoast/TicketToHashcat.py -------------------------------------------------------------------------------- /outflank/bof/Kerberoast/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Kerberoast/requirements.txt -------------------------------------------------------------------------------- /outflank/bof/Klist/Klist.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Klist/Klist.cna -------------------------------------------------------------------------------- /outflank/bof/Klist/Klist_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Klist/Klist_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/Klist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Klist/README.md -------------------------------------------------------------------------------- /outflank/bof/Klist/SOURCE/Klist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Klist/SOURCE/Klist.c -------------------------------------------------------------------------------- /outflank/bof/Klist/SOURCE/Klist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Klist/SOURCE/Klist.h -------------------------------------------------------------------------------- /outflank/bof/Klist/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Klist/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/Klist/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Klist/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Lapsdump/Lapsdump.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Lapsdump/Lapsdump.cna -------------------------------------------------------------------------------- /outflank/bof/Lapsdump/Lapsdump_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Lapsdump/Lapsdump_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/Lapsdump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Lapsdump/README.md -------------------------------------------------------------------------------- /outflank/bof/Lapsdump/SOURCE/Lapsdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Lapsdump/SOURCE/Lapsdump.c -------------------------------------------------------------------------------- /outflank/bof/Lapsdump/SOURCE/Lapsdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Lapsdump/SOURCE/Lapsdump.h -------------------------------------------------------------------------------- /outflank/bof/Lapsdump/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Lapsdump/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/Lapsdump/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Lapsdump/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Makefile -------------------------------------------------------------------------------- /outflank/bof/PetitPotam/PetitPotam.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/PetitPotam/PetitPotam.cna -------------------------------------------------------------------------------- /outflank/bof/PetitPotam/PetitPotam_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/PetitPotam/PetitPotam_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/PetitPotam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/PetitPotam/README.md -------------------------------------------------------------------------------- /outflank/bof/PetitPotam/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/PetitPotam/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/PetitPotam/SOURCE/PetitPotam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/PetitPotam/SOURCE/PetitPotam.c -------------------------------------------------------------------------------- /outflank/bof/PetitPotam/SOURCE/PetitPotam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/PetitPotam/SOURCE/PetitPotam.h -------------------------------------------------------------------------------- /outflank/bof/PetitPotam/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/PetitPotam/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/PetitPotam/SOURCE/ms-dtyp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/PetitPotam/SOURCE/ms-dtyp.h -------------------------------------------------------------------------------- /outflank/bof/PetitPotam/SOURCE/ms-efsrpc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/PetitPotam/SOURCE/ms-efsrpc_c.h -------------------------------------------------------------------------------- /outflank/bof/PetitPotam/SOURCE/ms-efsrpc_c_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/PetitPotam/SOURCE/ms-efsrpc_c_x86.h -------------------------------------------------------------------------------- /outflank/bof/PetitPotam/SOURCE/ms-efsrpc_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/PetitPotam/SOURCE/ms-efsrpc_h.h -------------------------------------------------------------------------------- /outflank/bof/Psc/Psc.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psc/Psc.cna -------------------------------------------------------------------------------- /outflank/bof/Psc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psc/README.md -------------------------------------------------------------------------------- /outflank/bof/Psc/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psc/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/Psc/SOURCE/Psc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psc/SOURCE/Psc.c -------------------------------------------------------------------------------- /outflank/bof/Psc/SOURCE/Psc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psc/SOURCE/Psc.h -------------------------------------------------------------------------------- /outflank/bof/Psc/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psc/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /outflank/bof/Psc/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psc/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /outflank/bof/Psc/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psc/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Psc/psc_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psc/psc_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/Psk/Psk.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psk/Psk.cna -------------------------------------------------------------------------------- /outflank/bof/Psk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psk/README.md -------------------------------------------------------------------------------- /outflank/bof/Psk/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psk/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/Psk/SOURCE/Psk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psk/SOURCE/Psk.c -------------------------------------------------------------------------------- /outflank/bof/Psk/SOURCE/Psk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psk/SOURCE/Psk.h -------------------------------------------------------------------------------- /outflank/bof/Psk/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psk/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /outflank/bof/Psk/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psk/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /outflank/bof/Psk/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psk/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Psk/psk_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psk/psk_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/Psm/Psm.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psm/Psm.cna -------------------------------------------------------------------------------- /outflank/bof/Psm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psm/README.md -------------------------------------------------------------------------------- /outflank/bof/Psm/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psm/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/Psm/SOURCE/Psm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psm/SOURCE/Psm.c -------------------------------------------------------------------------------- /outflank/bof/Psm/SOURCE/Psm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psm/SOURCE/Psm.h -------------------------------------------------------------------------------- /outflank/bof/Psm/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psm/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /outflank/bof/Psm/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psm/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /outflank/bof/Psm/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psm/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Psm/psm_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psm/psm_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/Psw/Psw.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psw/Psw.cna -------------------------------------------------------------------------------- /outflank/bof/Psw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psw/README.md -------------------------------------------------------------------------------- /outflank/bof/Psw/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psw/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/Psw/SOURCE/Psw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psw/SOURCE/Psw.c -------------------------------------------------------------------------------- /outflank/bof/Psw/SOURCE/Psw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psw/SOURCE/Psw.h -------------------------------------------------------------------------------- /outflank/bof/Psw/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psw/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /outflank/bof/Psw/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psw/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /outflank/bof/Psw/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psw/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Psw/psw_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psw/psw_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/Psx/Psx.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psx/Psx.cna -------------------------------------------------------------------------------- /outflank/bof/Psx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psx/README.md -------------------------------------------------------------------------------- /outflank/bof/Psx/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psx/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/Psx/SOURCE/Psx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psx/SOURCE/Psx.c -------------------------------------------------------------------------------- /outflank/bof/Psx/SOURCE/Psx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psx/SOURCE/Psx.h -------------------------------------------------------------------------------- /outflank/bof/Psx/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psx/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /outflank/bof/Psx/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psx/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /outflank/bof/Psx/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Psx/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/ReconAD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/ReconAD/README.md -------------------------------------------------------------------------------- /outflank/bof/ReconAD/ReconAD.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/ReconAD/ReconAD.cna -------------------------------------------------------------------------------- /outflank/bof/ReconAD/ReconADComputers_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/ReconAD/ReconADComputers_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/ReconAD/ReconADGroups_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/ReconAD/ReconADGroups_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/ReconAD/ReconADUsers_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/ReconAD/ReconADUsers_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/ReconAD/ReconAD_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/ReconAD/ReconAD_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/ReconAD/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/ReconAD/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/ReconAD/SOURCE/ReconAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/ReconAD/SOURCE/ReconAD.c -------------------------------------------------------------------------------- /outflank/bof/ReconAD/SOURCE/ReconAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/ReconAD/SOURCE/ReconAD.h -------------------------------------------------------------------------------- /outflank/bof/ReconAD/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/ReconAD/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Smbinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Smbinfo/README.md -------------------------------------------------------------------------------- /outflank/bof/Smbinfo/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Smbinfo/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/Smbinfo/SOURCE/Smbinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Smbinfo/SOURCE/Smbinfo.c -------------------------------------------------------------------------------- /outflank/bof/Smbinfo/SOURCE/Smbinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Smbinfo/SOURCE/Smbinfo.h -------------------------------------------------------------------------------- /outflank/bof/Smbinfo/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Smbinfo/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Smbinfo/Smbinfo.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Smbinfo/Smbinfo.cna -------------------------------------------------------------------------------- /outflank/bof/Smbinfo/Smbinfo_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Smbinfo/Smbinfo_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/SprayAD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/SprayAD/README.md -------------------------------------------------------------------------------- /outflank/bof/SprayAD/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/SprayAD/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/SprayAD/SOURCE/SprayAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/SprayAD/SOURCE/SprayAD.c -------------------------------------------------------------------------------- /outflank/bof/SprayAD/SOURCE/SprayAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/SprayAD/SOURCE/SprayAD.h -------------------------------------------------------------------------------- /outflank/bof/SprayAD/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/SprayAD/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/SprayAD/SprayAD.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/SprayAD/SprayAD.cna -------------------------------------------------------------------------------- /outflank/bof/SprayAD/SprayAD_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/SprayAD/SprayAD_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/Stage1-OC2TC-bof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Stage1-OC2TC-bof.py -------------------------------------------------------------------------------- /outflank/bof/StartWebClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/StartWebClient/README.md -------------------------------------------------------------------------------- /outflank/bof/StartWebClient/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/StartWebClient/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/StartWebClient/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/StartWebClient/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/StartWebClient/StartWebClient.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/StartWebClient/StartWebClient.cna -------------------------------------------------------------------------------- /outflank/bof/WdToggle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/WdToggle/README.md -------------------------------------------------------------------------------- /outflank/bof/WdToggle/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/WdToggle/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/WdToggle/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/WdToggle/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /outflank/bof/WdToggle/SOURCE/WdToggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/WdToggle/SOURCE/WdToggle.c -------------------------------------------------------------------------------- /outflank/bof/WdToggle/SOURCE/WdToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/WdToggle/SOURCE/WdToggle.h -------------------------------------------------------------------------------- /outflank/bof/WdToggle/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/WdToggle/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/WdToggle/WdToggle.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/WdToggle/WdToggle.cna -------------------------------------------------------------------------------- /outflank/bof/WdToggle/WdToggle_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/WdToggle/WdToggle_bof.s1.py -------------------------------------------------------------------------------- /outflank/bof/Winver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Winver/README.md -------------------------------------------------------------------------------- /outflank/bof/Winver/SOURCE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Winver/SOURCE/Makefile -------------------------------------------------------------------------------- /outflank/bof/Winver/SOURCE/Syscalls-WoW64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Winver/SOURCE/Syscalls-WoW64.h -------------------------------------------------------------------------------- /outflank/bof/Winver/SOURCE/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Winver/SOURCE/Syscalls.h -------------------------------------------------------------------------------- /outflank/bof/Winver/SOURCE/Winver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Winver/SOURCE/Winver.c -------------------------------------------------------------------------------- /outflank/bof/Winver/SOURCE/Winver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Winver/SOURCE/Winver.h -------------------------------------------------------------------------------- /outflank/bof/Winver/SOURCE/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Winver/SOURCE/beacon.h -------------------------------------------------------------------------------- /outflank/bof/Winver/Winver.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Winver/Winver.cna -------------------------------------------------------------------------------- /outflank/bof/Winver/Winver_bof.s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/bof/Winver/Winver_bof.s1.py -------------------------------------------------------------------------------- /outflank/other/PetitPotam/PetitPotam.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/other/PetitPotam/PetitPotam.cna -------------------------------------------------------------------------------- /outflank/other/PetitPotam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/other/PetitPotam/README.md -------------------------------------------------------------------------------- /outflank/other/PetitPotam/SOURCE/PetitPotam.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/other/PetitPotam/SOURCE/PetitPotam.sln -------------------------------------------------------------------------------- /outflank/other/RemotePipeList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/other/RemotePipeList/README.md -------------------------------------------------------------------------------- /outflank/other/RemotePipeList/RemotePipeList.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/other/RemotePipeList/RemotePipeList.cna -------------------------------------------------------------------------------- /outflank/other/RemotePipeList/source/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | bin 3 | obj 4 | packages -------------------------------------------------------------------------------- /outflank/other/RemotePipeList/source/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/other/RemotePipeList/source/App.config -------------------------------------------------------------------------------- /outflank/other/RemotePipeList/source/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/outflank/other/RemotePipeList/source/Program.cs -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/pyproject.toml -------------------------------------------------------------------------------- /relay/Images/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/Images/demo.mp4 -------------------------------------------------------------------------------- /relay/Images/image-20220213094644590.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/Images/image-20220213094644590.png -------------------------------------------------------------------------------- /relay/packages/BouncyCastle.1.8.9/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/packages/BouncyCastle.1.8.9/.signature.p7s -------------------------------------------------------------------------------- /relay/packages/BouncyCastle.1.8.9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/packages/BouncyCastle.1.8.9/README.md -------------------------------------------------------------------------------- /relay/packages/ILMerge.3.0.41/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/packages/ILMerge.3.0.41/.signature.p7s -------------------------------------------------------------------------------- /relay/packages/MimeKitLite.2.15.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/packages/MimeKitLite.2.15.1/.signature.p7s -------------------------------------------------------------------------------- /relay/packages/System.Buffers.4.5.1/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/packages/System.Buffers.4.5.1/LICENSE.TXT -------------------------------------------------------------------------------- /relay/packages/System.Buffers.4.5.1/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /relay/packages/System.Buffers.4.5.1/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /relay/packages/System.Buffers.4.5.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /relay/packages/System.Buffers.4.5.1/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | -------------------------------------------------------------------------------- /relay/packages/dnMerge.0.5.15/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/packages/dnMerge.0.5.15/.signature.p7s -------------------------------------------------------------------------------- /relay/port/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/port/App.config -------------------------------------------------------------------------------- /relay/port/CheckPort.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/port/CheckPort.csproj -------------------------------------------------------------------------------- /relay/port/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/port/Program.cs -------------------------------------------------------------------------------- /relay/port/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/port/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /relay/port/obj/Debug/Interop.NetFwTypeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/port/obj/Debug/Interop.NetFwTypeLib.dll -------------------------------------------------------------------------------- /relay/port/obj/Release/CheckPort.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /relay/port/obj/Release/CheckPort.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /relay/port/obj/Release/Interop.NetFwTypeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/port/obj/Release/Interop.NetFwTypeLib.dll -------------------------------------------------------------------------------- /relay/relay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay.sln -------------------------------------------------------------------------------- /relay/relay/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/App.config -------------------------------------------------------------------------------- /relay/relay/Clients/Attacks/Http/ADCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Attacks/Http/ADCS.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Attacks/Http/EWS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Attacks/Http/EWS.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Attacks/Http/ProxyServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Attacks/Http/ProxyServer.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Attacks/Ldap/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Attacks/Ldap/Generic.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Attacks/Ldap/LAPS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Attacks/Ldap/LAPS.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Attacks/Ldap/RBCD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Attacks/Ldap/RBCD.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Attacks/Ldap/gMSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Attacks/Ldap/gMSA.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Attacks/Ldap/setPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Attacks/Ldap/setPassword.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Attacks/Smb/LSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Attacks/Smb/LSA.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Attacks/Smb/RemoteRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Attacks/Smb/RemoteRegistry.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Attacks/Smb/ServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Attacks/Smb/ServiceManager.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Attacks/Smb/Shares.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Attacks/Smb/Shares.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Http.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Http.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Ldap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Ldap.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Rpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Rpc.cs -------------------------------------------------------------------------------- /relay/relay/Clients/Smb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Clients/Smb.cs -------------------------------------------------------------------------------- /relay/relay/Com/BufferUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Com/BufferUtils.cs -------------------------------------------------------------------------------- /relay/relay/Com/COMInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Com/COMInterfaces.cs -------------------------------------------------------------------------------- /relay/relay/Com/COMObjRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Com/COMObjRef.cs -------------------------------------------------------------------------------- /relay/relay/Com/COMUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Com/COMUtilities.cs -------------------------------------------------------------------------------- /relay/relay/Com/ComUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Com/ComUtils.cs -------------------------------------------------------------------------------- /relay/relay/Com/SafeBufferGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Com/SafeBufferGeneric.cs -------------------------------------------------------------------------------- /relay/relay/Com/SafeHGlobalBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Com/SafeHGlobalBuffer.cs -------------------------------------------------------------------------------- /relay/relay/Com/SafeStructureInOutBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Com/SafeStructureInOutBuffer.cs -------------------------------------------------------------------------------- /relay/relay/IStorage/IEnumSTATSTG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/IStorage/IEnumSTATSTG.cs -------------------------------------------------------------------------------- /relay/relay/IStorage/ILockBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/IStorage/ILockBytes.cs -------------------------------------------------------------------------------- /relay/relay/IStorage/IMarshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/IStorage/IMarshal.cs -------------------------------------------------------------------------------- /relay/relay/IStorage/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/IStorage/IStorage.cs -------------------------------------------------------------------------------- /relay/relay/IStorage/IStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/IStorage/IStream.cs -------------------------------------------------------------------------------- /relay/relay/IStorage/Ole32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/IStorage/Ole32.cs -------------------------------------------------------------------------------- /relay/relay/IStorage/StandardActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/IStorage/StandardActivator.cs -------------------------------------------------------------------------------- /relay/relay/IStorage/StorageTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/IStorage/StorageTrigger.cs -------------------------------------------------------------------------------- /relay/relay/KrbRelay.crproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/KrbRelay.crproj -------------------------------------------------------------------------------- /relay/relay/KrbRelay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/KrbRelay.csproj -------------------------------------------------------------------------------- /relay/relay/KrbRelay.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/KrbRelay.csproj.user -------------------------------------------------------------------------------- /relay/relay/Misc/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Misc/Helpers.cs -------------------------------------------------------------------------------- /relay/relay/Misc/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Misc/Interop.cs -------------------------------------------------------------------------------- /relay/relay/Misc/Natives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Misc/Natives.cs -------------------------------------------------------------------------------- /relay/relay/Misc/SecurityBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Misc/SecurityBuffer.cs -------------------------------------------------------------------------------- /relay/relay/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Program.cs -------------------------------------------------------------------------------- /relay/relay/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/Client/ISMBClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/Client/ISMBClient.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/Client/SMB1Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/Client/SMB1Client.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/Client/SMB2Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/Client/SMB2Client.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/Enums/NTStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/Enums/NTStatus.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/Enums/Win32Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/Enums/Win32Error.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/Helpers/SP800_1008.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/Helpers/SP800_1008.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/RPC/NDR/NDRParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/RPC/NDR/NDRParser.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/RPC/NDR/NDRTypeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/RPC/NDR/NDRTypeName.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/RPC/NDR/NDRWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/RPC/NDR/NDRWriter.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/RPC/PDU/BindAckPDU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/RPC/PDU/BindAckPDU.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/RPC/PDU/BindPDU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/RPC/PDU/BindPDU.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/RPC/PDU/FaultPDU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/RPC/PDU/FaultPDU.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/RPC/PDU/RPCPDU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/RPC/PDU/RPCPDU.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/RPC/RPCHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/RPC/RPCHelper.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/SMB1/SMB1Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/SMB1/SMB1Header.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/SMB1/SMB1Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/SMB1/SMB1Helper.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/SMB1/SMB1Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/SMB1/SMB1Message.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/SMB1/UTimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/SMB1/UTimeHelper.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/SMB2/SMB2Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/SMB2/SMB2Header.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/Server/NameServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/Server/NameServer.cs -------------------------------------------------------------------------------- /relay/relay/Smb/SMBLibrary/Server/SMBServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/SMBLibrary/Server/SMBServer.cs -------------------------------------------------------------------------------- /relay/relay/Smb/Utilities/Cryptography/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/Utilities/Cryptography/CRC32.cs -------------------------------------------------------------------------------- /relay/relay/Smb/Utilities/Generics/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/Utilities/Generics/Map.cs -------------------------------------------------------------------------------- /relay/relay/Smb/Utilities/Generics/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/Utilities/Generics/Reference.cs -------------------------------------------------------------------------------- /relay/relay/Smb/Utilities/Threading/Parallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Smb/Utilities/Threading/Parallel.cs -------------------------------------------------------------------------------- /relay/relay/Spoofing/HttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Spoofing/HttpServer.cs -------------------------------------------------------------------------------- /relay/relay/Spoofing/LLMNR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Spoofing/LLMNR.cs -------------------------------------------------------------------------------- /relay/relay/Spoofing/UDP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Spoofing/UDP.cs -------------------------------------------------------------------------------- /relay/relay/Spoofing/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/Spoofing/Util.cs -------------------------------------------------------------------------------- /relay/relay/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/relay/relay/packages.config -------------------------------------------------------------------------------- /sharp/args/ArgumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/args/ArgumentParser.cs -------------------------------------------------------------------------------- /sharp/args/ArgumentParserResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/args/ArgumentParserResult.cs -------------------------------------------------------------------------------- /sharp/args/CommandCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/args/CommandCollection.cs -------------------------------------------------------------------------------- /sharp/args/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/args/Info.cs -------------------------------------------------------------------------------- /sharp/commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/commands/ICommand.cs -------------------------------------------------------------------------------- /sharp/commands/KerberosSpray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/commands/KerberosSpray.cs -------------------------------------------------------------------------------- /sharp/commands/KerberosTgtdeleg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/commands/KerberosTgtdeleg.cs -------------------------------------------------------------------------------- /sharp/commands/NtlmCim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/commands/NtlmCim.cs -------------------------------------------------------------------------------- /sharp/commands/NtlmLdap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/commands/NtlmLdap.cs -------------------------------------------------------------------------------- /sharp/commands/NtlmReg32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/commands/NtlmReg32.cs -------------------------------------------------------------------------------- /sharp/commands/NtlmSmb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/commands/NtlmSmb.cs -------------------------------------------------------------------------------- /sharp/commands/NtlmWinrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/commands/NtlmWinrm.cs -------------------------------------------------------------------------------- /sharp/commands/kerberosLdap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/commands/kerberosLdap.cs -------------------------------------------------------------------------------- /sharp/commands/kerberosReg32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/commands/kerberosReg32.cs -------------------------------------------------------------------------------- /sharp/commands/kerberosSmb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/commands/kerberosSmb.cs -------------------------------------------------------------------------------- /sharp/commands/kerberosWinrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/commands/kerberosWinrm.cs -------------------------------------------------------------------------------- /sharp/helpers/AmsiFail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/helpers/AmsiFail.cs -------------------------------------------------------------------------------- /sharp/helpers/Impersonator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/helpers/Impersonator.cs -------------------------------------------------------------------------------- /sharp/helpers/Jea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/helpers/Jea.cs -------------------------------------------------------------------------------- /sharp/helpers/JeaRules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/helpers/JeaRules.ps1 -------------------------------------------------------------------------------- /sharp/helpers/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/helpers/Misc.cs -------------------------------------------------------------------------------- /sharp/helpers/PsFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/helpers/PsFunction.cs -------------------------------------------------------------------------------- /sharp/helpers/SecurityContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/helpers/SecurityContext.cs -------------------------------------------------------------------------------- /sharp/helpers/Tasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/helpers/Tasks.cs -------------------------------------------------------------------------------- /sharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/packages.config -------------------------------------------------------------------------------- /sharp/program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/program.cs -------------------------------------------------------------------------------- /sharp/projects/HiveParser/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/HiveParser/Crypto.cs -------------------------------------------------------------------------------- /sharp/projects/HiveParser/LsaSecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/HiveParser/LsaSecret.cs -------------------------------------------------------------------------------- /sharp/projects/HiveParser/NL_Record.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/HiveParser/NL_Record.cs -------------------------------------------------------------------------------- /sharp/projects/HiveParser/NodeKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/HiveParser/NodeKey.cs -------------------------------------------------------------------------------- /sharp/projects/HiveParser/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/HiveParser/Registry.cs -------------------------------------------------------------------------------- /sharp/projects/HiveParser/RegistryHive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/HiveParser/RegistryHive.cs -------------------------------------------------------------------------------- /sharp/projects/HiveParser/ValueKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/HiveParser/ValueKey.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Crypto/BCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Crypto/BCrypt.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Crypto/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Crypto/Crypto.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Decryptor/Cloudap_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Decryptor/Cloudap_.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Decryptor/Credman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Decryptor/Credman.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Decryptor/Dpapi_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Decryptor/Dpapi_.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Decryptor/Kerberos_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Decryptor/Kerberos_.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Decryptor/LiveSsp_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Decryptor/LiveSsp_.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Decryptor/Msv1_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Decryptor/Msv1_.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Decryptor/Rdp_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Decryptor/Rdp_.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Decryptor/Ssp_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Decryptor/Ssp_.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Decryptor/Tspkg_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Decryptor/Tspkg_.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Decryptor/WDigest_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Decryptor/WDigest_.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Helpers.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Program.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Streams/Directory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Streams/Directory.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Streams/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Streams/Header.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Streams/ModuleList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Streams/ModuleList.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Streams/Parse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Streams/Parse.cs -------------------------------------------------------------------------------- /sharp/projects/MiniDump/Streams/SystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/MiniDump/Streams/SystemInfo.cs -------------------------------------------------------------------------------- /sharp/projects/Rubeus/Asn1/Asn1Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/Rubeus/Asn1/Asn1Extensions.cs -------------------------------------------------------------------------------- /sharp/projects/Rubeus/Asn1/AsnElt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/Rubeus/Asn1/AsnElt.cs -------------------------------------------------------------------------------- /sharp/projects/Rubeus/Asn1/AsnException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/Rubeus/Asn1/AsnException.cs -------------------------------------------------------------------------------- /sharp/projects/Rubeus/Asn1/AsnIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/Rubeus/Asn1/AsnIO.cs -------------------------------------------------------------------------------- /sharp/projects/Rubeus/Asn1/AsnOID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/Rubeus/Asn1/AsnOID.cs -------------------------------------------------------------------------------- /sharp/projects/SharpDPAPI/SharpDPAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpDPAPI/SharpDPAPI.cs -------------------------------------------------------------------------------- /sharp/projects/SharpKatz/Crypto/BCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpKatz/Crypto/BCrypt.cs -------------------------------------------------------------------------------- /sharp/projects/SharpKatz/Keys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpKatz/Keys.cs -------------------------------------------------------------------------------- /sharp/projects/SharpKatz/Module/Kerberos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpKatz/Module/Kerberos.cs -------------------------------------------------------------------------------- /sharp/projects/SharpKatz/Module/Msv1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpKatz/Module/Msv1.cs -------------------------------------------------------------------------------- /sharp/projects/SharpKatz/Module/Pth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpKatz/Module/Pth.cs -------------------------------------------------------------------------------- /sharp/projects/SharpKatz/Module/Ptp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpKatz/Module/Ptp.cs -------------------------------------------------------------------------------- /sharp/projects/SharpKatz/Module/Tspkg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpKatz/Module/Tspkg.cs -------------------------------------------------------------------------------- /sharp/projects/SharpKatz/OSVersionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpKatz/OSVersionHelper.cs -------------------------------------------------------------------------------- /sharp/projects/SharpKatz/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpKatz/Utility.cs -------------------------------------------------------------------------------- /sharp/projects/SharpKatz/Win32/Natives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpKatz/Win32/Natives.cs -------------------------------------------------------------------------------- /sharp/projects/SharpKatz/Win32/Syscall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpKatz/Win32/Syscall.cs -------------------------------------------------------------------------------- /sharp/projects/SharpKatz/WinBuild/IWinBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/projects/SharpKatz/WinBuild/IWinBuild.cs -------------------------------------------------------------------------------- /sharp/properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sharp/sharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/sharp.csproj -------------------------------------------------------------------------------- /sharp/sharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/sharp.sln -------------------------------------------------------------------------------- /sharp/sharp.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/sharp/sharp.user -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/shell.nix -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/data/test_amsi_bypass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/tests/data/test_amsi_bypass.txt -------------------------------------------------------------------------------- /tests/data/test_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/tests/data/test_file.txt -------------------------------------------------------------------------------- /tests/data/test_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/tests/data/test_hashes.txt -------------------------------------------------------------------------------- /tests/data/test_key.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/tests/data/test_key.priv -------------------------------------------------------------------------------- /tests/data/test_passwords.txt: -------------------------------------------------------------------------------- 1 | Passw0rd! 2 | None 3 | ftp 4 | guest 5 | iamthekingoftheworld -------------------------------------------------------------------------------- /tests/data/test_users.txt: -------------------------------------------------------------------------------- 1 | Administrator 2 | Anonymous 3 | ftp 4 | guest 5 | robert.baratheon -------------------------------------------------------------------------------- /tests/e2e_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/tests/e2e_commands.txt -------------------------------------------------------------------------------- /tests/e2e_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/tests/e2e_tests.py -------------------------------------------------------------------------------- /tests/test_smb_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3n33dl3/NetExec/HEAD/tests/test_smb_database.py --------------------------------------------------------------------------------