cdes5804 / NetCut

A simple tool to cut people's network with ARP spoofing, written in pure C++
GNU General Public License v3.0
71 stars 13 forks source link

problematic wait interval #5

Closed cdes5804 closed 3 years ago

cdes5804 commented 3 years ago

Currently the wait interval is set to 3ms, which means if the target does not replay within 3ms, it is considered not in the network. This can cause some problems as the response may be late. But extending the interval will result in longer scanning time. Possible solution is to always listening with a thread and add targets as we receive response, instead of waiting for specific target to response.