LionSec / xerosploit

Efficient and advanced man in the middle framework
GNU General Public License v3.0
2.02k stars 651 forks source link

installed xerosploit in kali linux rpi #15

Open jiroseichi opened 8 years ago

jiroseichi commented 8 years ago

i got the following error after installing xerosploit

root@kali:/xerosploit/xerosploit# ./xerosploit.py Traceback (most recent call last): File "./xerosploit.py", line 980, in main home() File "./xerosploit.py", line 62, in home config0() File "./xerosploit.py", line 44, in config0 up_interface = open('/opt/xerosploit/tools/files/iface.txt', 'r').read() IOError: [Errno 2] No such file or directory: '/opt/xerosploit/tools/files/iface.txt'

i cloned xerosploit in /opt/ and installed it now this is the error

root@kali:/opt/xerosploit# ./xerosploit.py

��������� ������������������������������������������������������ ��������������������� ��������������������������������������������� ��������� ��������������������� ������������������������������������ ������������������������������������������������������������������������������������������������������������������������������������������������������������ ��������������������������������������������������������������� ������������������ ������������������ ��������������������������������� ������������������������������������������������������������������ ��������� ������������������ ���������
������������������ ������������������ ��������������������������������� ������������������������������������������������������ ��������� ��������� ������������������ ���������
������������ ������������������������������������������ ��������������������������������������������������������������������� ������������������������������������������������������������ ���������
��������� ������������������������������������������ ��������� ��������������������� ��������������������������������� ������������������������ ��������������������� ��������� ���������

[+]���������������������������������[ Author : @LionSec1 -|/- Website: lionsec.net ]���������������������������������[+]

                  [ Powered by Bettercap and Nmap ]

��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ��� ��� ��� Your Network Configuration ��� ��� ��� ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������

Traceback (most recent call last): File "./xerosploit.py", line 980, in main home() File "./xerosploit.py", line 89, in home print (tabulate(table, stralign="center",tablefmt="fancy_grid",headers="firstrow")) UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-73: ordinal not in range(128)

pls help. thanks!

wasnio commented 8 years ago

run the following commands in your terminal: git clone https://github.com/LionSec/xerosploit cd xerosploit && sudo python install.py sudo xerosploit

install the dependencies: sudo apt install pip sudo pip install tabulate sudo pip install terminaltables

varthdader commented 8 years ago

I faced this same issue on the Raspberry running Kali.

I edited all the lines with. print(table.table)

To the following. print(table.table).encode('utf-8')

Now all UnicodeEncodeErrors seem to be gone.

gl1dd3r commented 8 years ago

Neither of the suggestions did anything for me. I still get the same error:

Traceback (most recent call last): File "./xerosploit.py", line 980, in main home() Traceback (most recent call last): File "./xerosploit.py", line 98, in home Print (tabulate(table, straling="center" ,tablefmt=fancy_grid",headers="firstrow")) UnicodeEncodeError: 'ascii' codec cant encode characters in possition 0-77: ordinal not in range (128)

Liljhon241 commented 7 years ago

After installing terminaltables and tabulate by running pip install terminaltables and pip install tabulate go to /usr/local/lib/python3.5/dist-packages copy and paste terminaltables and tabulate in the xerosploit directory then run xerosploit in the terminal (sorry for my bad english) It work for me

ubernerd117 commented 6 years ago

guys it is very simple just rename the xerosploit-master directory to xerosploit only it worked for me

pfftdammitchris commented 6 years ago

Head on over to #88

Arifbhat commented 6 years ago

Guys I have same problem today.

techsiwolof commented 11 months ago

Just go to xerosploit folder. Edit the install.py file by replacing "python-pip" with "python3-pip". Then run "sudo python install.py".