Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    Get a Samsung OLED gaming monitor for just $350

    Qualcomm Snapdragon X2 Elite tops the Apple M5 in new test video

    Tapo’s 1440p Wi-Fi security cam is 42% off! Grab it now for $70

    Facebook X (Twitter) Instagram
    • Artificial Intelligence
    • Business Technology
    • Cryptocurrency
    • Gadgets
    • Gaming
    • Health
    • Software and Apps
    • Technology
    Facebook X (Twitter) Instagram Pinterest Vimeo
    Tech AI Verse
    • Home
    • Artificial Intelligence

      Read the extended transcript: President Donald Trump interviewed by ‘NBC Nightly News’ anchor Tom Llamas

      February 6, 2026

      Stocks and bitcoin sink as investors dump software company shares

      February 4, 2026

      AI, crypto and Trump super PACs stash millions to spend on the midterms

      February 2, 2026

      To avoid accusations of AI cheating, college students are turning to AI

      January 29, 2026

      ChatGPT can embrace authoritarian ideas after just one prompt, researchers say

      January 24, 2026
    • Business

      New VoidLink malware framework targets Linux cloud servers

      January 14, 2026

      Nvidia Rubin’s rack-scale encryption signals a turning point for enterprise AI security

      January 13, 2026

      How KPMG is redefining the future of SAP consulting on a global scale

      January 10, 2026

      Top 10 cloud computing stories of 2025

      December 22, 2025

      Saudia Arabia’s STC commits to five-year network upgrade programme with Ericsson

      December 18, 2025
    • Crypto

      Bernstein Discusses Bitcoin’s Weakest Bear Market Yet – “Nothing Broke”

      February 9, 2026

      Ethereum Price Hits Breakdown Target — But Is a Bigger Drop to $1,000 Coming?

      February 9, 2026

      Damex Secures MiCA CASP Licence, Establishing Its Position as a Tier-1 Digital Asset Institution in Europe

      February 9, 2026

      Bitget and BlockSec Introduce the UEX Security Standard, Setting a New Benchmark for Universal Exchanges

      February 9, 2026

      3 Meme Coins To Watch In The Second Week Of February 2026

      February 9, 2026
    • Technology

      Get a Samsung OLED gaming monitor for just $350

      February 10, 2026

      Qualcomm Snapdragon X2 Elite tops the Apple M5 in new test video

      February 10, 2026

      Tapo’s 1440p Wi-Fi security cam is 42% off! Grab it now for $70

      February 10, 2026

      This 8BitDo Retro wireless ‘mecha’ keyboard is just $63 today

      February 10, 2026

      Star power, AI jabs and Free Bird: Digiday’s guide to what was in and out at the Super Bowl

      February 10, 2026
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Check BMI
    Tech AI Verse
    You are at:Home»Technology»Snitch – A friendlier ss/netstat
    Technology

    Snitch – A friendlier ss/netstat

    TechAiVerseBy TechAiVerseDecember 23, 2025No Comments3 Mins Read3 Views
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr Email Reddit
    Snitch – A friendlier ss/netstat
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    Snitch – A friendlier ss/netstat

    snitch

    a friendlier ss / netstat for humans. inspect network connections with a clean tui or styled tables.

    install

    go

    go install github.com/karol-broda/snitch@latest

    nixos / nix

    # try it
    nix run github:karol-broda/snitch
    
    # install to profile
    nix profile install github:karol-broda/snitch
    
    # or add to flake inputs
    {
      inputs.snitch.url = "github:karol-broda/snitch";
    }
    # then use: inputs.snitch.packages.${system}.default

    arch linux (aur)

    # with yay
    yay -S snitch-bin
    
    # with paru
    paru -S snitch-bin

    shell script

    curl -sSL https://raw.githubusercontent.com/karol-broda/snitch/master/install.sh | sh

    installs to ~/.local/bin if available, otherwise /usr/local/bin. override with:

    curl -sSL https://raw.githubusercontent.com/karol-broda/snitch/master/install.sh | INSTALL_DIR=~/bin sh

    macos: the install script automatically removes the quarantine attribute (com.apple.quarantine) from the binary to allow it to run without gatekeeper warnings. to disable this, set KEEP_QUARANTINE=1.

    binary

    download from releases:

    • linux: snitch__linux_.tar.gz or .deb/.rpm/.apk
    • macos: snitch__darwin_.tar.gz

    tar xzf snitch_*.tar.gz
    sudo mv snitch /usr/local/bin/

    macos: if blocked with “cannot be opened because the developer cannot be verified”, run:

    xattr -d com.apple.quarantine /usr/local/bin/snitch

    quick start

    snitch              # launch interactive tui
    snitch -l           # tui showing only listening sockets
    snitch ls           # print styled table and exit
    snitch ls -l        # listening sockets only
    snitch ls -t -e     # tcp established connections
    snitch ls -p        # plain output (parsable)

    commands

    snitch / snitch top

    interactive tui with live-updating connection list.

    snitch                  # all connections
    snitch -l               # listening only
    snitch -t               # tcp only
    snitch -e               # established only
    snitch -i 2s            # 2 second refresh interval

    keybindings:

    j/k, ↑/↓      navigate
    g/G           top/bottom
    t/u           toggle tcp/udp
    l/e/o         toggle listen/established/other
    s/S           cycle sort / reverse
    w             watch/monitor process (highlight)
    W             clear all watched
    K             kill process (with confirmation)
    /             search
    enter         connection details
    ?             help
    q             quit
    

    snitch ls

    one-shot table output. uses a pager automatically if output exceeds terminal height.

    snitch ls               # styled table (default)
    snitch ls -l            # listening only
    snitch ls -t -l         # tcp listeners
    snitch ls -e            # established only
    snitch ls -p            # plain/parsable output
    snitch ls -o json       # json output
    snitch ls -o csv        # csv output
    snitch ls -n            # numeric (no dns resolution)
    snitch ls --no-headers  # omit headers

    snitch json

    json output for scripting.

    snitch json
    snitch json -l

    snitch watch

    stream json frames at an interval.

    snitch watch -i 1s | jq '.count'
    snitch watch -l -i 500ms

    snitch upgrade

    check for updates and upgrade in-place.

    snitch upgrade              # check for updates
    snitch upgrade --yes        # upgrade automatically
    snitch upgrade -v 0.1.7     # install specific version

    filters

    shortcut flags work on all commands:

    -t, --tcp           tcp only
    -u, --udp           udp only
    -l, --listen        listening sockets
    -e, --established   established connections
    -4, --ipv4          ipv4 only
    -6, --ipv6          ipv6 only
    -n, --numeric       no dns resolution
    

    for more specific filtering, use key=value syntax with ls:

    snitch ls proto=tcp state=listen
    snitch ls pid=1234
    snitch ls proc=nginx
    snitch ls lport=443
    snitch ls contains=google

    output

    styled table (default):

      ╭─────────────────┬───────┬───────┬─────────────┬─────────────────┬────────╮
      │ PROCESS         │ PID   │ PROTO │ STATE       │ LADDR           │ LPORT  │
      ├─────────────────┼───────┼───────┼─────────────┼─────────────────┼────────┤
      │ nginx           │ 1234  │ tcp   │ LISTEN      │ *               │ 80     │
      │ postgres        │ 5678  │ tcp   │ LISTEN      │ 127.0.0.1       │ 5432   │
      ╰─────────────────┴───────┴───────┴─────────────┴─────────────────┴────────╯
      2 connections
    

    plain output (-p):

    PROCESS    PID    PROTO   STATE    LADDR       LPORT
    nginx      1234   tcp     LISTEN   *           80
    postgres   5678   tcp     LISTEN   127.0.0.1   5432
    

    configuration

    optional config file at ~/.config/snitch/snitch.toml:

    [defaults]
    numeric = false
    theme = "auto"

    requirements

    • linux or macos
    • linux: reads from /proc/net/*, root or CAP_NET_ADMIN for full process info
    • macos: uses system APIs, may require sudo for full process info
    Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email
    Previous ArticleToday’s NYT Connections: Sports Edition Hints and Answers for Dec. 23, #456
    Next Article The Duodecimal Bulletin, Vol. 55, No. 1, Year 1209 [pdf]
    TechAiVerse
    • Website

    Jonathan is a tech enthusiast and the mind behind Tech AI Verse. With a passion for artificial intelligence, consumer tech, and emerging innovations, he deliver clear, insightful content to keep readers informed. From cutting-edge gadgets to AI advancements and cryptocurrency trends, Jonathan breaks down complex topics to make technology accessible to all.

    Related Posts

    Get a Samsung OLED gaming monitor for just $350

    February 10, 2026

    Qualcomm Snapdragon X2 Elite tops the Apple M5 in new test video

    February 10, 2026

    Tapo’s 1440p Wi-Fi security cam is 42% off! Grab it now for $70

    February 10, 2026
    Leave A Reply Cancel Reply

    Top Posts

    Ping, You’ve Got Whale: AI detection system alerts ships of whales in their path

    April 22, 2025660 Views

    Lumo vs. Duck AI: Which AI is Better for Your Privacy?

    July 31, 2025249 Views

    6.7 Cummins Lifter Failure: What Years Are Affected (And Possible Fixes)

    April 14, 2025148 Views

    6 Best MagSafe Phone Grips (2025), Tested and Reviewed

    April 6, 2025111 Views
    Don't Miss
    Technology February 10, 2026

    Get a Samsung OLED gaming monitor for just $350

    Get a Samsung OLED gaming monitor for just $350 Image: Samsung To paraphrase a certain…

    Qualcomm Snapdragon X2 Elite tops the Apple M5 in new test video

    Tapo’s 1440p Wi-Fi security cam is 42% off! Grab it now for $70

    This 8BitDo Retro wireless ‘mecha’ keyboard is just $63 today

    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us
    About Us

    Welcome to Tech AI Verse, your go-to destination for everything technology! We bring you the latest news, trends, and insights from the ever-evolving world of tech. Our coverage spans across global technology industry updates, artificial intelligence advancements, machine learning ethics, and automation innovations. Stay connected with us as we explore the limitless possibilities of technology!

    Facebook X (Twitter) Pinterest YouTube WhatsApp
    Our Picks

    Get a Samsung OLED gaming monitor for just $350

    February 10, 20263 Views

    Qualcomm Snapdragon X2 Elite tops the Apple M5 in new test video

    February 10, 20263 Views

    Tapo’s 1440p Wi-Fi security cam is 42% off! Grab it now for $70

    February 10, 20264 Views
    Most Popular

    7 Best Kids Bikes (2025): Mountain, Balance, Pedal, Coaster

    March 13, 20250 Views

    VTOMAN FlashSpeed 1500: Plenty Of Power For All Your Gear

    March 13, 20250 Views

    This new Roomba finally solves the big problem I have with robot vacuums

    March 13, 20250 Views
    © 2026 TechAiVerse. Designed by Divya Tech.
    • Home
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions

    Type above and press Enter to search. Press Esc to cancel.