Giter VIP home page Giter VIP logo

evillimiter's Introduction

Evil Limiter

License Badge Compatibility Maintenance HitCount Open Source Love

A tool to monitor, analyze and limit the bandwidth (upload/download) of devices on your local network without physical or administrative access.
evillimiter employs ARP spoofing and traffic shaping to throttle the bandwidth of hosts on the network.

Searching for a Windows-compatible version?
Check out the open-source alternative EvilLimiter for Windows.

Requirements

  • Linux distribution
  • Python 3 or greater

Possibly missing python packages will be installed during the installation process.

Installation

git clone https://github.com/bitbrute/evillimiter.git
cd evillimiter
sudo python3 setup.py install

Alternatively, you can download a desired version from the Release page.

Usage

Type evillimiter or python3 bin/evillimiter to run the tool.

evillimiter will try to resolve required information (network interface, netmask, gateway address, ...) on its own, automatically.

Command-Line Arguments

Argument Explanation
-h Displays help message listing all command-line arguments
-i [Interface Name] Specifies network interface (resolved if not specified)
-g [Gateway IP Address] Specifies gateway IP address (resolved if not specified)
-m [Gateway MAC Address] Specifies gateway MAC address (resolved if not specified)
-n [Netmask Address] Specifies netmask (resolved if not specified)
-f Flushes current iptables and tc configuration. Ensures that packets are dealt with correctly.
--colorless Disables colored output

evillimiter Commands

Command Explanation
scan (--range [IP Range]) Scans your network for online hosts. One of the first things to do after start.
--range lets you specify a custom IP range.
For example: scan --range 192.168.178.1-192.168.178.40 or just scan to scan the entire subnet.
hosts (--force) Displays all the hosts/devices previously scanned and basic information. Shows ID for each host that is required for interaction.
--force forces the table to be shown, even when it doesn't fit the terminal.
limit [ID1,ID2,...] [Rate] (--upload) (--download) Limits bandwidth of host(s) associated to specified ID. Rate determines the internet speed.
--upload limits outgoing traffic only.
--download limits incoming traffic only.
Valid rates: bit, kbit, mbit, gbit
For example: limit 4,5,6 200kbit or limit all 1gbit
block [ID1,ID2,...] (--upload) (--download) Blocks internet connection of host(s) associated to specified ID.
--upload limits outgoing traffic only
--download limits incoming traffic only.
free [ID1,ID2,...] Unlimits/Unblocks host(s) associated to specified ID. Removes all further restrictions.
add [IP] (--mac [MAC]) Adds custom host to host list. MAC-Address will be resolved automatically or can be specified manually.
For example: add 192.168.178.24 or add 192.168.1.50 --mac 1c:fc:bc:2d:a6:37
monitor (--interval [time in ms]) Monitors bandwidth usage of limited host(s) (current usage, total bandwidth used, ...).
--interval sets the interval after bandwidth information get refreshed in milliseconds (default 500ms).
For example: monitor --interval 1000
analyze [ID1,ID2,...] (--duration [time in s]) Analyzes traffic of host(s) without limiting to determine who uses how much bandwidth.
--duration specifies the duration of the analysis in seconds (default 30s).
For example: analyze 2,3 --duration 120
watch Shows current watch status. The watch feature detects when a host reconnects with a different IP address.
watch add [ID1,ID2,...] Adds specified host(s) to the watchlist.
For example: watch add 6,7,8
watch remove [ID1,ID2,...] Removes specified host(s) from the watchlist.
For example: watch remove all
watch set [Attribute] [Value] Changes current watch settings. The following attributes can be changed:
range is the IP range to scan for reconnects.
interval is the time to wait between each network scan (in seconds).
For example: watch set interval 120
clear Clears the terminal window.
quit Quits the application.
?, help Displays command information similar to this one.

Restrictions

  • Limits IPv4 connctions only, since ARP spoofing requires the ARP packet that is only present on IPv4 networks.

Disclaimer

