Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
928 changes: 457 additions & 471 deletions CyberScan.py

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ You can download CyberScan by cloning the [Git](https://github.com/medbenali/Cyb

CyberScan works out of the box with [Python](http://www.python.org/download/) version **2.6.x** and **2.7.x**.

# CyberScan v1.1.1

Network scanning and analysis tool (Updated for Python 3)

## Installation

1. Clone the repository:
```bash
git clone <your-repo-url>
cd CyberScan

# The CyberScan Module Usage


Expand Down
13 changes: 13 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from scapy_local.all import *

print("✅ Scapy imported successfully!")

# Example: List all available interfaces
print("Available interfaces:")
print(Conf.ifaces)

# Example: Capture 3 packets (Ctrl+C to stop if it hangs)
print("\nSniffing 3 packets...")
packets = sniff(count=3)
for pkt in packets:
print(pkt.summary())
355 changes: 0 additions & 355 deletions scapy/arch/pcapdnet.py

This file was deleted.

2 changes: 1 addition & 1 deletion scapy/__init__.py → scapy_local/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"""

if __name__ == "__main__":
from scapy.main import interact
from scapy_local.main import interact
interact()
Loading