forked from Starwarsfan2099/C-Packet-Sniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
88c3866
commit 8e7ff84
Showing
1 changed file
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,27 @@ | ||
# C-Packet-Sniffer | ||
Small c++ basic packet sniffer for TCP, UDP, IGMP, and Others. Written in Basic C++ | ||
This is for begginers in C++ to learn how to se sockets. This (just like the python sniffer) will not capture any passwords (it's still cool though). This saves a significate ammount of data to a log file in the same directory the code is run(log.txt). | ||
|
||
# Compiling | ||
To compile simply run this command on Unix: | ||
|
||
gcc sniffer.c -o sniffer | ||
|
||
# Running | ||
To run, you must have root privlages: | ||
|
||
|
||
Unix: ./sniffer | ||
|
||
Ubuntu(and some other OS's): | ||
|
||
|
||
sudo su | ||
|
||
|
||
*password* | ||
|
||
|
||
./sniffer | ||
|
||
|
||
Its that Easy, Enjoy!!! |