Evil Limiter is provided by bitbrute "as is" and "with all faults". The provider makes no representations or warranties of any kind concerning the safety, suitability, lack of viruses, inaccuracies, typographical errors, or other harmful components of this software. There are inherent dangers in the use of any software, and you are solely responsible for determining whether Evil Limiter is compatible with your equipment and other software installed on your equipment. You are also solely responsible for the protection of your equipment and backup of your data, and the provider will not be liable for any damages you may suffer in connection with using, modifying, or distributing this software.

License

Copyright (c) 2019 by bitbrute. Some rights reserved.
Evil Limiter is licensed under the MIT License as stated in the LICENSE file.

evillimiter's People

Contributors

bitbrute avatar leonardus avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

evillimiter's Issues

Failing at SUDO PYTHON3 SETUP.PH INSTALL

When i am running the command i receive the following error.

checking for netlink support...yes. will use netlink to read routing table netifaces.c:1:10: fatal error: Python.h: No such file or directory 1 | #include <Python.h> | ^~~~~~~~~~ compilation terminated. error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

All attempts to use the tool fail after that as it is missing the netifaces distribution.

stuck at sudo python3 setup.py install

Traceback (most recent call last):
File "setup.py", line 3, in
from setuptools import setup, find_packages, Command
ModuleNotFoundError: No module named 'setuptools'

Custom IP range

When this script runs on large networks, the scanning process is too long. That's fine when you do not know anything about the network, but if you know the IP range of hosts this is unnecessary. I suggest an improvement by adding an option to the scan that is used to specify a range of ip.

An uninstaller?

Hello @bitbrute ,
Any availability of an uninstaller in the near future?

If you require any help building one, let me know..

Thanks

Getting 'ascii' codec error, possibly created by colorama

Traceback (most recent call last): File "/usr/local/bin/evillimiter", line 9, in <module> load_entry_point('evillimiter==1.3.0', 'console_scripts', 'evillimiter')() File "/usr/local/lib/python3.5/dist-packages/evillimiter-1.3.0-py3.5.egg/evillimiter/evillimiter.py", line 157, in run IO.print(get_main_banner(version)) File "/usr/local/lib/python3.5/dist-packages/evillimiter-1.3.0-py3.5.egg/evillimiter/console/io.py", line 33, in print print(text, end=end, flush=flush) File "/usr/local/lib/python3.5/dist-packages/colorama/ansitowin32.py", line 41, in write self.__convertor.write(text) File "/usr/local/lib/python3.5/dist-packages/colorama/ansitowin32.py", line 164, in write self.wrapped.write(text) UnicodeEncodeError: 'ascii' codec can't encode characters in position 6-16: ordinal not in range(128)

How to solve this. Running project from docker container.

Ubuntu Windows Subsystem Linux error

Hello, first of all thank you a lot for this tool! I was searching for this for a long time, because my current load balancing system was bad and this is working great on my Kali Linux Laptop.
BUT i want to run it under a Windows System, so im using the Ubuntu Linux Subsytem in Windows 10.
I have every dependency installed and have successfully run the setup, but when i try to start evillimiter i am getting this error:

