Close Menu

    Subscribe to Updates

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

    What's Hot

    Save 90% on Microsoft Visual Studio Pro 2026

    One powerful Microsoft tool to organize every task, deadline, and deliverable — now a flat $45

    Clair Obscur: Expedition 33 wins Game of the Year at Game Developers Choice Awards 2026

    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

      What the polls say about how Americans are using AI

      February 27, 2026

      Tensions between the Pentagon and AI giant Anthropic reach a boiling point

      February 21, 2026

      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
    • Business

      Salesforce tracks possible ShinyHunters campaign targeting its users

      March 15, 2026

      The team behind continuous batching says your idle GPUs should be running inference, not sitting dark

      March 13, 2026

      Met Office ‘supercomputing as a service’ one year old

      March 12, 2026

      Tech hiring evolves as candidates ask for AI compute alongside pay and perks

      March 11, 2026

      Oracle is spending billions on AI data centers as cash flow turns negative

      March 11, 2026
    • Crypto

      Banks Respond to Kraken’s Federal Reserve Access as Trump Sides with Crypto

      March 4, 2026

      Hyperliquid and DEXs Break the Top 10 — Is the CEX Era Ending?

      March 4, 2026

      Consensus Hong Kong 2026: The Institutional Turn 

      March 4, 2026

      New Crypto Mutuum Finance (MUTM) Reports V1 Protocol Progress as Roadmap Enters Phase 3

      March 4, 2026

      Bitcoin Short Sellers Caught Off Guard in New White House Move

      March 4, 2026
    • Technology

      Save 90% on Microsoft Visual Studio Pro 2026

      March 15, 2026

      One powerful Microsoft tool to organize every task, deadline, and deliverable — now a flat $45

      March 15, 2026

      Tree Search Distillation for Language Models Using PPO

      March 15, 2026

      How Verizon Handles Customers Who Misuse 5G Home Internet Service

      March 15, 2026

      I tested the tiny Russell Hobbs coffee maker that uses grounds or Nespresso pods — but I discovered one infuriating drawback

      March 15, 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 Read4 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

    Save 90% on Microsoft Visual Studio Pro 2026

    March 15, 2026

    One powerful Microsoft tool to organize every task, deadline, and deliverable — now a flat $45

    March 15, 2026

    Tree Search Distillation for Language Models Using PPO

    March 15, 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, 2025718 Views

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

    July 31, 2025303 Views

    Wired Headphones Are Making A Comeback, And We Have Gen Z To Thank

    July 22, 2025213 Views

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

    April 14, 2025175 Views
    Don't Miss
    Technology March 15, 2026

    Save 90% on Microsoft Visual Studio Pro 2026

    Save 90% on Microsoft Visual Studio Pro 2026 Image: StackCommerce TL;DR: Visual Studio Professional 2026 brings AI-assisted…

    One powerful Microsoft tool to organize every task, deadline, and deliverable — now a flat $45

    Clair Obscur: Expedition 33 wins Game of the Year at Game Developers Choice Awards 2026

    Until Dawn remake dev Ballistic Moon has closed

    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

    Save 90% on Microsoft Visual Studio Pro 2026

    March 15, 20264 Views

    One powerful Microsoft tool to organize every task, deadline, and deliverable — now a flat $45

    March 15, 20263 Views

    Clair Obscur: Expedition 33 wins Game of the Year at Game Developers Choice Awards 2026

    March 15, 20266 Views
    Most Popular

    Outbreak turns 30

    March 14, 20250 Views

    New SuperBlack ransomware exploits Fortinet auth bypass flaws

    March 14, 20250 Views

    CDs Offer Guaranteed Returns in an Uncertain Market. Today’s CD Rates, March 14, 2025

    March 14, 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.