You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check if FTP server allows anonymous logins with no overhead.
2
+
3
+
Barebones command-line utility to check if anonymous can successfully login on a given FTP server. Compile with whatever and run
4
+
5
+
```
6
+
ftprobe 1.1.1.1
7
+
ftprobe ftp.example.com
8
+
```
9
+
10
+
It will print `OK\n` if anon is allowed and nothing if not. Use something like GNU `parallel` to perform mass-scans. ftprobe puts *much* less strain on memory, network and CPU than lftp and even ftp. A consumer CPU should handle a few hundred parallel probes with no problems.
0 commit comments