Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/r3drun3/postfetch
Defensive ToolsEncryption/Decryption ToolsConfiguration AuditingNetwork SecurityPrivacyDNS Analysis
GitHubr3drun3/postfetch

postfetch

like fastfetch but for security and privacy.

View Repository
1514 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

postfetch

Release
License: Unlicense Latest Release

Postfetch (posture fetch) is a fastfetch-style privacy and security audit tool for Linux, written in rust.

Instead of cosmetic system info, postfetch shows whether your system is configured to support privacy, security, local control, and digital sovereignty.

Modules

ModuleChecks
encryptionLUKS disk encryption, dm-crypt active devices, /etc/crypttab, encrypted swap, TPM chip, home dir encryption, others
firewallnftables, iptables, UFW, firewalld, overall firewall status, others
dnsNameservers + provider label, DNS leak risk, DNS-over-TLS, DNSSEC, local resolvers (unbound, dnsmasq, dnscrypt), others
telemetryapport, whoopsie, snapd, geoclue, avahi, systemd-coredump, Firefox telemetry prefs, Chrome managed policies, others
sandboxingFlatpak, Firejail, bubblewrap, AppArmor, SELinux, seccomp (PID 1), Docker, others
hardeningASLR, kptr_restrict, dmesg_restrict, perf_event_paranoid, ptrace_scope, unprivileged user namespaces, auditd, others
networkVPN interface (tun/wg/proton/mullvad), Tor service + SocksPort, WiFi MAC randomization, IPv6 status, open ports, others

Quick start

The following one-liner let's you run the latest binary directly:

root@kitploit:~
curl -sL https://github.com/R3DRUN3/postfetch/releases/download/v0.2.0/postfetch-v0.2.0-x86_64-linux-musl.tar.gz | tar -xz && ./postfetch

Postfetch is also available on aur, you can install it with yay -S postfetch.

[!TIP] In order to cover all the checks, better to run as sudo

output

If you want to reduce the output, you can also run a single module, for example:

root@kitploit:~
sudo ./postfetch --module network

Options

root@kitploit:~
-w, --warnings-only     Only show non-passing checks
    --no-color          Disable ANSI color output
-m, --module <MODULE>   Run a single module only

Adding a new module

  1. Create src/checks/mymodule.rs —> implement pub fn check_mymodule() -> Vec<CheckResult>.
  2. Declare it in src/checks/mod.rs with pub mod mymodule;.
  3. Add a match arm in src/main.rs.

That's it, no other changes needed.

Download Tool