Linux enumeration
Local enumeration on Linux is similar to Windows and involves using manual techniques and tools to enumerate important information. In this section, we will explore a few automated tools that help simplify and streamline the enumeration process.
Note
Package managers will vary based on the Linux distribution in question. This will be pointed out and highlighted in the following sections.
System enumeration
System enumeration is the process of enumerating core system information such as the operating system's version, kernel version, operating system architecture, and the services that are running.
We can perform system enumeration by following these steps:
- The first piece of information we will need to enumerate is the operating system's information. This can be done by running the following command:
cat /etc/*-release
You can also use the Linux Standard Base (LSB) information. This can be done by running the following command:
lsb_release...