├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── scripts ├── getout.py ├── mass_mimikatz │ ├── massmimi_reg.rb │ ├── powermeup.cmd │ └── readme.md ├── powershell │ └── list_local_admins_remote_hosts.ps1 └── readme.md ├── win32bins ├── LGPO.exe ├── RunAsCurrentUser-2.0.3.1.exe ├── activedirectory │ ├── VSSVC.exe │ ├── adfind.exe │ ├── bitsadmin32.exe │ ├── csvde.exe │ ├── dnscmd.exe │ ├── dsget.exe │ ├── dsquery.exe │ ├── nltest32.exe │ ├── readme.md │ └── vssadmin.exe ├── binary │ ├── bintext.exe │ ├── rar.exe │ ├── sdelete.exe │ ├── strings.exe │ └── upx.exe ├── database │ ├── gui │ │ ├── heidisql.exe │ │ └── libmysql.dll │ ├── osql.exe │ └── sqlcmd.exe ├── dmc.exe ├── grep.exe ├── gui │ ├── baregrep.exe │ ├── baretail.exe │ ├── hxd.exe │ ├── scite.exe │ └── servifythis.exe ├── mygrep │ ├── mygrep.c │ ├── mygrep.exe │ ├── scan.h │ └── show_dump.h ├── network │ ├── letmeoutofyournet │ │ ├── w00tw00t_incremental.au3 │ │ └── w00tw00t_incremental.exe │ ├── ncat.exe │ ├── plink.exe │ ├── plink_novrfy.exe │ ├── readme.creole │ ├── remote.exe │ ├── sbd.exe │ ├── showmount.exe │ ├── tcping.exe │ ├── wget.exe │ └── zebedee.exe ├── ntrights.exe ├── privesc.exe ├── psexec.exe ├── rawcap.exe ├── regedit_nogpo.exe └── requires_cygwin │ ├── cygcrypto-0.9.8.dll │ ├── cyggcc_s-1.dll │ ├── cygminires.dll │ ├── cygssp-0.dll │ ├── cygwin1.dll │ ├── cygz.dll │ ├── scp.exe │ ├── ssh-agent.exe │ ├── ssh-keygen.exe │ └── ssh.exe └── win64bins ├── bitsadmin64.exe ├── dsacls.exe ├── en-US └── dsacls.exe.mui ├── nltest64.exe ├── runhash64.exe ├── showmount.exe └── wce64.exe /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/README.md -------------------------------------------------------------------------------- /scripts/getout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/scripts/getout.py -------------------------------------------------------------------------------- /scripts/mass_mimikatz/massmimi_reg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/scripts/mass_mimikatz/massmimi_reg.rb -------------------------------------------------------------------------------- /scripts/mass_mimikatz/powermeup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/scripts/mass_mimikatz/powermeup.cmd -------------------------------------------------------------------------------- /scripts/mass_mimikatz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/scripts/mass_mimikatz/readme.md -------------------------------------------------------------------------------- /scripts/powershell/list_local_admins_remote_hosts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/scripts/powershell/list_local_admins_remote_hosts.ps1 -------------------------------------------------------------------------------- /scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/scripts/readme.md -------------------------------------------------------------------------------- /win32bins/LGPO.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/LGPO.exe -------------------------------------------------------------------------------- /win32bins/RunAsCurrentUser-2.0.3.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/RunAsCurrentUser-2.0.3.1.exe -------------------------------------------------------------------------------- /win32bins/activedirectory/VSSVC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/activedirectory/VSSVC.exe -------------------------------------------------------------------------------- /win32bins/activedirectory/adfind.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/activedirectory/adfind.exe -------------------------------------------------------------------------------- /win32bins/activedirectory/bitsadmin32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/activedirectory/bitsadmin32.exe -------------------------------------------------------------------------------- /win32bins/activedirectory/csvde.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/activedirectory/csvde.exe -------------------------------------------------------------------------------- /win32bins/activedirectory/dnscmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/activedirectory/dnscmd.exe -------------------------------------------------------------------------------- /win32bins/activedirectory/dsget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/activedirectory/dsget.exe -------------------------------------------------------------------------------- /win32bins/activedirectory/dsquery.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/activedirectory/dsquery.exe -------------------------------------------------------------------------------- /win32bins/activedirectory/nltest32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/activedirectory/nltest32.exe -------------------------------------------------------------------------------- /win32bins/activedirectory/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/activedirectory/readme.md -------------------------------------------------------------------------------- /win32bins/activedirectory/vssadmin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/activedirectory/vssadmin.exe -------------------------------------------------------------------------------- /win32bins/binary/bintext.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/binary/bintext.exe -------------------------------------------------------------------------------- /win32bins/binary/rar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/binary/rar.exe -------------------------------------------------------------------------------- /win32bins/binary/sdelete.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/binary/sdelete.exe -------------------------------------------------------------------------------- /win32bins/binary/strings.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/binary/strings.exe -------------------------------------------------------------------------------- /win32bins/binary/upx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/binary/upx.exe -------------------------------------------------------------------------------- /win32bins/database/gui/heidisql.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/database/gui/heidisql.exe -------------------------------------------------------------------------------- /win32bins/database/gui/libmysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/database/gui/libmysql.dll -------------------------------------------------------------------------------- /win32bins/database/osql.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/database/osql.exe -------------------------------------------------------------------------------- /win32bins/database/sqlcmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/database/sqlcmd.exe -------------------------------------------------------------------------------- /win32bins/dmc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/dmc.exe -------------------------------------------------------------------------------- /win32bins/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/grep.exe -------------------------------------------------------------------------------- /win32bins/gui/baregrep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/gui/baregrep.exe -------------------------------------------------------------------------------- /win32bins/gui/baretail.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/gui/baretail.exe -------------------------------------------------------------------------------- /win32bins/gui/hxd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/gui/hxd.exe -------------------------------------------------------------------------------- /win32bins/gui/scite.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/gui/scite.exe -------------------------------------------------------------------------------- /win32bins/gui/servifythis.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/gui/servifythis.exe -------------------------------------------------------------------------------- /win32bins/mygrep/mygrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/mygrep/mygrep.c -------------------------------------------------------------------------------- /win32bins/mygrep/mygrep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/mygrep/mygrep.exe -------------------------------------------------------------------------------- /win32bins/mygrep/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/mygrep/scan.h -------------------------------------------------------------------------------- /win32bins/mygrep/show_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/mygrep/show_dump.h -------------------------------------------------------------------------------- /win32bins/network/letmeoutofyournet/w00tw00t_incremental.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/network/letmeoutofyournet/w00tw00t_incremental.au3 -------------------------------------------------------------------------------- /win32bins/network/letmeoutofyournet/w00tw00t_incremental.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/network/letmeoutofyournet/w00tw00t_incremental.exe -------------------------------------------------------------------------------- /win32bins/network/ncat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/network/ncat.exe -------------------------------------------------------------------------------- /win32bins/network/plink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/network/plink.exe -------------------------------------------------------------------------------- /win32bins/network/plink_novrfy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/network/plink_novrfy.exe -------------------------------------------------------------------------------- /win32bins/network/readme.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/network/readme.creole -------------------------------------------------------------------------------- /win32bins/network/remote.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/network/remote.exe -------------------------------------------------------------------------------- /win32bins/network/sbd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/network/sbd.exe -------------------------------------------------------------------------------- /win32bins/network/showmount.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/network/showmount.exe -------------------------------------------------------------------------------- /win32bins/network/tcping.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/network/tcping.exe -------------------------------------------------------------------------------- /win32bins/network/wget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/network/wget.exe -------------------------------------------------------------------------------- /win32bins/network/zebedee.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/network/zebedee.exe -------------------------------------------------------------------------------- /win32bins/ntrights.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/ntrights.exe -------------------------------------------------------------------------------- /win32bins/privesc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/privesc.exe -------------------------------------------------------------------------------- /win32bins/psexec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/psexec.exe -------------------------------------------------------------------------------- /win32bins/rawcap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/rawcap.exe -------------------------------------------------------------------------------- /win32bins/regedit_nogpo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/regedit_nogpo.exe -------------------------------------------------------------------------------- /win32bins/requires_cygwin/cygcrypto-0.9.8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/requires_cygwin/cygcrypto-0.9.8.dll -------------------------------------------------------------------------------- /win32bins/requires_cygwin/cyggcc_s-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/requires_cygwin/cyggcc_s-1.dll -------------------------------------------------------------------------------- /win32bins/requires_cygwin/cygminires.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/requires_cygwin/cygminires.dll -------------------------------------------------------------------------------- /win32bins/requires_cygwin/cygssp-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/requires_cygwin/cygssp-0.dll -------------------------------------------------------------------------------- /win32bins/requires_cygwin/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/requires_cygwin/cygwin1.dll -------------------------------------------------------------------------------- /win32bins/requires_cygwin/cygz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/requires_cygwin/cygz.dll -------------------------------------------------------------------------------- /win32bins/requires_cygwin/scp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/requires_cygwin/scp.exe -------------------------------------------------------------------------------- /win32bins/requires_cygwin/ssh-agent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/requires_cygwin/ssh-agent.exe -------------------------------------------------------------------------------- /win32bins/requires_cygwin/ssh-keygen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/requires_cygwin/ssh-keygen.exe -------------------------------------------------------------------------------- /win32bins/requires_cygwin/ssh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win32bins/requires_cygwin/ssh.exe -------------------------------------------------------------------------------- /win64bins/bitsadmin64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win64bins/bitsadmin64.exe -------------------------------------------------------------------------------- /win64bins/dsacls.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win64bins/dsacls.exe -------------------------------------------------------------------------------- /win64bins/en-US/dsacls.exe.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win64bins/en-US/dsacls.exe.mui -------------------------------------------------------------------------------- /win64bins/nltest64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win64bins/nltest64.exe -------------------------------------------------------------------------------- /win64bins/runhash64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win64bins/runhash64.exe -------------------------------------------------------------------------------- /win64bins/showmount.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win64bins/showmount.exe -------------------------------------------------------------------------------- /win64bins/wce64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation/HEAD/win64bins/wce64.exe --------------------------------------------------------------------------------