Skip to content
/ NetEye Public

Tiny sniffer made in C++.Designed for use on Kali Linux and other Debian-based Linux distributions.

Notifications You must be signed in to change notification settings

JRDPCN/NetEye

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 

Repository files navigation

NetEye

Tiny sniffer made in C++.Designed for use on Kali Linux and other Debian-based linux distributions.

NetEye allows you to view your network traffic. You can see visited websites, analyze HTTP/HTTPS requests, cookie data, unencrypted UDP/TCP packets,messages and personal/login data. The project is still under development. by JRDP Team

To build NetEye you need to install g++ compiler using this command:

sudo apt update && sudo apt install g++

Ane some required libraries:

sudo apt install libpcap-dev libboost-all-dev

Then,open terminal on Your desktop and type this command to copy this repository:

git clone https://github.com/JRDPCN/NetEye

Now,nawigate to NetEye directory on Your desktop and type this command to compile NetEye:

g++ -o NetEye NetEye.cpp -lpcap -lboost_system -lboost_thread

Then,You should see executable file in this directory,without extension. Run this command to allow this file to run as program:

sudo chmod +x NetEye

Now,You can run NetEye:

sudo ./NetEye -i INTERFACE

As "INTERFACE" use network interface of your device.Run ifconfig command to see available interfaces.

NetEye