evillimiter icon indicating copy to clipboard operation
evillimiter copied to clipboard

Warning message

Open meimeik opened this issue 3 years ago • 20 comments

this is so annoying, the warning message keep spamming my terminal. it happend when scanning. some time it pop up when i want to limit some device. it can still be used but it so annoying.I wish I could get rid of it. (Main) >>> scan

0% | | 0/256WARNING: Mac address to reach destination not found. Using broadcast. WARNING: Mac address to reach destination not found. Using broadcast. WARNING: more Mac address to reach destination not found. Using broadcast. 0% |▏ | 1/256WARNING: Mac address to reach destination not found. Using broadcast. WARNING: Mac address to reach destination not found. Using broadcast. WARNING: more Mac address to reach destination not found. Using broadcast. 38% |███████████▋ | 96/256WARNING: Mac address to reach destination not found. Using broadcast. WARNING: Mac address to reach destination not found. Using broadcast. WARNING: more Mac address to reach destination not found. Using broadcast. 100% |██████████████████████████████| 256/256 OK 2 hosts discovered.

meimeik avatar Apr 11 '21 07:04 meimeik

i have this issue as well, i think it's after the new system update, if you solve it plz write in this blog

Wegito avatar Apr 28 '21 10:04 Wegito

i have this issue as well, i think it's after the new system update, if you solve it plz write in this blog

Same, it's happened to me after updating my Arch Linux

moghaazi avatar May 12 '21 02:05 moghaazi

Me too on ubuntu 21.04 "(Main) >>> WARNING: Mac address to reach destination not found. Using broadcast" "(Main) >>> WARNING: Mac address to reach destination not found. Using broadcast" "(Main) >>> WARNING: Mac address to reach destination not found. Using broadcast"

TixYwat avatar May 23 '21 15:05 TixYwat

Same here. Please let me know if someone finds a fix for this!

Arcane-Cube avatar Jul 10 '21 20:07 Arcane-Cube

I believe I've fixed this in PR #112 by setting the scapy logging level to error

TollyH avatar Jul 12 '21 09:07 TollyH

@TollyThaWally Pardon me for being daft here. How do I exactly make use of this fix? How do I like apply it?

Arcane-Cube avatar Jul 13 '21 18:07 Arcane-Cube

@TollyThaWally I replaced the code you uploaded with the code in the scan.py but still the error warning continues. Can you guide if you fixed it maybe I did some mistake.

Richie1330 avatar Jul 14 '21 17:07 Richie1330

@Arcane-Cube You can modify the file yourself, it's only 2 additional lines which need to be inserted. You can view them and where they go in the "files changed" section of the PR. @Richie1330 When you change the script you will have to run sudo python3 setup.py install again in order to apply the changes.

TollyH avatar Jul 14 '21 17:07 TollyH

@TollyThaWally Thanks man it worked and the warning error is gone:)

Richie1330 avatar Jul 14 '21 17:07 Richie1330

@TollyThaWally It worked like a charm! Thank you ever so very much.

Arcane-Cube avatar Jul 20 '21 09:07 Arcane-Cube

@bitbrute can you apply the PR of @TollyThaWally ? It resolve the issue :-)

MR-Diamond avatar Aug 07 '21 15:08 MR-Diamond

It is not working and i did the same... I still get these annoying Warnings.

xXPerditorXx avatar Dec 29 '21 20:12 xXPerditorXx

/usr/lib/python3.10/site-packages/evillimiter/networking/scan.py

import logging
logging.getLogger("scapy.runtime").setLevel(logging.ERROR)

$ cd /usr/lib/python3.10/site-packages/evillimiter && sudo touch setup.py && sudo python3 setup.py install

moghaazi avatar Jun 24 '22 08:06 moghaazi

/usr/lib/python3.10/site-packages/evillimiter/networking/scan.py

import logging
logging.getLogger("scapy.runtime").setLevel(logging.ERROR)

$ cd /usr/lib/python3.10/site-packages/evillimiter && sudo touch setup.py && sudo python3 setup.py install

It's work in my case. But I think actually the message doesn't afffect the process.

aldinnasrunm avatar Oct 31 '22 03:10 aldinnasrunm

im having this problem with evillimiter how do l fix this WARNING: Mac address to reach destination not found. Using broadcast. WARNING: more Mac address to reach destination not found. Using broadcast.

Dreamer-coder7 avatar Mar 12 '23 06:03 Dreamer-coder7

Has anyone found this error

Ibrokhim1006 avatar Apr 26 '23 13:04 Ibrokhim1006

/usr/lib/python3.10/site-packages/evillimiter/networking/scan.py

import logging
logging.getLogger("scapy.runtime").setLevel(logging.ERROR)

$ cd /usr/lib/python3.10/site-packages/evillimiter && sudo touch setup.py && sudo python3 setup.py install

Sorry for the inconvenience, I'm new to this, and I don't understand, what should I do exactly? step by step, is there a video that explains how to fix it?

darknir14 avatar Jun 13 '23 21:06 darknir14

@darknir14 Open this file from any text editor or from the terminal with this command: sudo nano /usr/lib/python3.10/site-packages/evillimiter/networking/scan.py

then add those two lines in the file:

import logging
logging.getLogger("scapy.runtime").setLevel(logging.ERROR)

and type this command in the terminal

 cd /usr/lib/python3.10/site-packages/evillimiter && sudo touch setup.py && sudo python3 setup.py install

moghaazi avatar Jun 13 '23 23:06 moghaazi

limiter/networking/scan.py

hello, I've searching for the scan.py but I can't found it, can you tell me where the scan.py?

gingerbread-gg avatar Jul 19 '23 17:07 gingerbread-gg

limiter/networking/scan.py

hello, I've searching for the scan.py but I can't found it, can you tell me where the scan.py?

type 'locate scan.py' to get the directory in which it is installed

mega-bots avatar Oct 31 '23 15:10 mega-bots

try to install the scapy by typing command on terminal: sudo apt install scapy or typing command : sudo apt install python3-scapy both are the same. Thanks :D

DontKnows avatar Apr 03 '24 00:04 DontKnows