Linux Smart Enumeration - LSE: Difference between revisions

From RCATs
(Created page with "==linux-smart-enumeration== Linux enumeration tools for pentesting and CTFs This project was inspired by https://github.com/rebootuser/LinEnum and uses many of its tests. Unlike LinEnum, lse tries to gradualy expose the information depending on its importance from a privesc point of view. Download: <syntaxhighlight lang=powershell> Use: ./lse.sh [options] OPTIONS -c Disable color -i Non interactive mode -h This help -l LEVEL...")
 
No edit summary
 
Line 1: Line 1:
==linux-smart-enumeration==
==linux-smart-enumeration<ref>https://github.com/diego-treitos/linux-smart-enumeration</ref>==
Linux enumeration tools for pentesting and CTFs
Linux enumeration tools for pentesting and CTFs
This project was inspired by https://github.com/rebootuser/LinEnum and uses many of its tests.
This project was inspired by https://github.com/rebootuser/LinEnum and uses many of its tests.
Unlike LinEnum, lse tries to gradualy expose the information depending on its importance from a privesc point of view.
Unlike LinEnum, lse tries to gradualy expose the information depending on its importance from a privesc point of view.


Download:  
Download: [https://github.com/diego-treitos/linux-smart-enumeration/releases/tag/4.10nw LSE]


<syntaxhighlight lang=powershell>
<syntaxhighlight lang=powershell>
Line 39: Line 39:
               from a remote host.
               from a remote host.
</syntaxhighlight>
</syntaxhighlight>
<references />
[[Category:Tools]]
[[Category:Tools]]

Latest revision as of 13:11, 21 February 2023

linux-smart-enumeration[1]

Linux enumeration tools for pentesting and CTFs This project was inspired by https://github.com/rebootuser/LinEnum and uses many of its tests. Unlike LinEnum, lse tries to gradualy expose the information depending on its importance from a privesc point of view.

Download: LSE

Use: ./lse.sh [options]

 OPTIONS
  -c           Disable color
  -i           Non interactive mode
  -h           This help
  -l LEVEL     Output verbosity level
                 0: Show highly important results. (default)
                 1: Show interesting results.
                 2: Show all gathered information.
  -s SELECTION Comma separated list of sections or tests to run. Available
               sections:
                 usr: User related tests.
                 sud: Sudo related tests.
                 fst: File system related tests.
                 sys: System related tests.
                 sec: Security measures related tests.
                 ret: Recurren tasks (cron, timers) related tests.
                 net: Network related tests.
                 srv: Services related tests.
                 pro: Processes related tests.
                 sof: Software related tests.
                 ctn: Container (docker, lxc) related tests.
                 cve: CVE related tests.
               Specific tests can be used with their IDs (i.e.: usr020,sud)
  -e PATHS     Comma separated list of paths to exclude. This allows you
               to do faster scans at the cost of completeness
  -p SECONDS   Time that the process monitor will spend watching for
               processes. A value of 0 will disable any watch (default: 60)
  -S           Serve the lse.sh script in this host so it can be retrieved
               from a remote host.