Skip to content

Commit ee51aa9

Browse files
Update Users and Accounts.md
1 parent 03207f4 commit ee51aa9

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

DFIR/Digital Forensics/Linux/Users and Accounts.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,12 @@ john ALL=(ALL) NOPASSWD: /bin/ls
5151
- The %admin, %sudo, and %wheel lines grant members of those groups full privileges.
5252
- The last line allows the user john to execute the /bin/ls command as root without being prompted for a password.
5353

54+
## Login Information (/var/log/...)
55+
In the /var/log directory, we can find log files of all kinds including wtmp and btmp.
56+
- **/var/log/btmp:** Records failed login attempts on the system. Each failed login attempt is logged in this file, along with information such as the username, source IP address, and timestamp of the attempt. May have this kind of format:
57+
```bash
58+
[timestamp] [source_ip] [username]
59+
```
60+
61+
62+

0 commit comments

Comments
 (0)