-
Notifications
You must be signed in to change notification settings - Fork 876
Error When running EyeWitness #393
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Did you install this by cloning down via git, running the setup script, and then running EyeWitness, or possibly through apt? I can't seem to get these errors. |
Yes,I cloned the git then cd in the directory, cd in setup and executed the setup script which runs without errors. Do you want anymore logs? |
Honestly, I'm not certain what else to ask for. I just tested a clean install of Kali with EyeWitness (cloned from the repo), and the setup ran successfully. When I tried running EyeWitness, everything worked (took screenshots, generated the report, etc.). It leads me to think it is something with your local install. Could you try on a clean Kali install too? |
Happened to me too. Resolved it by updating my attrs: |
Uh oh!
There was an error while loading. Please reload this page.
OS Used - ALL Information (architecture, linux flavor, etc.)
I'm Using Kali Linux
Linux kali 4.14.0-kali3-amd64 #1 SMP Debian 4.14.12-2kali1 (2018-01-08) x86_64 GNU/Linux
Pastebin link to error you are encountering
https://pastebin.com/p7Y5Mb7B
Expected behavior (vs. what you encountered)
I expect it to run normally but I get this error :
TypeError: attr() got an unexpected keyword argument 'converter'
or
AttributeError: 'module' object has no attribute 's'
Any additional information
Hi :) .
EyeWitness used to work flawlessly but suddely I have the following issue
(i had not used it in while)
I'm using kali linux
I have tried a fresh install but when I try to run it I get:
TypeError: attr() got an unexpected keyword argument 'converter'
I search the net and I think that it has to do with the Attr() that something has been renamed from convert to converter
Maybe i'm doing something wrong with the Attr installation or a wrongly installed Python exists maybe
I tried doing
pip install attr
which change the error toAttributeError: 'module' object has no attribute 's'
but then again
pip install attrs
and again the converter errorP.S.:I face the same issue with the EyeWitness installation of domained which again installs EyeWitness independently
outputs:
without attrs
root@kali:~/Downloads/EyeWitness# ./EyeWitness.py --web -f /root/aquatone/riotgames.com/urls.txt
Traceback (most recent call last):
File "./EyeWitness.py", line 16, in
from modules import rdp_module
File "/root/Downloads/EyeWitness/modules/rdp_module.py", line 8, in
from rdpy.protocol.rdp import rdp
File "build/bdist.linux-x86_64/egg/rdpy/protocol/rdp/rdp.py", line 30, in
File "build/bdist.linux-x86_64/egg/rdpy/protocol/rdp/x224.py", line 313, in
File "/usr/lib/python2.7/dist-packages/twisted/internet/ssl.py", line 65, in
from twisted.internet import tcp, interfaces
File "/usr/lib/python2.7/dist-packages/twisted/internet/tcp.py", line 31, in
from twisted.internet._newtls import (
File "/usr/lib/python2.7/dist-packages/twisted/internet/_newtls.py", line 21, in
from twisted.protocols.tls import TLSMemoryBIOFactory, TLSMemoryBIOProtocol
File "/usr/lib/python2.7/dist-packages/twisted/protocols/tls.py", line 61, in
from twisted.internet._producer_helpers import _PullToPush
File "/usr/lib/python2.7/dist-packages/twisted/internet/_producer_helpers.py", line 13, in
from twisted.internet.task import cooperate
File "/usr/lib/python2.7/dist-packages/twisted/internet/task.py", line 25, in
from twisted.internet import base, defer
File "/usr/lib/python2.7/dist-packages/twisted/internet/base.py", line 27, in
from twisted.internet._resolver import (
File "/usr/lib/python2.7/dist-packages/twisted/internet/_resolver.py", line 25, in
from twisted.internet.address import IPv4Address, IPv6Address
File "/usr/lib/python2.7/dist-packages/twisted/internet/address.py", line 103, in
class UNIXAddress(object):
File "/usr/lib/python2.7/dist-packages/twisted/internet/address.py", line 111, in UNIXAddress
name = attr.ib(converter=attr.converters.optional(_asFilesystemBytes))
TypeError: attr() got an unexpected keyword argument 'converter'
with attrs:
root@kali:~/Downloads/EyeWitness# ./EyeWitness.py --web -f /root/aquatone/riotgames.com/urls.txt
Traceback (most recent call last):
File "./EyeWitness.py", line 16, in
from modules import rdp_module
File "/root/Downloads/EyeWitness/modules/rdp_module.py", line 8, in
from rdpy.protocol.rdp import rdp
File "build/bdist.linux-x86_64/egg/rdpy/protocol/rdp/rdp.py", line 24, in
File "build/bdist.linux-x86_64/egg/rdpy/core/layer.py", line 107, in
File "/usr/lib/python2.7/dist-packages/twisted/internet/protocol.py", line 18, in
from twisted.internet import interfaces, error, defer
File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1366, in
@attr.s
AttributeError: 'module' object has no attribute 's'
The text was updated successfully, but these errors were encountered: