├── .gitignore ├── Bin ├── BrowserGhost.exe ├── BrowserPasswordDump.exe ├── Clone.exe ├── ezNavicat.exe └── laZagne.exe ├── BloodHound ├── SharpHound.exe └── SharpHound.ps1 ├── DingPack ├── DIngPack.cna ├── DIngPack │ ├── DIngPack-darwin-amd64 │ ├── DIngPack-freebsd-386 │ ├── DIngPack-freebsd-amd64 │ ├── DIngPack-linux-386 │ ├── DIngPack-linux-amd64 │ ├── DIngPack-windows-386.exe │ └── DIngPack-windows-amd64.exe ├── linux_dinglog.cna ├── mac_dinglog.cna └── windows_dinglog.cna ├── LICENSE ├── Ladon5.5 ├── CS_Ladon.gif ├── Ladon.cna ├── Ladon.exe ├── Ladon.gif ├── Ladon40.exe └── ReadMe.txt ├── Post-Exploitation └── atexec.dll ├── PowerTools ├── LICENSE ├── PewPewPew │ ├── Invoke-MassCommand.ps1 │ ├── Invoke-MassMimikatz.ps1 │ ├── Invoke-MassSearch.ps1 │ ├── Invoke-MassTemplate.ps1 │ ├── Invoke-MassTokens.ps1 │ └── README.md ├── PowerBreach │ ├── PowerBreach.ps1 │ ├── README.md │ ├── changelog │ └── sendtrigger.py ├── PowerPick │ ├── PSInjector │ │ ├── CurrentDLLs │ │ │ ├── ReflectivePick_x64.dll │ │ │ ├── ReflectivePick_x64.dll.enc │ │ │ ├── ReflectivePick_x86.dll │ │ │ └── ReflectivePick_x86.dll.enc │ │ ├── DLLEnc.ps1 │ │ └── PSInject.ps1 │ ├── PowerPick.sdf │ ├── PowerPick.sln │ ├── README.md │ ├── ReflectivePick │ │ ├── PowerShellRunnerDll.h │ │ ├── ReflectiveDLLInjection.h │ │ ├── ReflectiveLoader.c │ │ ├── ReflectiveLoader.h │ │ ├── ReflectivePick.cpp │ │ ├── ReflectivePick.h │ │ ├── ReflectivePick.vcxproj │ │ ├── ReflectivePick.vcxproj.filters │ │ ├── ReflectivePick.vcxproj.user │ │ ├── dllmain.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── SharpPick │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ │ ├── SharpPick.csproj │ │ └── SharpPick.csproj.user ├── PowerUp │ ├── PowerUp.ps1 │ ├── PowerUp.psd1 │ ├── PowerUp.psm1 │ ├── README.md │ └── Tests │ │ └── PowerUp.tests.ps1 ├── PowerView │ ├── LICENSE │ ├── README.md │ ├── Tests │ │ └── PowerView.tests.ps1 │ ├── powerlogin.ps1 │ ├── powerview.ps1 │ ├── powerview.psd1 │ └── powerview.psm1 └── README.md ├── README.md ├── README_zh.md ├── SpawnReflectiveC2 ├── SpawnReflectiveC2-x64.dll ├── SpawnReflectiveC2-x86.dll └── SpawnReflectiveC2.cna ├── dingding_log.cna ├── doc └── images │ └── logo.png ├── elevate.cna ├── elevate ├── Invoke-2018-8120.ps1 ├── Invoke-EventVwrBypass.ps1 ├── Invoke-MS16032.ps1 ├── Invoke-MS16135.ps1 ├── Invoke-WScriptBypassUAC.ps1 ├── SpoolTrigger.x64.dll ├── SpoolTrigger.x86.dll ├── UAC-TokenMagic.ps1 ├── cve-2015-1701.x64.dll ├── cve-2015-1701.x86.dll ├── cve-2016-0051.x86.dll └── reflectiveJuicyPotato │ ├── JuicyPotato.x32.dll │ ├── JuicyPotato.x64.dll │ ├── README.md │ └── juicypotato.cna ├── externalc2.cna ├── frpc ├── frpc.ini ├── x64 │ └── frpc.exe └── x86 │ └── frpc.exe ├── images ├── 2020-01-08-17-00-32.png ├── 2020-01-08-17-02-13.png ├── 2020-01-08-17-03-57.png ├── 2020-01-08-17-05-18.png └── 2020-01-08-17-40-51.png ├── mimikatz.cna └── procdump ├── procdump.exe └── procdump64.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/.gitignore -------------------------------------------------------------------------------- /Bin/BrowserGhost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/Bin/BrowserGhost.exe -------------------------------------------------------------------------------- /Bin/BrowserPasswordDump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/Bin/BrowserPasswordDump.exe -------------------------------------------------------------------------------- /Bin/Clone.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/Bin/Clone.exe -------------------------------------------------------------------------------- /Bin/ezNavicat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/Bin/ezNavicat.exe -------------------------------------------------------------------------------- /Bin/laZagne.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/Bin/laZagne.exe -------------------------------------------------------------------------------- /BloodHound/SharpHound.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/BloodHound/SharpHound.exe -------------------------------------------------------------------------------- /BloodHound/SharpHound.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/BloodHound/SharpHound.ps1 -------------------------------------------------------------------------------- /DingPack/DIngPack.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/DingPack/DIngPack.cna -------------------------------------------------------------------------------- /DingPack/DIngPack/DIngPack-darwin-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/DingPack/DIngPack/DIngPack-darwin-amd64 -------------------------------------------------------------------------------- /DingPack/DIngPack/DIngPack-freebsd-386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/DingPack/DIngPack/DIngPack-freebsd-386 -------------------------------------------------------------------------------- /DingPack/DIngPack/DIngPack-freebsd-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/DingPack/DIngPack/DIngPack-freebsd-amd64 -------------------------------------------------------------------------------- /DingPack/DIngPack/DIngPack-linux-386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/DingPack/DIngPack/DIngPack-linux-386 -------------------------------------------------------------------------------- /DingPack/DIngPack/DIngPack-linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/DingPack/DIngPack/DIngPack-linux-amd64 -------------------------------------------------------------------------------- /DingPack/DIngPack/DIngPack-windows-386.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/DingPack/DIngPack/DIngPack-windows-386.exe -------------------------------------------------------------------------------- /DingPack/DIngPack/DIngPack-windows-amd64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/DingPack/DIngPack/DIngPack-windows-amd64.exe -------------------------------------------------------------------------------- /DingPack/linux_dinglog.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/DingPack/linux_dinglog.cna -------------------------------------------------------------------------------- /DingPack/mac_dinglog.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/DingPack/mac_dinglog.cna -------------------------------------------------------------------------------- /DingPack/windows_dinglog.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/DingPack/windows_dinglog.cna -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/LICENSE -------------------------------------------------------------------------------- /Ladon5.5/CS_Ladon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/Ladon5.5/CS_Ladon.gif -------------------------------------------------------------------------------- /Ladon5.5/Ladon.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/Ladon5.5/Ladon.cna -------------------------------------------------------------------------------- /Ladon5.5/Ladon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/Ladon5.5/Ladon.exe -------------------------------------------------------------------------------- /Ladon5.5/Ladon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/Ladon5.5/Ladon.gif -------------------------------------------------------------------------------- /Ladon5.5/Ladon40.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/Ladon5.5/Ladon40.exe -------------------------------------------------------------------------------- /Ladon5.5/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/Ladon5.5/ReadMe.txt -------------------------------------------------------------------------------- /Post-Exploitation/atexec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/Post-Exploitation/atexec.dll -------------------------------------------------------------------------------- /PowerTools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/LICENSE -------------------------------------------------------------------------------- /PowerTools/PewPewPew/Invoke-MassCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PewPewPew/Invoke-MassCommand.ps1 -------------------------------------------------------------------------------- /PowerTools/PewPewPew/Invoke-MassMimikatz.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PewPewPew/Invoke-MassMimikatz.ps1 -------------------------------------------------------------------------------- /PowerTools/PewPewPew/Invoke-MassSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PewPewPew/Invoke-MassSearch.ps1 -------------------------------------------------------------------------------- /PowerTools/PewPewPew/Invoke-MassTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PewPewPew/Invoke-MassTemplate.ps1 -------------------------------------------------------------------------------- /PowerTools/PewPewPew/Invoke-MassTokens.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PewPewPew/Invoke-MassTokens.ps1 -------------------------------------------------------------------------------- /PowerTools/PewPewPew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PewPewPew/README.md -------------------------------------------------------------------------------- /PowerTools/PowerBreach/PowerBreach.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerBreach/PowerBreach.ps1 -------------------------------------------------------------------------------- /PowerTools/PowerBreach/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerBreach/README.md -------------------------------------------------------------------------------- /PowerTools/PowerBreach/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerBreach/changelog -------------------------------------------------------------------------------- /PowerTools/PowerBreach/sendtrigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerBreach/sendtrigger.py -------------------------------------------------------------------------------- /PowerTools/PowerPick/PSInjector/CurrentDLLs/ReflectivePick_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/PSInjector/CurrentDLLs/ReflectivePick_x64.dll -------------------------------------------------------------------------------- /PowerTools/PowerPick/PSInjector/CurrentDLLs/ReflectivePick_x64.dll.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/PSInjector/CurrentDLLs/ReflectivePick_x64.dll.enc -------------------------------------------------------------------------------- /PowerTools/PowerPick/PSInjector/CurrentDLLs/ReflectivePick_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/PSInjector/CurrentDLLs/ReflectivePick_x86.dll -------------------------------------------------------------------------------- /PowerTools/PowerPick/PSInjector/CurrentDLLs/ReflectivePick_x86.dll.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/PSInjector/CurrentDLLs/ReflectivePick_x86.dll.enc -------------------------------------------------------------------------------- /PowerTools/PowerPick/PSInjector/DLLEnc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/PSInjector/DLLEnc.ps1 -------------------------------------------------------------------------------- /PowerTools/PowerPick/PSInjector/PSInject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/PSInjector/PSInject.ps1 -------------------------------------------------------------------------------- /PowerTools/PowerPick/PowerPick.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/PowerPick.sdf -------------------------------------------------------------------------------- /PowerTools/PowerPick/PowerPick.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/PowerPick.sln -------------------------------------------------------------------------------- /PowerTools/PowerPick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/README.md -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/PowerShellRunnerDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/ReflectivePick/PowerShellRunnerDll.h -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/ReflectivePick/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/ReflectiveLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/ReflectivePick/ReflectiveLoader.c -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/ReflectivePick/ReflectiveLoader.h -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/ReflectivePick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/ReflectivePick/ReflectivePick.cpp -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/ReflectivePick.h: -------------------------------------------------------------------------------- 1 | 2 | HINSTANCE hAppInstance; -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/ReflectivePick.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/ReflectivePick/ReflectivePick.vcxproj -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/ReflectivePick.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/ReflectivePick/ReflectivePick.vcxproj.filters -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/ReflectivePick.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/ReflectivePick/ReflectivePick.vcxproj.user -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/ReflectivePick/dllmain.cpp -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/ReflectivePick/stdafx.cpp -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/ReflectivePick/stdafx.h -------------------------------------------------------------------------------- /PowerTools/PowerPick/ReflectivePick/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/ReflectivePick/targetver.h -------------------------------------------------------------------------------- /PowerTools/PowerPick/SharpPick/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/SharpPick/Program.cs -------------------------------------------------------------------------------- /PowerTools/PowerPick/SharpPick/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/SharpPick/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PowerTools/PowerPick/SharpPick/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/SharpPick/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PowerTools/PowerPick/SharpPick/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/SharpPick/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerTools/PowerPick/SharpPick/SharpPick.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/SharpPick/SharpPick.csproj -------------------------------------------------------------------------------- /PowerTools/PowerPick/SharpPick/SharpPick.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerPick/SharpPick/SharpPick.csproj.user -------------------------------------------------------------------------------- /PowerTools/PowerUp/PowerUp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerUp/PowerUp.ps1 -------------------------------------------------------------------------------- /PowerTools/PowerUp/PowerUp.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerUp/PowerUp.psd1 -------------------------------------------------------------------------------- /PowerTools/PowerUp/PowerUp.psm1: -------------------------------------------------------------------------------- 1 | Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | % { . $_.FullName} -------------------------------------------------------------------------------- /PowerTools/PowerUp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerUp/README.md -------------------------------------------------------------------------------- /PowerTools/PowerUp/Tests/PowerUp.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerUp/Tests/PowerUp.tests.ps1 -------------------------------------------------------------------------------- /PowerTools/PowerView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerView/LICENSE -------------------------------------------------------------------------------- /PowerTools/PowerView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerView/README.md -------------------------------------------------------------------------------- /PowerTools/PowerView/Tests/PowerView.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerView/Tests/PowerView.tests.ps1 -------------------------------------------------------------------------------- /PowerTools/PowerView/powerlogin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerView/powerlogin.ps1 -------------------------------------------------------------------------------- /PowerTools/PowerView/powerview.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerView/powerview.ps1 -------------------------------------------------------------------------------- /PowerTools/PowerView/powerview.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/PowerView/powerview.psd1 -------------------------------------------------------------------------------- /PowerTools/PowerView/powerview.psm1: -------------------------------------------------------------------------------- 1 | Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | % { . $_.FullName} -------------------------------------------------------------------------------- /PowerTools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/PowerTools/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/README_zh.md -------------------------------------------------------------------------------- /SpawnReflectiveC2/SpawnReflectiveC2-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/SpawnReflectiveC2/SpawnReflectiveC2-x64.dll -------------------------------------------------------------------------------- /SpawnReflectiveC2/SpawnReflectiveC2-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/SpawnReflectiveC2/SpawnReflectiveC2-x86.dll -------------------------------------------------------------------------------- /SpawnReflectiveC2/SpawnReflectiveC2.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/SpawnReflectiveC2/SpawnReflectiveC2.cna -------------------------------------------------------------------------------- /dingding_log.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/dingding_log.cna -------------------------------------------------------------------------------- /doc/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/doc/images/logo.png -------------------------------------------------------------------------------- /elevate.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate.cna -------------------------------------------------------------------------------- /elevate/Invoke-2018-8120.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/Invoke-2018-8120.ps1 -------------------------------------------------------------------------------- /elevate/Invoke-EventVwrBypass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/Invoke-EventVwrBypass.ps1 -------------------------------------------------------------------------------- /elevate/Invoke-MS16032.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/Invoke-MS16032.ps1 -------------------------------------------------------------------------------- /elevate/Invoke-MS16135.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/Invoke-MS16135.ps1 -------------------------------------------------------------------------------- /elevate/Invoke-WScriptBypassUAC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/Invoke-WScriptBypassUAC.ps1 -------------------------------------------------------------------------------- /elevate/SpoolTrigger.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/SpoolTrigger.x64.dll -------------------------------------------------------------------------------- /elevate/SpoolTrigger.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/SpoolTrigger.x86.dll -------------------------------------------------------------------------------- /elevate/UAC-TokenMagic.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/UAC-TokenMagic.ps1 -------------------------------------------------------------------------------- /elevate/cve-2015-1701.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/cve-2015-1701.x64.dll -------------------------------------------------------------------------------- /elevate/cve-2015-1701.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/cve-2015-1701.x86.dll -------------------------------------------------------------------------------- /elevate/cve-2016-0051.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/cve-2016-0051.x86.dll -------------------------------------------------------------------------------- /elevate/reflectiveJuicyPotato/JuicyPotato.x32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/reflectiveJuicyPotato/JuicyPotato.x32.dll -------------------------------------------------------------------------------- /elevate/reflectiveJuicyPotato/JuicyPotato.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/reflectiveJuicyPotato/JuicyPotato.x64.dll -------------------------------------------------------------------------------- /elevate/reflectiveJuicyPotato/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/reflectiveJuicyPotato/README.md -------------------------------------------------------------------------------- /elevate/reflectiveJuicyPotato/juicypotato.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/elevate/reflectiveJuicyPotato/juicypotato.cna -------------------------------------------------------------------------------- /externalc2.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/externalc2.cna -------------------------------------------------------------------------------- /frpc/frpc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/frpc/frpc.ini -------------------------------------------------------------------------------- /frpc/x64/frpc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/frpc/x64/frpc.exe -------------------------------------------------------------------------------- /frpc/x86/frpc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/frpc/x86/frpc.exe -------------------------------------------------------------------------------- /images/2020-01-08-17-00-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/images/2020-01-08-17-00-32.png -------------------------------------------------------------------------------- /images/2020-01-08-17-02-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/images/2020-01-08-17-02-13.png -------------------------------------------------------------------------------- /images/2020-01-08-17-03-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/images/2020-01-08-17-03-57.png -------------------------------------------------------------------------------- /images/2020-01-08-17-05-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/images/2020-01-08-17-05-18.png -------------------------------------------------------------------------------- /images/2020-01-08-17-40-51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/images/2020-01-08-17-40-51.png -------------------------------------------------------------------------------- /mimikatz.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/mimikatz.cna -------------------------------------------------------------------------------- /procdump/procdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/procdump/procdump.exe -------------------------------------------------------------------------------- /procdump/procdump64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/AggressorScripts_0x727/HEAD/procdump/procdump64.exe --------------------------------------------------------------------------------