cat /proc/cmdline > cmdline.txt — save parameters to a file
File contains a single line with kernel boot parameters
Checks only for x86_64 architecture
How to check your kernel version?
uname -r — shows the running kernel version (e.g. 6.6.8 or 5.15.0-91-generic)
Enter the version and the tool lists known public exploits for that kernel
This matches by version — it does not account for distro-backported patches
How to get the list of loaded modules?
lsmod > modules.txt — save loaded modules to a file
The tool flags modules that are unnecessary attack surface (legacy protocols, rare filesystems, FireWire/Thunderbolt/Bluetooth) and those tied to known CVEs
A loaded module usually means it is in use — only block ones you are sure you do not need
📄
Drag & drop your .config file here or click to browse