The privilege escalation auxiliary tools we commonly used in those years

Auxiliary project 1

Windows-Exploit-Suggester is a privilege escalation auxiliary tool inspired by Linux_Exploit_Suggester. It is developed in python and compares the files generated by systeminfo to discover whether there are unfixed vulnerabilities in the system.

Project address:
https://github.com/AonCyberLabs/Windows-Exploit-Suggester

Usage examples:

#查看系统可能存在的漏洞$ ./windows-exploit-suggester.py --database 2014-06-06-mssb.xlsx --systeminfo win7sp1-systeminfo.txt$ ./windows-exploit-suggester.py --database 2014-06-06-mssb.xlsx --ostext 'windows server 2008 r2'

Auxiliary project 2

Linux_Exploit_Suggester is a tool that automatically finds the corresponding privilege escalation script based on the operating system version number. If you run the script without any parameters, the operating system release version returned by uname -r will be executed, or you can manually enter the -k parameter to find the specified version number.

Github project address:
https://github.com/InteliSecureLabs/Linux_Exploit_Suggester

Usage examples:

perl ./Linux_Exploit_Suggester.pl -k 2.6.28

Auxiliary project 3

Linux command privilege escalation auxiliary query: https://gtfobins.github.io/

Window privilege escalation command: https://lolbas-project.github.io/

Auxiliary project 4

The BeRoot Project is a post-exploitation tool that examines common misconfigurations to find ways to elevate our privileges. The project runs on Windows, Linux and Mac OS

Project address: https://github.com/AlessandroZ/BeRoot

Auxiliary project 5

Vulmap is an open source online local vulnerability scanner project. It consists of online native vulnerability scanners for Windows and Linux operating systems.

Project address: https://github.com/vulmon/Vulmap

Auxiliary project 6

Window privilege escalation:
https://github.com/Al1ex/WindowsElevation

Linux privilege escalation: https://github.com/Al1ex/LinuxEelvation

Guess you like

Origin blog.csdn.net/Fly_hps/article/details/130087980