Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miltiadis-kon/cybersecurity-tools
A plethora of algorithms to automate basic cybersecurity tasks
https://github.com/miltiadis-kon/cybersecurity-tools
Last synced: 13 days ago
JSON representation
A plethora of algorithms to automate basic cybersecurity tasks
- Host: GitHub
- URL: https://github.com/miltiadis-kon/cybersecurity-tools
- Owner: Miltiadis-Kon
- Created: 2022-09-15T15:44:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-17T11:29:26.000Z (over 2 years ago)
- Last Synced: 2024-11-05T15:09:07.882Z (2 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cybersecurity-tools
A plethora of algorithms to automate basic cybersecurity tasks## ARP SPOOFING.
### Explanation
Used to become the man in the middle.
Meaning that you pretend to be the target at the global network and monitor all his requests/responses.
### Basic Commands
1) Pretend to be the router.
A) arp-a --> see your interface and router IP.
A) arpspoof -i eth0 -t (router ip ) (target ip) --> Update arp table to tell router that I am target2) Pretend to be the target.
arpspoof -i eth0 -t (target ip ) (router ip) --> Update arp table to tell target that I am router3) Port Forwarding
A) echo 1 > /proc/sys/net/ipv4/ip_forward
## DNS Spoofing
### Explanation
A method to sniff packets and forward user to a custom server when a specific DNS request is send.
DNS spoof works ONLY if you are the man in the middle..
(ex. If users browses www.facebook.com, then redirect him to your apache server.)
### Complete use case
1) Stalk user's behviour (find his/her favourite websites).
2) Create a clone of the website and run server.
3) Run arp-spoof.py to be the man in the middle
4) Run dns-spoof.py to her favourite website
5) Wait for her to connect and she will be redirected to your website.
6) Steal her data.