GithubHelp home page GithubHelp logo

Comments (5)

ZeroChaos- avatar ZeroChaos- commented on May 26, 2024

wouldn't you use -r mypipe? pipes are files

from termshark.

pocc avatar pocc commented on May 26, 2024

termshark and tshark are both used in the example above. Can you provide a full counter-example so I can get a better idea of what you're talking about?

from termshark.

ZeroChaos- avatar ZeroChaos- commented on May 26, 2024

first establish the pipe and something writing to the pipe. note, tcpdump, tshark, etc are writing to a FILE, that's what a pipe is.

theprophet /tmp # mkfifo mypipe
theprophet /tmp # tcpdump -i eth1 -w mypipe
dropped privs to tcpdump

Then try to read it

zero@theprophet /tmp % tcpdump -i mypipe
tcpdump: mypipe: You don't have permission to capture on that device
(socket: Operation not permitted)
zero@theprophet /tmp % tshark -i mypipe
Capturing on 'mypipe'

Note that tcpdump can't find an interface called mypipe (because one doesn't exist) but tshark seems to have some kind of special handling for pretending a file is an interface, but tcpdump doesn't. tcpdump can read the file just fine

zero@theprophet /tmp % tcpdump -r mypipe
reading from file mypipe, link-type EN10MB (Ethernet)

This odd kind of special handling is confusing for users, and makes for confusion in the code. pipes are files, read them like files. That said, termshark doesn't seem to support reading pipes as files either, so this is still a feature request

from termshark.

pocc avatar pocc commented on May 26, 2024

Cheers for the writeup. This is more descriptive than my initial post.

from termshark.

gcla avatar gcla commented on May 26, 2024

I just committed a change for this. I'll mark this as - Duplicate of #9

from termshark.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.