OK interface: wifi0
OK gateway ip: 192.168.178.1
Traceback (most recent call last):
File "/usr/local/bin/evillimiter", line 9, in
load_entry_point('evillimiter==1.1.0', 'console_scripts', 'evillimiter')()
File "/usr/local/lib/python3.5/dist-packages/evillimiter-1.1.0-py3.5.egg/evillimiter/evillimiter.py", line 159, in run
args = process_arguments(args)
File "/usr/local/lib/python3.5/dist-packages/evillimiter-1.1.0-py3.5.egg/evillimiter/evillimiter.py", line 91, in process_arguments
gateway_mac = netutils.get_mac_by_ip(interface, gateway_ip)
File "/usr/local/lib/python3.5/dist-packages/evillimiter-1.1.0-py3.5.egg/evillimiter/networking/utils.py", line 43, in get_mac_by_ip
response = sr1(packet, timeout=3, verbose=0, iface=interface)
File "/usr/local/lib/python3.5/dist-packages/scapy-2.4.3rc1-py3.5.egg/scapy/sendrecv.py", line 501, in sr1
s = conf.L3socket(promisc=promisc, filter=filter, nofilter=nofilter, iface=iface) # noqa: E501
File "/usr/local/lib/python3.5/dist-packages/scapy-2.4.3rc1-py3.5.egg/scapy/arch/linux.py", line 445, in init
self.ins = socket.socket(socket.AF_PACKET, socket.SOCK_RAW, socket.htons(type)) # noqa: E501
File "/usr/lib/python3.5/socket.py", line 134, in init
_socket.socket.init(self, family, type, proto, fileno)
OSError: [Errno 97] Address family not supported by protocol
Exception ignored in: <bound method SuperSocket.del of <scapy.arch.linux.L3PacketSocket object at 0x7f77c86d90b8>>
Traceback (most recent call last):
File "/usr/local/lib/python3.5/dist-packages/scapy-2.4.3rc1-py3.5.egg/scapy/supersocket.py", line 127, in del
self.close()
File "/usr/local/lib/python3.5/dist-packages/scapy-2.4.3rc1-py3.5.egg/scapy/arch/linux.py", line 481, in close
set_promisc(self.ins, self.iface, 0)
AttributeError: 'L3PacketSocket' object has no attribute 'ins'

i couldn't solve it, so it would be really great if you could take a look on it.

I also tried to run evillimiter in a VM with the interface as bridged, but it seems to not function. The bandwith is not effected at all.

Thanks in advance

Network help.

So apparently when I scan it only shows 3 hosts and those IP address are incorrect my interface is eth0 but my gateway ip and gateway Mac is incorrect is there anyway to change the gateway ip and gateway Mac I tried doing it by evil limiter -m (gateway Mac) and evil limiter -h and I put it my router gateway Mac and IP but when I input the Mac it auto starts evil limiter but not with the settings I put in the same incorrect ones

Can't free my own laptop

I blocked my laptop to try out the tool, after i did so i tried to free it but kali froze and had to hard reboot it. Now when i started evillimiter my laptop doesn't show up in the hosts list, thus i can't free it. HELP

error

rootk@LAPTOP-M25MSLPJ:~/evillimiter$ python3 setup.py
Traceback (most recent call last):
File "setup.py", line 3, in
from setuptools import setup, find_packages, Command
ModuleNotFoundError: No module named 'setuptools'

no module named 'netifaces'

i already search everywhere, and didn't get any solution

Traceback (most recent call last):
File "/usr/local/bin/evillimiter", line 11, in
load_entry_point('evillimiter==1.2.0', 'console_scripts', 'evillimiter')()
File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 480, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 2693, in load_entry_point
return ep.load()
File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 2324, in load
return self.resolve()
File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 2330, in resolve
module = import(self.module_name, fromlist=['name'], level=0)
File "/usr/local/lib/python3.7/dist-packages/evillimiter-1.2.0-py3.7.egg/evillimiter/evillimiter.py", line 9, in
import evillimiter.networking.utils as netutils
File "/usr/local/lib/python3.7/dist-packages/evillimiter-1.2.0-py3.7.egg/evillimiter/networking/utils.py", line 2, in
import netifaces
ModuleNotFoundError: No module named 'netifaces'

the weird thing is, i already have module netifaces on pip3

