1
mirror of https://github.com/carlospolop/PEASS-ng synced 2024-11-20 12:39:21 +01:00

linpeasv2.6.8

This commit is contained in:
carlospolop 2020-08-07 07:13:23 -04:00
parent a59df649ce
commit 3318563d77
3 changed files with 2 additions and 1 deletions

View File

@ -65,6 +65,7 @@ By default linpeas takes around **2 mins** to complete, but It could take from *
**Other parameters:**
- **-a** (all checks) - This will **execute also the check of processes during 1 min, will search more possible hashes inside files, and brute-force each user using `su` with the top2000 passwords.**
- **-s** (superfast & stealth) - This will bypass some time consuming checks - **Stealth mode** (Nothing will be written to disk)
- **-P** (Password) - Pass a password that will be used with `sudo -l` and bruteforcing other users
This script has **several lists** included inside of it to be able to **color the results** in order to highlight PE vector.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 94 KiB

View File

@ -71,7 +71,7 @@ while getopts "h?asd:p:i:qo:w" opt; do
d) DISCOVERY=$OPTARG;;
p) PORTS=$OPTARG;;
i) IP=$OPTARG;;
i) PASSWORD=$OPTARG;;
P) PASSWORD=$OPTARG;;
q) QUIET=1;;
o) CHECKS=$OPTARG;;
w) WAIT=1;;