https://github.com/countervolts/network-related-thing
https://github.com/countervolts/network-related-thing
arp arp-spoofing
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/countervolts/network-related-thing
- Owner: countervolts
- Created: 2025-03-29T04:25:44.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-03-31T01:22:56.000Z (6 months ago)
- Last Synced: 2025-03-31T02:26:07.820Z (6 months ago)
- Topics: arp, arp-spoofing
- Language: Python
- Homepage:
- Size: 1.53 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## network related thing
### key features
- **disable devices**: block devices on your network by their ip and mac addresses, with built in anti-anti-disable features
- **network scanner**: scan your network to see all active devices, their ip, mac, hostname, and vendor
- **mac address bypass**: change your mac address using registry or cmd methods without needing to restart### other features
- **history management**: view scan and bypass history. revert mac address back if needed.
- **settings**: customize how the app works, like auto-opening or hiding the website
- **misc tools**: clear console, local storage, or history. download the latest oui file for vendor lookups## how to use
download lates version pre-compiled executable [here](https://github.com/countervolts/network-related-thing/releases)
### requirements
- python 3.10 or higher
- windows 10/11### running Source
```sh
python -m pip install -r requirements.txt
python server.py
```### building source
```sh
python -m pip install -r requirements.txt
python -m pip install pyinstaller
```3. locate the folder using `cd` in the command prompt
4. run the following command to build the executable:
```sh
pyinstaller server.py --onefile --name=server --icon=favicon.ico --clean --noconfirm \
--add-data "index.html;." --add-data "favicon.ico;." \
--add-data "src\bypass;src\bypass" --add-data "src\history;src\history" \
--add-data "src\misc;src\misc" --add-data "src\scanner;src\scanner" \
--add-data "src\settings;src\settings"
```wait for it to compile.
5. go into `dist` and run the executable