Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
m0riya42 authored Oct 16, 2021
1 parent 3b18390 commit 728508c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Arp-Spoofing-Detection/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# ARP Spoofing Detection
## Ways to Recognize ARP spoofing

### Options which can lead to ARP SPOOFING.
* Duplicated address in the ARP table.
Expand All @@ -11,12 +10,12 @@
in Order to Detect an Attack, the code is checking how many options from above is happenning.

### Conclusions
<b>less than 2 options: </B> probably there is no Attack.
<b>between 2 and 3 options: </B> the computer may be at risk.
<b>between 4 and 5 options: </B> you are under attack.
* <b>less than 2 options: </B> probably there is no Attack.
* <b>between 2 and 3 options: </B> the computer may be at risk.
* <b>between 4 and 5 options: </B> you are under attack.

in order to protect the computer, we set the ARP table with static address using the command:
os.system("arp -s " + attacked_ip_addres+" " + real_mac_address)
<pre>os.system("arp -s " + attacked_ip_addres+" " + real_mac_address)</pre>



Expand Down

0 comments on commit 728508c

Please sign in to comment.