user@computer:~/evillimiter-1.2.0$ pip3 list
DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.
asn1crypto (0.24.0)
Brlapi (0.6.6)
certifi (2018.1.18)
chardet (3.0.4)
colorama (0.4.1)
cryptography (2.1.4)
cupshelpers (1.0)
defer (1.0.6)
distro-info (0.18ubuntu0.18.04.1)
evillimiter (1.2.0)
httplib2 (0.9.2)
idna (2.6)
keyring (10.6.0)
keyrings.alt (3.0)
launchpadlib (1.10.6)
lazr.restfulclient (0.13.5)
lazr.uri (1.0.3)
louis (3.5.0)
macaroonbakery (1.1.3)
Mako (1.0.7)
MarkupSafe (1.0)
netaddr (0.7.19)
netifaces (0.10.4)
oauth (1.0.1)
olefile (0.45.1)
pexpect (4.2.1)
Pillow (5.1.0)
pip (9.0.1)
protobuf (3.0.0)
pycairo (1.16.2)
pycrypto (2.6.1)
pycups (1.9.73)
pygobject (3.26.1)
pymacaroons (0.13.0)
PyNaCl (1.1.2)
pyRFC3339 (1.0)
python-apt (1.6.4)
python-dateutil (2.6.1)
python-debian (0.1.32)
pytz (2018.3)
pyxdg (0.25)
PyYAML (3.12)
reportlab (3.4.0)
requests (2.18.4)
requests-unixsocket (0.1.5)
scapy (2.4.3)
scapy-python3 (0.23)
screen-resolution-extra (0.0.0)
SecretStorage (2.3.1)
setuptools (39.0.1)
simplejson (3.13.2)
six (1.11.0)
systemd-python (234)
terminaltables (3.1.0)
tqdm (4.35.0)
ubuntu-drivers-common (0.0.0)
ufw (0.36)
unattended-upgrades (0.1)
urllib3 (1.22)
usb-creator (0.3.3)
wadllib (1.3.2)
wheel (0.33.6)
xkit (0.0.0)
zope.interface (4.3.2)

Feature request

Developers,

First let me say to everyone thank you for such a very nice and interesting piece of software! However, I am wondering, is there a way that it evil limiter could monitor the bandwidth and display it for all users before any limits are applied?

Thanks!

Stuart

Block by Mac Address not IP Address

First of all great tool!! Thanks for the great work on this amazing tool.

I have seen that when a user “limits” or blocks traffic the EvilLimiter application blocks by IP address.

• The blocked user then experiences limited speed.

The issue is that:

• the blocked user experiences limited speed, then drops off from the Network, then reconnects. The blocked user is assigned a new IP address and the MAC address remains.

This makes it so if I “limit” my entire network, and someone is “disconnecting then reconnecting” they are able to bypass the EvilLimiter.

If the EvilLimiter blocked/limited by Mac Address instead of IP address this workaround for blocked users would be more difficult

can not install

Hello, on LUBUNTU 18.04 LTS

python3 setup.py install

gives

Traceback (most recent call last):
File "setup.py", line 3, in
from setuptools import setup, find_packages, Command
ModuleNotFoundError: No module named 'setuptools'

Nothing is being Blocked

Hello i have tried everything even reinstalling but nothing is being blocked and when i free i get error to flush network and i have to reboot to get menu back to try again

I put python3 setup.py install and get this error.

I put Sudo python3 setup.py install and get this error

Traceback (most recent call last):
File “setup.py”, line 3, in
From setuptools import setup, find_packages, Command
ModuleNotFoundError: no module named ‘setuptools’

Thank you

Thank you for the great tool, I didn't even think that it is possible to implement :)

No local packages or working download links found for terminaltables

Kali-Linux-2019.1-vbox-amd64

When I run the following command: "sudo python3 setup.py install"

I've got this error message:

Installed /usr/local/lib/python3.6/site-packages/evillimiter-1.2.0-py3.6.egg
Processing dependencies for evillimiter==1.2.0
Searching for terminaltables
Reading https://pypi.python.org/simple/terminaltables/
Download error on https://pypi.python.org/simple/terminaltables/: unknown url type: https -- Some packages may not be found!
Couldn't find index page for 'terminaltables' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.python.org/simple/
Download error on https://pypi.python.org/simple/: unknown url type: https -- Some packages may not be found!
No local packages or working download links found for terminaltables
error: Could not find suitable distribution for Requirement.parse('terminaltables')

Any idea why? Thanks in advance!

Installation

First off i think this might be my fault but whenever i python3 setup.py this shows up.

Download error on https://pypi.org/simple/terminaltables/: unknown url type: https -- Some packages may not be found!
Couldn't find index page for 'terminaltables' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.org/simple/
Download error on https://pypi.org/simple/: unknown url type: https -- Some packages may not be found!
No local packages or working download links found for terminaltables
error: Could not find suitable distribution for Requirement.parse('terminaltables')

Limiter doesn't work

When I do scan I only get 3 hosts every time, none of which start with 192.168 instead they start with 10.0.

I worked around this issue by manually adding my own ip and MAC address add [IP] (--mac [MAC]) then limit 3 100kbit

When I checked on speedtest.net the download and upload speeds were not affected even after doing limit 3 100kbit --download

Mac Address Option - Not An Issue

Hi , tested this tool on Kali Nethunter. It works fine. It will be cool if you can add an option for launching the tool with mac add option on the gateway.

Thanks.

iOS and Android App?

Question:
What do you think port or make
an app for evillimiter-ios and android?

I noticed you got a Windows binary and Linux.

Interface Err

Getting this error.
ERR default interface could not be resolved. specify manually (-i).

ImportError: cannot import name 'shell'

Getting the following error :
On running command python3 bin/evillimiter

/usr/lib/python3/dist-packages/pkg_resources.py:1031: UserWarning: /home/ashwani/.python-eggs is writable by group/others and vulnerable to attack when used with get_resource_filename. Consider a more secure location (set with .set_extraction_path or the PYTHON_EGG_CACHE environment variable). warnings.warn(msg, UserWarning) Traceback (most recent call last): File "bin/evillimiter", line 14, in <module> from evillimiter.evillimiter import run # pylint: disable=no-name-in-module File "/home/ashwani/chill/evillimiter/evillimiter/evillimiter.py", line 9, in <module> import evillimiter.networking.utils as netutils File "/home/ashwani/chill/evillimiter/evillimiter/networking/utils.py", line 5, in <module> import evillimiter.console.shell as shell File "/home/ashwani/chill/evillimiter/evillimiter/console/shell.py", line 3, in <module> from evillimiter.console.io import IO File "/home/ashwani/chill/evillimiter/evillimiter/console/io.py", line 4, in <module> from . import shell ImportError: cannot import name 'shell'

Similarly for command evillimiter

/usr/lib/python3/dist-packages/pkg_resources.py:1031: UserWarning: /home/ashwani/.python-eggs is writable by group/others and vulnerable to attack when used with get_resource_filename. Consider a more secure location (set with .set_extraction_path or the PYTHON_EGG_CACHE environment variable). warnings.warn(msg, UserWarning) Traceback (most recent call last): File "/usr/local/bin/evillimiter", line 9, in <module> load_entry_point('evillimiter==1.2.0', 'console_scripts', 'evillimiter')() File "/usr/lib/python3/dist-packages/pkg_resources.py", line 351, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "/usr/lib/python3/dist-packages/pkg_resources.py", line 2363, in load_entry_point return ep.load() File "/usr/lib/python3/dist-packages/pkg_resources.py", line 2088, in load entry = __import__(self.module_name, globals(),globals(), ['__name__']) File "/usr/local/lib/python3.4/dist-packages/evillimiter-1.2.0-py3.4.egg/evillimiter/evillimiter.py", line 9, in <module> import evillimiter.networking.utils as netutils File "/usr/local/lib/python3.4/dist-packages/evillimiter-1.2.0-py3.4.egg/evillimiter/networking/utils.py", line 5, in <module> import evillimiter.console.shell as shell File "/usr/local/lib/python3.4/dist-packages/evillimiter-1.2.0-py3.4.egg/evillimiter/console/shell.py", line 3, in <module> from evillimiter.console.io import IO File "/usr/local/lib/python3.4/dist-packages/evillimiter-1.2.0-py3.4.egg/evillimiter/console/io.py", line 4, in <module> from . import shell ImportError: cannot import name 'shell'

Errors

evillimiter
Hello,
an image of the Errors is attached.

My OS: Fedora 25 64bit
I checked the first three Errors and the mentioned utils were in the PATH.

Regards

AttributeError: 'L3PacketSocket' object has no attribute 'ins'

Traceback (most recent call last):
File "/usr/local/bin/evillimiter", line 11, in
load_entry_point('evillimiter==1.2.0', 'console_scripts', 'evillimiter')()
File "/usr/local/lib/python3.7/dist-packages/evillimiter-1.2.0-py3.7.egg/evillimiter/evillimiter.py", line 167, in run
args = process_arguments(args)
File "/usr/local/lib/python3.7/dist-packages/evillimiter-1.2.0-py3.7.egg/evillimiter/evillimiter.py", line 93, in process_arguments
gateway_mac = netutils.get_mac_by_ip(interface, gateway_ip)
File "/usr/local/lib/python3.7/dist-packages/evillimiter-1.2.0-py3.7.egg/evillimiter/networking/utils.py", line 43, in get_mac_by_ip
response = sr1(packet, timeout=3, verbose=0, iface=interface)
File "/usr/local/lib/python3.7/dist-packages/scapy-2.4.3rc3-py3.7.egg/scapy/sendrecv.py", line 488, in sr1
nofilter=nofilter, iface=iface)
File "/usr/local/lib/python3.7/dist-packages/scapy-2.4.3rc3-py3.7.egg/scapy/arch/linux.py", line 450, in init
self.ins = socket.socket(socket.AF_PACKET, socket.SOCK_RAW, socket.htons(type)) # noqa: E501
File "/usr/lib/python3.7/socket.py", line 151, in init
_socket.socket.init(self, family, type, proto, fileno)
OSError: [Errno 97] Address family not supported by protocol
Exception ignored in: <function SuperSocket.del at 0x7ffa9e54f9d8>
Traceback (most recent call last):
File "/usr/local/lib/python3.7/dist-packages/scapy-2.4.3rc3-py3.7.egg/scapy/supersocket.py", line 134, in del
self.close()
File "/usr/local/lib/python3.7/dist-packages/scapy-2.4.3rc3-py3.7.egg/scapy/arch/linux.py", line 492, in close
if self.promisc and self.ins:
AttributeError: 'L3PacketSocket' object has no attribute '

Kali linux, python3.7
this occurs when attempting to start evillimiter

Blocking when limiting

Hello, just installed it on Manjaro 18.1 and when trying to limit devices in my net it block them instead of limiting. Any solution for this? Thanks in advance.

A new syntax error can some one plz help me with it (traceback) /Traceback (most recent call last):

Traceback (most recent call last):
File "/usr/local/bin/evillimiter", line 11, in
load_entry_point('evillimiter==1.2.0', 'console_scripts', 'evillimiter')()
File "/usr/lib/python2.7/dist-packages/pkg_resources/init.py", line 489, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/lib/python2.7/dist-packages/pkg_resources/init.py", line 2793, in load_entry_point
return ep.load()
File "/usr/lib/python2.7/dist-packages/pkg_resources/init.py", line 2411, in load
return self.resolve()
File "/usr/lib/python2.7/dist-packages/pkg_resources/init.py", line 2417, in resolve
module = import(self.module_name, fromlist=['name'], level=0)
File "/usr/local/lib/python2.7/dist-packages/evillimiter-1.2.0-py2.7.egg/evillimiter/evillimiter.py", line 157
IO.print(get_main_banner(version))
^
SyntaxError: invalid syntax

Can we make it work on Mac?

Could you guide us if this tool can be made work with Mac?

I could probably help, just let me know whats stopping this to work in Mac?

Limit command just block devices not limiting the speed

limit command just block devices " no internet " not limiting network speed , i tested that on 2 devices with different OS , from the router wifi and the access point wifi even with different speed .. same results although the device on the terminal is limited .

Linux Mint 19.1

Not Limiting connections, Completely blocks connections.

Im unsure what happened. When i first installed evil limiter and tested it. It was limiting the connections to 3mbits with the limit command. Now if i run the limit command, it completely blocks the device from loading web pages as if i used the block command. I have tried with ethernet, it worked to limit connections. And my built in wireless device also was limiting the connections. So im confused as to why it just stopped functioning. Any ideas?

