├── .dockerignore ├── .flake8 ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ ├── bug_fix.md │ ├── feature.md │ └── module.md ├── pull_request_template.md └── workflows │ ├── publish.yml │ └── python.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── IDEAS.md ├── LICENSE.md ├── README.md ├── data ├── dirtycow │ ├── dirtycow.c │ └── mini_dirtycow.c ├── pwncat ├── pwncat.pub └── pwncatrc ├── db └── .gitkeep ├── docs ├── .gitignore ├── Makefile ├── apidoc │ ├── module.rst_t │ ├── package.rst_t │ ├── package.rst_t.bak │ └── toc.rst_t ├── make.bat ├── rebuild_api_docs.sh └── source │ ├── api │ ├── pwncat.channel.rst │ ├── pwncat.commands.rst │ ├── pwncat.config.rst │ ├── pwncat.db.rst │ ├── pwncat.facts.ability.rst │ ├── pwncat.facts.implant.rst │ ├── pwncat.facts.linux.rst │ ├── pwncat.facts.rst │ ├── pwncat.facts.tamper.rst │ ├── pwncat.facts.windows.rst │ ├── pwncat.gtfobins.rst │ ├── pwncat.manager.rst │ ├── pwncat.modules.enumerate.rst │ ├── pwncat.modules.implant.rst │ ├── pwncat.modules.rst │ ├── pwncat.platform.linux.rst │ ├── pwncat.platform.rst │ ├── pwncat.platform.windows.rst │ ├── pwncat.rst │ ├── pwncat.subprocess.rst │ ├── pwncat.target.rst │ └── pwncat.util.rst │ ├── commands │ ├── alias.rst │ ├── back.rst │ ├── bind.rst │ ├── connect.rst │ ├── download.rst │ ├── escalate.rst │ ├── index.rst │ ├── info.rst │ ├── lcd.rst │ ├── listen.rst │ ├── listeners.rst │ ├── load.rst │ ├── lpwd.rst │ ├── run.rst │ ├── search.rst │ ├── upload.rst │ └── use.rst │ ├── conf.py │ ├── configuration.rst │ ├── enum.rst │ ├── index.rst │ ├── installation.rst │ ├── modules.rst │ ├── persist.rst │ ├── privesc.rst │ ├── usage.rst │ └── windows.rst ├── poetry.lock ├── pwncat ├── __init__.py ├── __main__.py ├── channel │ ├── __init__.py │ ├── bind.py │ ├── connect.py │ ├── socket.py │ ├── ssh.py │ ├── ssl_bind.py │ └── ssl_connect.py ├── commands │ ├── __init__.py │ ├── alias.py │ ├── back.py │ ├── bind.py │ ├── connect.py │ ├── download.py │ ├── escalate.py │ ├── exit.py │ ├── help.py │ ├── info.py │ ├── lcd.py │ ├── leave.py │ ├── listener_new.py │ ├── listeners.py │ ├── load.py │ ├── local.py │ ├── lpwd.py │ ├── remember.py │ ├── reset.py │ ├── run.py │ ├── search.py │ ├── sessions.py │ ├── set.py │ ├── shortcut.py │ ├── upload.py │ └── use.py ├── config.py ├── data │ ├── PowerSploit │ │ ├── .gitignore │ │ ├── AntivirusBypass │ │ │ ├── AntivirusBypass.psd1 │ │ │ ├── AntivirusBypass.psm1 │ │ │ ├── Find-AVSignature.ps1 │ │ │ └── Usage.md │ │ ├── CodeExecution │ │ │ ├── CodeExecution.psd1 │ │ │ ├── CodeExecution.psm1 │ │ │ ├── Invoke-DllInjection.ps1 │ │ │ ├── Invoke-ReflectivePEInjection.ps1 │ │ │ ├── Invoke-ReflectivePEInjection_Resources │ │ │ │ ├── DemoDLL │ │ │ │ │ ├── DemoDLL.sln │ │ │ │ │ └── DemoDLL │ │ │ │ │ │ ├── DemoDLL.cpp │ │ │ │ │ │ ├── DemoDLL.h │ │ │ │ │ │ ├── DemoDLL.vcxproj │ │ │ │ │ │ ├── DemoDLL.vcxproj.filters │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── dllmain.cpp │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ ├── stdafx.h │ │ │ │ │ │ └── targetver.h │ │ │ │ ├── DemoDLL_RemoteProcess │ │ │ │ │ ├── DemoDLL_RemoteProcess.sln │ │ │ │ │ └── DemoDLL_RemoteProcess │ │ │ │ │ │ ├── DemoDLL_RemoteProcess.cpp │ │ │ │ │ │ ├── DemoDLL_RemoteProcess.vcxproj │ │ │ │ │ │ ├── DemoDLL_RemoteProcess.vcxproj.filters │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── dllmain.cpp │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ ├── stdafx.h │ │ │ │ │ │ └── targetver.h │ │ │ │ ├── DemoExe │ │ │ │ │ ├── DemoExe.sln │ │ │ │ │ ├── DemoExe_MD │ │ │ │ │ │ ├── DemoExe_MD.cpp │ │ │ │ │ │ ├── DemoExe_MD.vcxproj │ │ │ │ │ │ ├── DemoExe_MD.vcxproj.filters │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ ├── stdafx.h │ │ │ │ │ │ └── targetver.h │ │ │ │ │ └── DemoExe_MDd │ │ │ │ │ │ ├── DemoExe_MDd.cpp │ │ │ │ │ │ ├── DemoExe_MDd.vcxproj │ │ │ │ │ │ ├── DemoExe_MDd.vcxproj.filters │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ ├── stdafx.h │ │ │ │ │ │ └── targetver.h │ │ │ │ ├── ExeToInjectInTo │ │ │ │ │ ├── ExeToInjectInTo.sln │ │ │ │ │ └── ExeToInjectInTo │ │ │ │ │ │ ├── ExeToInjectInTo.cpp │ │ │ │ │ │ ├── ExeToInjectInTo.vcxproj │ │ │ │ │ │ ├── ExeToInjectInTo.vcxproj.filters │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ ├── stdafx.h │ │ │ │ │ │ └── targetver.h │ │ │ │ └── Shellcode │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── x64 │ │ │ │ │ ├── CallDllMain.asm │ │ │ │ │ ├── ExitThread.asm │ │ │ │ │ ├── GetFuncAddress.asm │ │ │ │ │ └── LoadLibraryA.asm │ │ │ │ │ └── x86 │ │ │ │ │ ├── CallDllMain.asm │ │ │ │ │ ├── ExitThread.asm │ │ │ │ │ └── GetProcAddress.asm │ │ │ ├── Invoke-Shellcode.ps1 │ │ │ ├── Invoke-WmiCommand.ps1 │ │ │ └── Usage.md │ │ ├── Exfiltration │ │ │ ├── Exfiltration.psd1 │ │ │ ├── Exfiltration.psm1 │ │ │ ├── Get-GPPAutologon.ps1 │ │ │ ├── Get-GPPPassword.ps1 │ │ │ ├── Get-Keystrokes.ps1 │ │ │ ├── Get-MicrophoneAudio.ps1 │ │ │ ├── Get-TimedScreenshot.ps1 │ │ │ ├── Get-VaultCredential.ps1 │ │ │ ├── Get-VaultCredential.ps1xml │ │ │ ├── Invoke-CredentialInjection.ps1 │ │ │ ├── Invoke-Mimikatz.ps1 │ │ │ ├── Invoke-NinjaCopy.ps1 │ │ │ ├── Invoke-TokenManipulation.ps1 │ │ │ ├── LogonUser │ │ │ │ └── LogonUser │ │ │ │ │ ├── LogonUser.sln │ │ │ │ │ ├── LogonUser │ │ │ │ │ ├── LogonUser.cpp │ │ │ │ │ ├── LogonUser.vcxproj │ │ │ │ │ ├── LogonUser.vcxproj.filters │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ ├── stdafx.h │ │ │ │ │ └── targetver.h │ │ │ │ │ └── logon │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── dllmain.cpp │ │ │ │ │ ├── logon.cpp │ │ │ │ │ ├── logon.vcxproj │ │ │ │ │ ├── logon.vcxproj.filters │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ ├── stdafx.h │ │ │ │ │ └── targetver.h │ │ │ ├── NTFSParser │ │ │ │ ├── NTFSParser.sln │ │ │ │ ├── NTFSParser │ │ │ │ │ ├── NTFS.h │ │ │ │ │ ├── NTFSParser.cpp │ │ │ │ │ ├── NTFSParser.vcxproj │ │ │ │ │ ├── NTFSParser.vcxproj.filters │ │ │ │ │ ├── NTFS_Attribute.h │ │ │ │ │ ├── NTFS_Common.h │ │ │ │ │ ├── NTFS_DataType.h │ │ │ │ │ ├── NTFS_FileRecord.h │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ ├── stdafx.h │ │ │ │ │ └── targetver.h │ │ │ │ └── NTFSParserDLL │ │ │ │ │ ├── NTFS.h │ │ │ │ │ ├── NTFSParserDLL.cpp │ │ │ │ │ ├── NTFSParserDLL.vcxproj │ │ │ │ │ ├── NTFSParserDLL.vcxproj.filters │ │ │ │ │ ├── NTFS_Attribute.h │ │ │ │ │ ├── NTFS_Common.h │ │ │ │ │ ├── NTFS_DataType.h │ │ │ │ │ ├── NTFS_FileRecord.h │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── dllmain.cpp │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ ├── stdafx.h │ │ │ │ │ └── targetver.h │ │ │ ├── Out-Minidump.ps1 │ │ │ ├── Usage.md │ │ │ └── VolumeShadowCopyTools.ps1 │ │ ├── LICENSE │ │ ├── Mayhem │ │ │ ├── Mayhem.psd1 │ │ │ ├── Mayhem.psm1 │ │ │ └── Usage.md │ │ ├── Persistence │ │ │ ├── Persistence.psd1 │ │ │ ├── Persistence.psm1 │ │ │ └── Usage.md │ │ ├── PowerSploit.psd1 │ │ ├── PowerSploit.psm1 │ │ ├── PowerSploit.pssproj │ │ ├── PowerSploit.sln │ │ ├── Privesc │ │ │ ├── Get-System.ps1 │ │ │ ├── PowerUp.ps1 │ │ │ ├── Privesc.psd1 │ │ │ ├── Privesc.psm1 │ │ │ └── README.md │ │ ├── README.md │ │ ├── Recon │ │ │ ├── Dictionaries │ │ │ │ ├── admin.txt │ │ │ │ ├── generic.txt │ │ │ │ └── sharepoint.txt │ │ │ ├── Get-ComputerDetail.ps1 │ │ │ ├── Get-HttpStatus.ps1 │ │ │ ├── Invoke-CompareAttributesForClass.ps1 │ │ │ ├── Invoke-Portscan.ps1 │ │ │ ├── Invoke-ReverseDnsLookup.ps1 │ │ │ ├── PowerView.ps1 │ │ │ ├── README.md │ │ │ ├── Recon.psd1 │ │ │ └── Recon.psm1 │ │ ├── ScriptModification │ │ │ ├── Out-CompressedDll.ps1 │ │ │ ├── Out-EncodedCommand.ps1 │ │ │ ├── Out-EncryptedScript.ps1 │ │ │ ├── Remove-Comment.ps1 │ │ │ ├── ScriptModification.psd1 │ │ │ ├── ScriptModification.psm1 │ │ │ └── Usage.md │ │ ├── Tests │ │ │ ├── CodeExecution.tests.ps1 │ │ │ ├── Exfiltration.tests.ps1 │ │ │ ├── PowerSploit.tests.ps1 │ │ │ ├── Privesc.tests.ps1 │ │ │ └── Recon.tests.ps1 │ │ ├── docs │ │ │ ├── AntivirusBypass │ │ │ │ └── Find-AVSignature.md │ │ │ ├── CodeExecution │ │ │ │ ├── Invoke-DllInjection.md │ │ │ │ ├── Invoke-ReflectivePEInjection.md │ │ │ │ ├── Invoke-Shellcode.md │ │ │ │ └── Invoke-WmiCommand.md │ │ │ ├── Mayhem │ │ │ │ ├── Set-CriticalProcess.md │ │ │ │ └── Set-MasterBootRecord.md │ │ │ ├── Persistence │ │ │ │ ├── Add-Persistence.md │ │ │ │ ├── Get-SecurityPackage.md │ │ │ │ ├── Install-SSP.md │ │ │ │ ├── New-ElevatedPersistenceOption.md │ │ │ │ └── New-UserPersistenceOption.md │ │ │ ├── Privesc │ │ │ │ ├── Add-ServiceDacl.md │ │ │ │ ├── Enable-Privilege.md │ │ │ │ ├── Find-PathDLLHijack.md │ │ │ │ ├── Find-ProcessDLLHijack.md │ │ │ │ ├── Get-ApplicationHost.md │ │ │ │ ├── Get-CachedGPPPassword.md │ │ │ │ ├── Get-ModifiablePath.md │ │ │ │ ├── Get-ModifiableRegistryAutoRun.md │ │ │ │ ├── Get-ModifiableScheduledTaskFile.md │ │ │ │ ├── Get-ModifiableService.md │ │ │ │ ├── Get-ModifiableServiceFile.md │ │ │ │ ├── Get-ProcessTokenGroup.md │ │ │ │ ├── Get-ProcessTokenPrivilege.md │ │ │ │ ├── Get-RegistryAlwaysInstallElevated.md │ │ │ │ ├── Get-RegistryAutoLogon.md │ │ │ │ ├── Get-ServiceDetail.md │ │ │ │ ├── Get-SiteListPassword.md │ │ │ │ ├── Get-System.md │ │ │ │ ├── Get-UnattendedInstallFile.md │ │ │ │ ├── Get-UnquotedService.md │ │ │ │ ├── Get-WebConfig.md │ │ │ │ ├── Install-ServiceBinary.md │ │ │ │ ├── Invoke-PrivescAudit.md │ │ │ │ ├── Invoke-ServiceAbuse.md │ │ │ │ ├── Invoke-WScriptUACBypass.md │ │ │ │ ├── Restore-ServiceBinary.md │ │ │ │ ├── Set-ServiceBinaryPath.md │ │ │ │ ├── Test-ServiceDaclPermission.md │ │ │ │ ├── Write-HijackDll.md │ │ │ │ ├── Write-ServiceBinary.md │ │ │ │ ├── Write-UserAddMSI.md │ │ │ │ └── index.md │ │ │ ├── Recon │ │ │ │ ├── Add-DomainGroupMember.md │ │ │ │ ├── Add-DomainObjectAcl.md │ │ │ │ ├── Add-RemoteConnection.md │ │ │ │ ├── Convert-ADName.md │ │ │ │ ├── ConvertFrom-SID.md │ │ │ │ ├── ConvertFrom-UACValue.md │ │ │ │ ├── ConvertTo-SID.md │ │ │ │ ├── Export-PowerViewCSV.md │ │ │ │ ├── Find-DomainLocalGroupMember.md │ │ │ │ ├── Find-DomainObjectPropertyOutlier.md │ │ │ │ ├── Find-DomainProcess.md │ │ │ │ ├── Find-DomainShare.md │ │ │ │ ├── Find-DomainUserEvent.md │ │ │ │ ├── Find-DomainUserLocation.md │ │ │ │ ├── Find-InterestingDomainAcl.md │ │ │ │ ├── Find-InterestingDomainShareFile.md │ │ │ │ ├── Find-InterestingFile.md │ │ │ │ ├── Find-LocalAdminAccess.md │ │ │ │ ├── Get-ComputerDetail.md │ │ │ │ ├── Get-Domain.md │ │ │ │ ├── Get-DomainComputer.md │ │ │ │ ├── Get-DomainController.md │ │ │ │ ├── Get-DomainDFSShare.md │ │ │ │ ├── Get-DomainDNSRecord.md │ │ │ │ ├── Get-DomainDNSZone.md │ │ │ │ ├── Get-DomainFileServer.md │ │ │ │ ├── Get-DomainForeignGroupMember.md │ │ │ │ ├── Get-DomainForeignUser.md │ │ │ │ ├── Get-DomainGPO.md │ │ │ │ ├── Get-DomainGPOComputerLocalGroupMapping.md │ │ │ │ ├── Get-DomainGPOLocalGroup.md │ │ │ │ ├── Get-DomainGPOUserLocalGroupMapping.md │ │ │ │ ├── Get-DomainGroup.md │ │ │ │ ├── Get-DomainGroupMember.md │ │ │ │ ├── Get-DomainManagedSecurityGroup.md │ │ │ │ ├── Get-DomainOU.md │ │ │ │ ├── Get-DomainObject.md │ │ │ │ ├── Get-DomainObjectAcl.md │ │ │ │ ├── Get-DomainPolicy.md │ │ │ │ ├── Get-DomainSID.md │ │ │ │ ├── Get-DomainSPNTicket.md │ │ │ │ ├── Get-DomainSite.md │ │ │ │ ├── Get-DomainSubnet.md │ │ │ │ ├── Get-DomainTrust.md │ │ │ │ ├── Get-DomainTrustMapping.md │ │ │ │ ├── Get-DomainUser.md │ │ │ │ ├── Get-DomainUserEvent.md │ │ │ │ ├── Get-Forest.md │ │ │ │ ├── Get-ForestDomain.md │ │ │ │ ├── Get-ForestGlobalCatalog.md │ │ │ │ ├── Get-ForestTrust.md │ │ │ │ ├── Get-HttpStatus.md │ │ │ │ ├── Get-NetComputerSiteName.md │ │ │ │ ├── Get-NetLocalGroup.md │ │ │ │ ├── Get-NetLocalGroupMember.md │ │ │ │ ├── Get-NetLoggedon.md │ │ │ │ ├── Get-NetRDPSession.md │ │ │ │ ├── Get-NetSession.md │ │ │ │ ├── Get-NetShare.md │ │ │ │ ├── Get-PathAcl.md │ │ │ │ ├── Get-RegLoggedOn.md │ │ │ │ ├── Get-WMIProcess.md │ │ │ │ ├── Get-WMIRegCachedRDPConnection.md │ │ │ │ ├── Get-WMIRegLastLoggedOn.md │ │ │ │ ├── Get-WMIRegMountedDrive.md │ │ │ │ ├── Get-WMIRegProxy.md │ │ │ │ ├── Invoke-Kerberoast.md │ │ │ │ ├── Invoke-Portscan.md │ │ │ │ ├── Invoke-ReverseDnsLookup.md │ │ │ │ ├── Invoke-RevertToSelf.md │ │ │ │ ├── Invoke-UserImpersonation.md │ │ │ │ ├── New-DomainGroup.md │ │ │ │ ├── New-DomainUser.md │ │ │ │ ├── Remove-RemoteConnection.md │ │ │ │ ├── Resolve-IPAddress.md │ │ │ │ ├── Set-DomainObject.md │ │ │ │ ├── Set-DomainObjectOwner.md │ │ │ │ ├── Set-DomainUserPassword.md │ │ │ │ ├── Test-AdminAccess.md │ │ │ │ └── index.md │ │ │ ├── ScriptModification │ │ │ │ ├── Out-CompressedDll.md │ │ │ │ ├── Out-EncodedCommand.md │ │ │ │ ├── Out-EncryptedScript.md │ │ │ │ └── Remove-Comment.md │ │ │ └── index.md │ │ └── mkdocs.yml │ ├── gtfobins.json │ ├── lester.json │ ├── loader.dll │ ├── pam.c │ ├── reports │ │ ├── generic.md │ │ ├── linux.md │ │ └── windows.md │ └── stagetwo.dll ├── db.py ├── facts │ ├── __init__.py │ ├── ability.py │ ├── implant.py │ ├── linux.py │ ├── tamper.py │ └── windows.py ├── gtfobins.py ├── manager.py ├── modules │ ├── __init__.py │ ├── agnostic │ │ ├── __init__.py │ │ ├── clean.py │ │ ├── enumerate │ │ │ ├── __init__.py │ │ │ ├── ability.py │ │ │ ├── escalate │ │ │ │ ├── __init__.py │ │ │ │ ├── implant.py │ │ │ │ └── replace.py │ │ │ └── gather.py │ │ ├── implant.py │ │ └── report.py │ ├── enumerate.py │ ├── implant.py │ ├── linux │ │ ├── __init__.py │ │ ├── enumerate │ │ │ ├── __init__.py │ │ │ ├── creds │ │ │ │ ├── __init__.py │ │ │ │ ├── pam.py │ │ │ │ ├── password.py │ │ │ │ └── private_key.py │ │ │ ├── escalate │ │ │ │ ├── __init__.py │ │ │ │ ├── append_passwd.py │ │ │ │ ├── leak_privkey.py │ │ │ │ └── write_authorized_keys.py │ │ │ ├── file │ │ │ │ ├── __init__.py │ │ │ │ ├── caps.py │ │ │ │ └── suid.py │ │ │ ├── misc │ │ │ │ ├── __init__.py │ │ │ │ └── writable_path.py │ │ │ ├── software │ │ │ │ ├── __init__.py │ │ │ │ ├── cron.py │ │ │ │ ├── pkexec │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cve_2021_4034.py │ │ │ │ │ └── version.py │ │ │ │ ├── screen │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── cve_2017_5618.py │ │ │ │ └── sudo │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cve_2019_14287.py │ │ │ │ │ ├── cve_2025_32463.py │ │ │ │ │ ├── rules.py │ │ │ │ │ └── version.py │ │ │ ├── system │ │ │ │ ├── __init__.py │ │ │ │ ├── aslr.py │ │ │ │ ├── container.py │ │ │ │ ├── distro.py │ │ │ │ ├── fstab.py │ │ │ │ ├── hosts.py │ │ │ │ ├── init.py │ │ │ │ ├── network.py │ │ │ │ ├── process.py │ │ │ │ ├── selinux.py │ │ │ │ ├── services.py │ │ │ │ └── uname.py │ │ │ └── user │ │ │ │ ├── __init__.py │ │ │ │ └── group.py │ │ └── implant │ │ │ ├── __init__.py │ │ │ ├── authorized_key.py │ │ │ ├── pam.py │ │ │ └── passwd.py │ └── windows │ │ ├── __init__.py │ │ ├── bloodhound.py │ │ ├── enumerate │ │ ├── __init__.py │ │ ├── domain │ │ │ ├── __init__.py │ │ │ ├── computer.py │ │ │ ├── fileserver.py │ │ │ ├── group.py │ │ │ ├── site.py │ │ │ └── user.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ └── shares.py │ │ ├── protections │ │ │ ├── __init__.py │ │ │ ├── antivirus.py │ │ │ ├── defender.py │ │ │ ├── lsa.py │ │ │ └── uac.py │ │ ├── system │ │ │ ├── __init__.py │ │ │ ├── alwaysinstallelevated.py │ │ │ ├── clipboard.py │ │ │ ├── drives.py │ │ │ ├── environment.py │ │ │ ├── hotfixes.py │ │ │ ├── processes.py │ │ │ ├── programs.py │ │ │ └── services.py │ │ ├── token │ │ │ ├── __init__.py │ │ │ ├── potato.py │ │ │ └── privs.py │ │ └── user │ │ │ ├── __init__.py │ │ │ └── group.py │ │ ├── manage │ │ ├── __init__.py │ │ └── powershell │ │ │ ├── __init__.py │ │ │ └── import.py │ │ └── powersploit.py ├── platform │ ├── __init__.py │ ├── linux.py │ └── windows.py ├── subprocess.py ├── target.py └── util.py ├── pwncatrc ├── pyproject.toml ├── run-tests.sh ├── test.py └── tests ├── conftest.py ├── test_fileio.py ├── test_manager.py ├── test_platform.py ├── test_session.py └── test_test.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | pwncat/data/PowerSploit/**/*.ps1 linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bug_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/.github/PULL_REQUEST_TEMPLATE/bug_fix.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/.github/PULL_REQUEST_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/.github/PULL_REQUEST_TEMPLATE/module.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/Dockerfile -------------------------------------------------------------------------------- /IDEAS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/IDEAS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/README.md -------------------------------------------------------------------------------- /data/dirtycow/dirtycow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/data/dirtycow/dirtycow.c -------------------------------------------------------------------------------- /data/dirtycow/mini_dirtycow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/data/dirtycow/mini_dirtycow.c -------------------------------------------------------------------------------- /data/pwncat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/data/pwncat -------------------------------------------------------------------------------- /data/pwncat.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/data/pwncat.pub -------------------------------------------------------------------------------- /data/pwncatrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/data/pwncatrc -------------------------------------------------------------------------------- /db/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/apidoc/module.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/apidoc/module.rst_t -------------------------------------------------------------------------------- /docs/apidoc/package.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/apidoc/package.rst_t -------------------------------------------------------------------------------- /docs/apidoc/package.rst_t.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/apidoc/package.rst_t.bak -------------------------------------------------------------------------------- /docs/apidoc/toc.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/apidoc/toc.rst_t -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/rebuild_api_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/rebuild_api_docs.sh -------------------------------------------------------------------------------- /docs/source/api/pwncat.channel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.channel.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.commands.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.config.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.db.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.facts.ability.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.facts.ability.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.facts.implant.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.facts.implant.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.facts.linux.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.facts.linux.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.facts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.facts.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.facts.tamper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.facts.tamper.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.facts.windows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.facts.windows.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.gtfobins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.gtfobins.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.manager.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.modules.enumerate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.modules.enumerate.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.modules.implant.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.modules.implant.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.modules.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.platform.linux.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.platform.linux.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.platform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.platform.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.platform.windows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.platform.windows.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.subprocess.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.subprocess.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.target.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.target.rst -------------------------------------------------------------------------------- /docs/source/api/pwncat.util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/api/pwncat.util.rst -------------------------------------------------------------------------------- /docs/source/commands/alias.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/alias.rst -------------------------------------------------------------------------------- /docs/source/commands/back.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/back.rst -------------------------------------------------------------------------------- /docs/source/commands/bind.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/bind.rst -------------------------------------------------------------------------------- /docs/source/commands/connect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/connect.rst -------------------------------------------------------------------------------- /docs/source/commands/download.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/download.rst -------------------------------------------------------------------------------- /docs/source/commands/escalate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/escalate.rst -------------------------------------------------------------------------------- /docs/source/commands/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/index.rst -------------------------------------------------------------------------------- /docs/source/commands/info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/info.rst -------------------------------------------------------------------------------- /docs/source/commands/lcd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/lcd.rst -------------------------------------------------------------------------------- /docs/source/commands/listen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/listen.rst -------------------------------------------------------------------------------- /docs/source/commands/listeners.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/listeners.rst -------------------------------------------------------------------------------- /docs/source/commands/load.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/load.rst -------------------------------------------------------------------------------- /docs/source/commands/lpwd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/lpwd.rst -------------------------------------------------------------------------------- /docs/source/commands/run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/run.rst -------------------------------------------------------------------------------- /docs/source/commands/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/search.rst -------------------------------------------------------------------------------- /docs/source/commands/upload.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/upload.rst -------------------------------------------------------------------------------- /docs/source/commands/use.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/commands/use.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/configuration.rst -------------------------------------------------------------------------------- /docs/source/enum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/enum.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/persist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/persist.rst -------------------------------------------------------------------------------- /docs/source/privesc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/privesc.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /docs/source/windows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/docs/source/windows.rst -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/poetry.lock -------------------------------------------------------------------------------- /pwncat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/__init__.py -------------------------------------------------------------------------------- /pwncat/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/__main__.py -------------------------------------------------------------------------------- /pwncat/channel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/channel/__init__.py -------------------------------------------------------------------------------- /pwncat/channel/bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/channel/bind.py -------------------------------------------------------------------------------- /pwncat/channel/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/channel/connect.py -------------------------------------------------------------------------------- /pwncat/channel/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/channel/socket.py -------------------------------------------------------------------------------- /pwncat/channel/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/channel/ssh.py -------------------------------------------------------------------------------- /pwncat/channel/ssl_bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/channel/ssl_bind.py -------------------------------------------------------------------------------- /pwncat/channel/ssl_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/channel/ssl_connect.py -------------------------------------------------------------------------------- /pwncat/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/__init__.py -------------------------------------------------------------------------------- /pwncat/commands/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/alias.py -------------------------------------------------------------------------------- /pwncat/commands/back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/back.py -------------------------------------------------------------------------------- /pwncat/commands/bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/bind.py -------------------------------------------------------------------------------- /pwncat/commands/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/connect.py -------------------------------------------------------------------------------- /pwncat/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/download.py -------------------------------------------------------------------------------- /pwncat/commands/escalate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/escalate.py -------------------------------------------------------------------------------- /pwncat/commands/exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/exit.py -------------------------------------------------------------------------------- /pwncat/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/help.py -------------------------------------------------------------------------------- /pwncat/commands/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/info.py -------------------------------------------------------------------------------- /pwncat/commands/lcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/lcd.py -------------------------------------------------------------------------------- /pwncat/commands/leave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/leave.py -------------------------------------------------------------------------------- /pwncat/commands/listener_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/listener_new.py -------------------------------------------------------------------------------- /pwncat/commands/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/listeners.py -------------------------------------------------------------------------------- /pwncat/commands/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/load.py -------------------------------------------------------------------------------- /pwncat/commands/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/local.py -------------------------------------------------------------------------------- /pwncat/commands/lpwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/lpwd.py -------------------------------------------------------------------------------- /pwncat/commands/remember.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/remember.py -------------------------------------------------------------------------------- /pwncat/commands/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/reset.py -------------------------------------------------------------------------------- /pwncat/commands/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/run.py -------------------------------------------------------------------------------- /pwncat/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/search.py -------------------------------------------------------------------------------- /pwncat/commands/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/sessions.py -------------------------------------------------------------------------------- /pwncat/commands/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/set.py -------------------------------------------------------------------------------- /pwncat/commands/shortcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/shortcut.py -------------------------------------------------------------------------------- /pwncat/commands/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/upload.py -------------------------------------------------------------------------------- /pwncat/commands/use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/commands/use.py -------------------------------------------------------------------------------- /pwncat/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/config.py -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/.gitignore -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/AntivirusBypass/AntivirusBypass.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/AntivirusBypass/AntivirusBypass.psd1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/AntivirusBypass/AntivirusBypass.psm1: -------------------------------------------------------------------------------- 1 | Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | % { . $_.FullName} 2 | -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/AntivirusBypass/Find-AVSignature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/AntivirusBypass/Find-AVSignature.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/AntivirusBypass/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/AntivirusBypass/Usage.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/CodeExecution.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/CodeExecution.psd1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/CodeExecution.psm1: -------------------------------------------------------------------------------- 1 | Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | % { . $_.FullName} 2 | -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-DllInjection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-DllInjection.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL.sln -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/DemoDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/DemoDLL.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/DemoDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/DemoDLL.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/DemoDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/DemoDLL.vcxproj -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/DemoDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/DemoDLL.vcxproj.filters -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/ReadMe.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/dllmain.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/stdafx.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/stdafx.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL/DemoDLL/targetver.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess.sln -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess.vcxproj -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess.vcxproj.filters -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/ReadMe.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/dllmain.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/stdafx.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/stdafx.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoDLL_RemoteProcess/DemoDLL_RemoteProcess/targetver.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe.sln -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/DemoExe_MD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/DemoExe_MD.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/DemoExe_MD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/DemoExe_MD.vcxproj -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/DemoExe_MD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/DemoExe_MD.vcxproj.filters -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/ReadMe.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/stdafx.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/stdafx.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MD/targetver.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/DemoExe_MDd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/DemoExe_MDd.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/DemoExe_MDd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/DemoExe_MDd.vcxproj -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/DemoExe_MDd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/DemoExe_MDd.vcxproj.filters -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/ReadMe.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/stdafx.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/stdafx.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/DemoExe/DemoExe_MDd/targetver.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo.sln -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/ExeToInjectInTo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/ExeToInjectInTo.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/ExeToInjectInTo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/ExeToInjectInTo.vcxproj -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/ExeToInjectInTo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/ExeToInjectInTo.vcxproj.filters -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/ReadMe.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/stdafx.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/stdafx.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/ExeToInjectInTo/ExeToInjectInTo/targetver.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/readme.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x64/CallDllMain.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x64/CallDllMain.asm -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x64/ExitThread.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x64/ExitThread.asm -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x64/GetFuncAddress.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x64/GetFuncAddress.asm -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x64/LoadLibraryA.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x64/LoadLibraryA.asm -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x86/CallDllMain.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x86/CallDllMain.asm -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x86/ExitThread.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x86/ExitThread.asm -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x86/GetProcAddress.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x86/GetProcAddress.asm -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-Shellcode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-Shellcode.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Invoke-WmiCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Invoke-WmiCommand.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/CodeExecution/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/CodeExecution/Usage.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Exfiltration.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Exfiltration.psd1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Exfiltration.psm1: -------------------------------------------------------------------------------- 1 | Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | % { . $_.FullName} 2 | -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Get-GPPAutologon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Get-GPPAutologon.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Get-GPPPassword.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Get-GPPPassword.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Get-Keystrokes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Get-Keystrokes.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Get-MicrophoneAudio.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Get-MicrophoneAudio.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Get-TimedScreenshot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Get-TimedScreenshot.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Get-VaultCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Get-VaultCredential.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Get-VaultCredential.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Get-VaultCredential.ps1xml -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Invoke-CredentialInjection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Invoke-CredentialInjection.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Invoke-Mimikatz.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Invoke-Mimikatz.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Invoke-NinjaCopy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Invoke-NinjaCopy.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Invoke-TokenManipulation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Invoke-TokenManipulation.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser.sln -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/LogonUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/LogonUser.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/LogonUser.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/LogonUser.vcxproj -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/LogonUser.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/LogonUser.vcxproj.filters -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/ReadMe.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/stdafx.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/stdafx.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/LogonUser/targetver.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/ReadMe.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/dllmain.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/logon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/logon.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/logon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/logon.vcxproj -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/logon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/logon.vcxproj.filters -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/stdafx.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/stdafx.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/LogonUser/LogonUser/logon/targetver.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser.sln -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFS.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFSParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFSParser.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFSParser.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFSParser.vcxproj -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFSParser.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFSParser.vcxproj.filters -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFS_Attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFS_Attribute.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFS_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFS_Common.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFS_DataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFS_DataType.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFS_FileRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/NTFS_FileRecord.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/ReadMe.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/stdafx.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/stdafx.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParser/targetver.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFS.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFSParserDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFSParserDLL.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFSParserDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFSParserDLL.vcxproj -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFSParserDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFSParserDLL.vcxproj.filters -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFS_Attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFS_Attribute.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFS_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFS_Common.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFS_DataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFS_DataType.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFS_FileRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/NTFS_FileRecord.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/ReadMe.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/dllmain.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/stdafx.cpp -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/stdafx.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/NTFSParser/NTFSParserDLL/targetver.h -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Out-Minidump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Out-Minidump.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/Usage.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Exfiltration/VolumeShadowCopyTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Exfiltration/VolumeShadowCopyTools.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/LICENSE -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Mayhem/Mayhem.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Mayhem/Mayhem.psd1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Mayhem/Mayhem.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Mayhem/Mayhem.psm1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Mayhem/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Mayhem/Usage.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Persistence/Persistence.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Persistence/Persistence.psd1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Persistence/Persistence.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Persistence/Persistence.psm1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Persistence/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Persistence/Usage.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/PowerSploit.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/PowerSploit.psd1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/PowerSploit.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/PowerSploit.psm1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/PowerSploit.pssproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/PowerSploit.pssproj -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/PowerSploit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/PowerSploit.sln -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Privesc/Get-System.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Privesc/Get-System.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Privesc/PowerUp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Privesc/PowerUp.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Privesc/Privesc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Privesc/Privesc.psd1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Privesc/Privesc.psm1: -------------------------------------------------------------------------------- 1 | Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | % { . $_.FullName} 2 | -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Privesc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Privesc/README.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/README.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Recon/Dictionaries/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Recon/Dictionaries/admin.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Recon/Dictionaries/generic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Recon/Dictionaries/generic.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Recon/Dictionaries/sharepoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Recon/Dictionaries/sharepoint.txt -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Recon/Get-ComputerDetail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Recon/Get-ComputerDetail.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Recon/Get-HttpStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Recon/Get-HttpStatus.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Recon/Invoke-CompareAttributesForClass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Recon/Invoke-CompareAttributesForClass.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Recon/Invoke-Portscan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Recon/Invoke-Portscan.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Recon/Invoke-ReverseDnsLookup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Recon/Invoke-ReverseDnsLookup.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Recon/PowerView.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Recon/PowerView.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Recon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Recon/README.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Recon/Recon.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Recon/Recon.psd1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Recon/Recon.psm1: -------------------------------------------------------------------------------- 1 | Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | % { . $_.FullName} 2 | -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/ScriptModification/Out-CompressedDll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/ScriptModification/Out-CompressedDll.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/ScriptModification/Out-EncodedCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/ScriptModification/Out-EncodedCommand.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/ScriptModification/Out-EncryptedScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/ScriptModification/Out-EncryptedScript.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/ScriptModification/Remove-Comment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/ScriptModification/Remove-Comment.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/ScriptModification/ScriptModification.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/ScriptModification/ScriptModification.psd1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/ScriptModification/ScriptModification.psm1: -------------------------------------------------------------------------------- 1 | Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | % { . $_.FullName} 2 | -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/ScriptModification/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/ScriptModification/Usage.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Tests/CodeExecution.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Tests/CodeExecution.tests.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Tests/Exfiltration.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Tests/Exfiltration.tests.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Tests/PowerSploit.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Tests/PowerSploit.tests.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Tests/Privesc.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Tests/Privesc.tests.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/Tests/Recon.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/Tests/Recon.tests.ps1 -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/AntivirusBypass/Find-AVSignature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/AntivirusBypass/Find-AVSignature.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/CodeExecution/Invoke-DllInjection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/CodeExecution/Invoke-DllInjection.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/CodeExecution/Invoke-ReflectivePEInjection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/CodeExecution/Invoke-ReflectivePEInjection.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/CodeExecution/Invoke-Shellcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/CodeExecution/Invoke-Shellcode.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/CodeExecution/Invoke-WmiCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/CodeExecution/Invoke-WmiCommand.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Mayhem/Set-CriticalProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Mayhem/Set-CriticalProcess.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Mayhem/Set-MasterBootRecord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Mayhem/Set-MasterBootRecord.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Persistence/Add-Persistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Persistence/Add-Persistence.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Persistence/Get-SecurityPackage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Persistence/Get-SecurityPackage.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Persistence/Install-SSP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Persistence/Install-SSP.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Persistence/New-ElevatedPersistenceOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Persistence/New-ElevatedPersistenceOption.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Persistence/New-UserPersistenceOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Persistence/New-UserPersistenceOption.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Add-ServiceDacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Add-ServiceDacl.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Enable-Privilege.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Enable-Privilege.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Find-PathDLLHijack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Find-PathDLLHijack.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Find-ProcessDLLHijack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Find-ProcessDLLHijack.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-ApplicationHost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-ApplicationHost.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-CachedGPPPassword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-CachedGPPPassword.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-ModifiablePath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-ModifiablePath.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-ModifiableRegistryAutoRun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-ModifiableRegistryAutoRun.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-ModifiableScheduledTaskFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-ModifiableScheduledTaskFile.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-ModifiableService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-ModifiableService.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-ModifiableServiceFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-ModifiableServiceFile.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-ProcessTokenGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-ProcessTokenGroup.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-ProcessTokenPrivilege.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-ProcessTokenPrivilege.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-RegistryAlwaysInstallElevated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-RegistryAlwaysInstallElevated.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-RegistryAutoLogon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-RegistryAutoLogon.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-ServiceDetail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-ServiceDetail.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-SiteListPassword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-SiteListPassword.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-System.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-UnattendedInstallFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-UnattendedInstallFile.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-UnquotedService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-UnquotedService.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Get-WebConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Get-WebConfig.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Install-ServiceBinary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Install-ServiceBinary.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Invoke-PrivescAudit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Invoke-PrivescAudit.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Invoke-ServiceAbuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Invoke-ServiceAbuse.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Invoke-WScriptUACBypass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Invoke-WScriptUACBypass.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Restore-ServiceBinary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Restore-ServiceBinary.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Set-ServiceBinaryPath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Set-ServiceBinaryPath.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Test-ServiceDaclPermission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Test-ServiceDaclPermission.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Write-HijackDll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Write-HijackDll.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Write-ServiceBinary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Write-ServiceBinary.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/Write-UserAddMSI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/Write-UserAddMSI.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Privesc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Privesc/index.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Add-DomainGroupMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Add-DomainGroupMember.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Add-DomainObjectAcl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Add-DomainObjectAcl.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Add-RemoteConnection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Add-RemoteConnection.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Convert-ADName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Convert-ADName.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/ConvertFrom-SID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/ConvertFrom-SID.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/ConvertFrom-UACValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/ConvertFrom-UACValue.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/ConvertTo-SID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/ConvertTo-SID.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Export-PowerViewCSV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Export-PowerViewCSV.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Find-DomainLocalGroupMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Find-DomainLocalGroupMember.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Find-DomainObjectPropertyOutlier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Find-DomainObjectPropertyOutlier.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Find-DomainProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Find-DomainProcess.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Find-DomainShare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Find-DomainShare.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Find-DomainUserEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Find-DomainUserEvent.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Find-DomainUserLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Find-DomainUserLocation.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Find-InterestingDomainAcl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Find-InterestingDomainAcl.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Find-InterestingDomainShareFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Find-InterestingDomainShareFile.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Find-InterestingFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Find-InterestingFile.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Find-LocalAdminAccess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Find-LocalAdminAccess.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-ComputerDetail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-ComputerDetail.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-Domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-Domain.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainComputer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainComputer.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainController.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainController.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainDFSShare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainDFSShare.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainDNSRecord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainDNSRecord.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainDNSZone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainDNSZone.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainFileServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainFileServer.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainForeignGroupMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainForeignGroupMember.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainForeignUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainForeignUser.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainGPO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainGPO.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainGPOComputerLocalGroupMapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainGPOComputerLocalGroupMapping.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainGPOLocalGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainGPOLocalGroup.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainGPOUserLocalGroupMapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainGPOUserLocalGroupMapping.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainGroup.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainGroupMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainGroupMember.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainManagedSecurityGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainManagedSecurityGroup.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainOU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainOU.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainObject.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainObjectAcl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainObjectAcl.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainPolicy.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainSID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainSID.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainSPNTicket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainSPNTicket.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainSite.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainSubnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainSubnet.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainTrust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainTrust.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainTrustMapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainTrustMapping.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainUser.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-DomainUserEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-DomainUserEvent.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-Forest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-Forest.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-ForestDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-ForestDomain.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-ForestGlobalCatalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-ForestGlobalCatalog.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-ForestTrust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-ForestTrust.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-HttpStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-HttpStatus.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-NetComputerSiteName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-NetComputerSiteName.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-NetLocalGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-NetLocalGroup.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-NetLocalGroupMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-NetLocalGroupMember.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-NetLoggedon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-NetLoggedon.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-NetRDPSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-NetRDPSession.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-NetSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-NetSession.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-NetShare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-NetShare.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-PathAcl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-PathAcl.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-RegLoggedOn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-RegLoggedOn.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-WMIProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-WMIProcess.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-WMIRegCachedRDPConnection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-WMIRegCachedRDPConnection.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-WMIRegLastLoggedOn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-WMIRegLastLoggedOn.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-WMIRegMountedDrive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-WMIRegMountedDrive.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Get-WMIRegProxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Get-WMIRegProxy.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Invoke-Kerberoast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Invoke-Kerberoast.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Invoke-Portscan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Invoke-Portscan.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Invoke-ReverseDnsLookup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Invoke-ReverseDnsLookup.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Invoke-RevertToSelf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Invoke-RevertToSelf.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Invoke-UserImpersonation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Invoke-UserImpersonation.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/New-DomainGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/New-DomainGroup.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/New-DomainUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/New-DomainUser.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Remove-RemoteConnection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Remove-RemoteConnection.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Resolve-IPAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Resolve-IPAddress.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Set-DomainObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Set-DomainObject.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Set-DomainObjectOwner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Set-DomainObjectOwner.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Set-DomainUserPassword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Set-DomainUserPassword.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/Test-AdminAccess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/Test-AdminAccess.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/Recon/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/Recon/index.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/ScriptModification/Out-CompressedDll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/ScriptModification/Out-CompressedDll.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/ScriptModification/Out-EncodedCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/ScriptModification/Out-EncodedCommand.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/ScriptModification/Out-EncryptedScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/ScriptModification/Out-EncryptedScript.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/ScriptModification/Remove-Comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/ScriptModification/Remove-Comment.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/docs/index.md -------------------------------------------------------------------------------- /pwncat/data/PowerSploit/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/PowerSploit/mkdocs.yml -------------------------------------------------------------------------------- /pwncat/data/gtfobins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/gtfobins.json -------------------------------------------------------------------------------- /pwncat/data/lester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/lester.json -------------------------------------------------------------------------------- /pwncat/data/loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/loader.dll -------------------------------------------------------------------------------- /pwncat/data/pam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/pam.c -------------------------------------------------------------------------------- /pwncat/data/reports/generic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/reports/generic.md -------------------------------------------------------------------------------- /pwncat/data/reports/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/reports/linux.md -------------------------------------------------------------------------------- /pwncat/data/reports/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/reports/windows.md -------------------------------------------------------------------------------- /pwncat/data/stagetwo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/data/stagetwo.dll -------------------------------------------------------------------------------- /pwncat/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/db.py -------------------------------------------------------------------------------- /pwncat/facts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/facts/__init__.py -------------------------------------------------------------------------------- /pwncat/facts/ability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/facts/ability.py -------------------------------------------------------------------------------- /pwncat/facts/implant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/facts/implant.py -------------------------------------------------------------------------------- /pwncat/facts/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/facts/linux.py -------------------------------------------------------------------------------- /pwncat/facts/tamper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/facts/tamper.py -------------------------------------------------------------------------------- /pwncat/facts/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/facts/windows.py -------------------------------------------------------------------------------- /pwncat/gtfobins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/gtfobins.py -------------------------------------------------------------------------------- /pwncat/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/manager.py -------------------------------------------------------------------------------- /pwncat/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/__init__.py -------------------------------------------------------------------------------- /pwncat/modules/agnostic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/agnostic/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/agnostic/clean.py -------------------------------------------------------------------------------- /pwncat/modules/agnostic/enumerate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/agnostic/enumerate/__init__.py -------------------------------------------------------------------------------- /pwncat/modules/agnostic/enumerate/ability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/agnostic/enumerate/ability.py -------------------------------------------------------------------------------- /pwncat/modules/agnostic/enumerate/escalate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/agnostic/enumerate/escalate/implant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/agnostic/enumerate/escalate/implant.py -------------------------------------------------------------------------------- /pwncat/modules/agnostic/enumerate/escalate/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/agnostic/enumerate/escalate/replace.py -------------------------------------------------------------------------------- /pwncat/modules/agnostic/enumerate/gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/agnostic/enumerate/gather.py -------------------------------------------------------------------------------- /pwncat/modules/agnostic/implant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/agnostic/implant.py -------------------------------------------------------------------------------- /pwncat/modules/agnostic/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/agnostic/report.py -------------------------------------------------------------------------------- /pwncat/modules/enumerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/enumerate.py -------------------------------------------------------------------------------- /pwncat/modules/implant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/implant.py -------------------------------------------------------------------------------- /pwncat/modules/linux/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/creds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/creds/__init__.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/creds/pam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/creds/pam.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/creds/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/creds/password.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/creds/private_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/creds/private_key.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/escalate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/escalate/append_passwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/escalate/append_passwd.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/escalate/leak_privkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/escalate/leak_privkey.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/escalate/write_authorized_keys.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/file/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/file/caps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/file/caps.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/file/suid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/file/suid.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/misc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/misc/writable_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/misc/writable_path.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/software/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/software/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/software/cron.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/software/pkexec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/software/pkexec/cve_2021_4034.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/software/pkexec/cve_2021_4034.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/software/pkexec/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/software/pkexec/version.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/software/screen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/software/screen/__init__.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/software/screen/cve_2017_5618.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/software/screen/cve_2017_5618.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/software/sudo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/software/sudo/cve_2019_14287.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/software/sudo/cve_2019_14287.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/software/sudo/cve_2025_32463.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/software/sudo/cve_2025_32463.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/software/sudo/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/software/sudo/rules.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/software/sudo/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/software/sudo/version.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/system/aslr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/system/aslr.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/system/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/system/container.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/system/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/system/distro.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/system/fstab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/system/fstab.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/system/hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/system/hosts.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/system/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/system/init.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/system/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/system/network.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/system/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/system/process.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/system/selinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/system/selinux.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/system/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/system/services.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/system/uname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/system/uname.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/user/__init__.py -------------------------------------------------------------------------------- /pwncat/modules/linux/enumerate/user/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/enumerate/user/group.py -------------------------------------------------------------------------------- /pwncat/modules/linux/implant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/linux/implant/authorized_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/implant/authorized_key.py -------------------------------------------------------------------------------- /pwncat/modules/linux/implant/pam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/implant/pam.py -------------------------------------------------------------------------------- /pwncat/modules/linux/implant/passwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/linux/implant/passwd.py -------------------------------------------------------------------------------- /pwncat/modules/windows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/windows/bloodhound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/bloodhound.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/domain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/domain/__init__.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/domain/computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/domain/computer.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/domain/fileserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/domain/fileserver.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/domain/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/domain/group.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/domain/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/domain/site.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/domain/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/domain/user.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/network/shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/network/shares.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/protections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/protections/__init__.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/protections/antivirus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/protections/antivirus.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/protections/defender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/protections/defender.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/protections/lsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/protections/lsa.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/protections/uac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/protections/uac.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/system/alwaysinstallelevated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/system/alwaysinstallelevated.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/system/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/system/clipboard.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/system/drives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/system/drives.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/system/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/system/environment.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/system/hotfixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/system/hotfixes.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/system/processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/system/processes.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/system/programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/system/programs.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/system/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/system/services.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/token/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/token/potato.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/token/potato.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/token/privs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/token/privs.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/user/__init__.py -------------------------------------------------------------------------------- /pwncat/modules/windows/enumerate/user/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/enumerate/user/group.py -------------------------------------------------------------------------------- /pwncat/modules/windows/manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/windows/manage/powershell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwncat/modules/windows/manage/powershell/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/manage/powershell/import.py -------------------------------------------------------------------------------- /pwncat/modules/windows/powersploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/modules/windows/powersploit.py -------------------------------------------------------------------------------- /pwncat/platform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/platform/__init__.py -------------------------------------------------------------------------------- /pwncat/platform/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/platform/linux.py -------------------------------------------------------------------------------- /pwncat/platform/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/platform/windows.py -------------------------------------------------------------------------------- /pwncat/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/subprocess.py -------------------------------------------------------------------------------- /pwncat/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/target.py -------------------------------------------------------------------------------- /pwncat/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pwncat/util.py -------------------------------------------------------------------------------- /pwncatrc: -------------------------------------------------------------------------------- 1 | ./data/pwncatrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/run-tests.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/test.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_fileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/tests/test_fileio.py -------------------------------------------------------------------------------- /tests/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/tests/test_manager.py -------------------------------------------------------------------------------- /tests/test_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/tests/test_platform.py -------------------------------------------------------------------------------- /tests/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/tests/test_session.py -------------------------------------------------------------------------------- /tests/test_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocapikk/pwncat-vl/HEAD/tests/test_test.py --------------------------------------------------------------------------------