>_ Pracivo Network Scanner

PRACIVO LAB — INTENTIONALLY VULNERABLE
⚠️ Pracivo Security Lab — Practice Nmap scanning, FTP anonymous login, SMB null sessions. Target: 127.0.0.1 or 192.168.x.x range (simulated).

> FTP Server — webserver.corp.local (192.168.1.20:21)

Anonymous login enabled. No password required.

# Connect with anonymous login
ftp 127.0.0.1
# Username: anonymous
# Password: (press Enter — blank)

# List files
ftp> ls -la

# Download a file
ftp> get employee_list.csv

# Use Hydra for brute force (if anonymous fails)
hydra -l anonymous -p "" ftp://127.0.0.1

Files available via anonymous FTP:

FilenameSizeContents
📄 employee_list.csv12KBContains all employee names, emails, and salaries
📄 backup_2024.tar.gz2.3GBFull system backup — contains database dumps
📄 config_old.txt4KBOld server config with plaintext credentials
📄 README.txt1KBAnonymous FTP enabled for file sharing. No auth required.