Help me to bypass NAC.

So I get in to the network that I have already spoofed IP and MAC address but the internet is not accessible. I tried researching and I see a lot of suggestions; one wrote to me that the ports are registered, another one; the LAN is configured to the MAC address.

I am seeking help on Bypassing those few suggestions if they are existing in the network access control.
Write to me [email protected] direct email.

Sudo Python3 setup.py isnt working

every time i try using it when i get to the first part which is the installation, i get stuck because every time i use sudo python3 setup.py install it says this

Traceback (most recent call last):
File "setup.py", line 3, in
from setuptools import setup, find_packages, Command
ModuleNotFoundError: No module named 'setuptools'

can i get help please

Can not use evillimiter on my machine.

I'm baffled by what is going wrong. I use arch on my other laptop and it runs fine, but for some reason evillimiter gives me a qdisc error when running on a different arch installation.
This is running at root, flushing does not help.
ERR qdisc root handle could not be created. maybe flush network settings (--flush).

help !!!

Traceback (most recent call last):
File "/usr/local/bin/evillimiter", line 6, in
from pkg_resources import load_entry_point
File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 3250, in
@_call_aside
File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 3234, in _call_aside
f(*args, **kwargs)
File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 3263, in _initialize_master_working_set
working_set = WorkingSet._build_master()
File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 583, in _build_master
ws.require(requires)
File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 900, in require
needed = self.resolve(parse_requirements(requirements))
File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 786, in resolve
raise DistributionNotFound(req, requirers)
pkg_resources.DistributionNotFound: The 'netifaces' distribution was not found and is required by evillimiter

ipv6 bug

so, i tested it on my phone and apps like telegram or youtube couldn't access the internet, but whenever i tried to visit ipv6.google.com, the blocking effect just disappeared.

Unable to install:

evillimiter$ sudo python3 setup.py install
Traceback (most recent call last):
File "setup.py", line 3, in
from setuptools import setup, find_packages, Command
ModuleNotFoundError: No module named 'setuptools'

module 'os' has no attribute 'geteuid'

So l was fascinated by Evillimiter for educational purposes of course. I used it on my Kali linux and it works so well. I wanted to try it on windows, sadly l got this error

File "C:\Users*******\Anaconda3\lib\site-packages\evillimiter-1.1.0-py3.6.egg\evillimiter\evillimiter.py", line 39, in is_privileged
return os.geteuid() == 0
**

AttributeError: module 'os' has no attribute 'geteuid'

**
image

Any Fix for this

evillimiter on termux

hi
i tried to install the tool on termux and i did it
but when i try to start use it by thia command : evillimiter
it gives me this
root@localhost:~# evillimiter
ERR missing util: tc, check your PATH
ERR missing util: iptables, check your PATH
ERR missing util: sysctl, check your PATH

███████╗██╗ ██╗██╗██╗ ██╗ ██╗███╗ ███╗██╗████████╗███████╗██████╗
██╔════╝██║ ██║██║██║ ██║ ██║████╗ ████║██║╚══██╔══╝██╔════╝██╔══██╗
█████╗ ██║ ██║██║██║ ██║ ██║██╔████╔██║██║ ██║ █████╗ ██████╔╝
██╔══╝ ╚██╗ ██╔╝██║██║ ██║ ██║██║╚██╔╝██║██║ ██║ ██╔══╝ ██╔══██╗
███████╗ ╚████╔╝ ██║███████╗ ███████╗██║██║ ╚═╝ ██║██║ ██║ ███████╗██║ ██║
╚══════╝ ╚═══╝ ╚═╝╚══════╝ ╚══════╝╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═╝
by bitbrute ~ limit devices on your network :3
v1.3.0

ERR default interface could not be resolved. specify manually (-i).
can you help me please

ERR_CONNECTION_TIMED_OUT

Hei, I'm running Evillimiter on Kali VM workstation and every time i used EL to limit other devices i can't used my Main computer ( Win 10 ) i don't know why. Suggestion?
evl

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.