npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wos

v0.0.22

Published

Monitor traffic for unencrypted data and display a dashboard.

Downloads

17

Readme

wos

Monitor traffic for unencrypted data (using tshark) and display a dashboard in terminal.

Install

npm install -g wos

Usage

$ wos --help

  Monitor traffic for unencrypted data and display a dashboard.

    Usage
  $ wos -i <interface> [options]

    Info
      Capture interface is required. Use ifconfig command to find interfaces.

      SSID and password are required if using secured wifi such as WPA or WEP in order to decrypt packets.

      Wrap SSID and password in single quotes in order to escape special characters.

      After running wos, devices must send perform the EAPOL handshake in order for wos to decrypt their traffic. The handshake is initiated when the device connects or reconnects to the network.

    Options
      -i, --interface Capture interface
      -s, --ssid Wifi SSID
      -p, --pass Wifi password
      -c, --channel Wifi channel
      -n, --nomonitor Disable monitor mode
      -f, --format Format: dash (default), text
      -o, --outfile Output file
      -r, --readfile Read pcap file instead of monitoring

    Examples
      $ wos -i en0 --ssid='HomeWifi' --pass='d4Pazsw0rD' -o data.txt

You can simply just run wos command and it'll set up the options based on your current wifi connection.

$ wos

You can manually set the network capture interface card, as well as the SSID and password of the network. Those are required in order to decrypt packets on a secured network such as WPA. Remember, you can only capture on the same network you are connected to.

$ wos -i en0 --ssid='HomeWifi' --pass='d4Pazsw0rD'

WOS supports:

  • Retrieving credentials from unencrypted HTTP pages

  • Retrieving credentials from unencrypted FTP logins

  • Retrieving credentials from unencrypted SMTP logins

  • Retrieving credentials from unencrypted POP logins

  • Retrieving credentials from unencrypted IMAP logins

  • Retrieving data from unencrypted TELNET sessions

Requirements

FAQ

  • Q. My wireless card is stuck in monitor mode!

    • A. Kill tshark processes and toggle off and on the wireless card.

      $ pkill tshark
  • Q. I'm monitoring and can see EAPOL handshakes but I'm not capturing data.

    • A. Make sure to set the correct wifi channel when running wos, especially if you're on dual-band wifi. You can only monitor on one channel.

      $ wos -c 36
  • Q. What does WOS mean?

License

MIT