Error: Sorry, I can't start the sniffer, it says 'undefined'
See original GitHub issueI just npm install -g htracr
it and started with htracr 8080
then opened http://localhost:8080
in Chrome and clicked on Start
Issue Analytics
- State:
- Created 9 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Sniffer.exe error when starting photoshop
Photoshop appears to run fine when the messages are dismissed but I am not certain if they indicate something else important going wrong....
Read more >Failures in child processes are not handled by the runner #2142
This error happens in the child process outside of the PHP_CodeSniffer codebase because the T_CLASS token doesn't have the scope_closer ...
Read more >libtins Sniffer undefined - c++ - Stack Overflow
I have the default code libtins gives you, but for some reason Sniffer is undefined. I have included all libs in my linker....
Read more >Compiler/LAUNCHXL-CC1310: packet sniffer - Sub-1 GHz
I have tried using both wireshark version 2.0.x and 2.2.x without success. problem origin seems to be that even when pipe is configured...
Read more >Why do I get a "SRVE0190E: File not found: /server" error ...
Unfortunately to prevent it from occurring you would need to find out more details about what is making the request and why it...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Oh, I solve the problem! @est @nobso
I traced the code of htracr, find that there are some problems of pcap, the package.json of htracr wrote
"pcap": ">=0.2.8"
, when we runnpm install
,it will download pcap@2.0.1, whick changed the output formatpacket.payload.payload
notpacket.link.ip
then i modify the package.json
"pcap": "1.2.0"
, and reinstall, it works.by the way i downgrade the version of node to v0.10.28 and the npm to 1.4.9 to install the node-pcap, (^ - ^)
pcap seems to be a bit of a mess right now 😕 – am waiting for it to settle down.