Skip to content
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

Python3 Support and all ERRORS HAVE BEEN FIXED #266

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
45 changes: 15 additions & 30 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@

[![Version](https://img.shields.io/badge/Xerosploit-Version_1.0-brightgreen.svg?maxAge=259200)]()
[![PyPI](https://img.shields.io/badge/Python-2.7-blue.svg)]()
[![Build](https://img.shields.io/badge/Supported_OS-linux-orange.svg)]()
[![AUR](https://img.shields.io/aur/license/yaourt.svg)]()
<div align="center">
<br>
<img src="https://cdn.cyberpunk.rs/wp-content/uploads/2019/12/xerosploit_mitm_bg.jpg" width="1000px" height="400px">
<br>
<br>
<img src="https://img.shields.io/badge/Language-Python3-blue.svg">
<img src="https://img.shields.io/badge/Supported_OS-linux-black.svg">
<br>
</div>

Xerosploit
=
Xerosploit is a penetration testing toolkit whose goal is to perform man in the middle attacks for testing purposes. It brings various modules that allow to realise efficient attacks, and also allows to carry out denial of service attacks and port scanning.
Powered by <a href="https://www.bettercap.org"> bettercap</a> and <a href="https://www.bettercap.org"> nmap</a>.

![](http://i.imgur.com/bbr48Ep.png)

Dependencies
=
Expand All @@ -30,8 +31,8 @@ Instalation
=
Dependencies will be automatically installed.

git clone https://github.com/LionSec/xerosploit
cd xerosploit && sudo python install.py
git clone https://github.com/hackerW1/xerosploit-python3
cd xerosploit-python3 && sudo python3 install.py
sudo xerosploit


Expand All @@ -53,7 +54,7 @@ Tested on
</tr>
<tr>
<td>Parrot OS</td>
<td>3.1 </td>
<td>4.11.2 </td>
</tr>
</table>

Expand All @@ -74,25 +75,9 @@ features
- Drifnet
- Webpage defacement and more ...

Demonstration
=
https://www.youtube.com/watch?v=35QUrtZEV9U

I have some questions!
=

Please visit https://github.com/LionSec/xerosploit/issues

Donations
=
- Paypal : https://www.paypal.me/lionsec
- Bitcoin : 12dM5kZjYMizNuXaqu7QZBLNDkXjfKYpRD

## UPDATES

Contact
All Errors Fixed
=
- Website : https://neodrix.com
- Youtube : https://youtube.com/inf98es
- Facebook : https://facebook.com/in98
- Twitter: @LionSec1
- Email : [email protected]
- LionSec's xerosploit has been old so this one can help those who are getting errors
8 changes: 4 additions & 4 deletions install.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
import sys
Expand Down Expand Up @@ -42,10 +42,10 @@ def main():
1) Ubuntu / Kali linux / Others
2) Parrot OS
""")
system0 = raw_input(">>> ")
system0 = input(">>> ")
if system0 == "1":
print("\033[1;34m\n[++] Installing Xerosploit ... \033[1;m")
install = os.system("apt-get update && apt-get install -y nmap hping3 build-essential python-pip ruby-dev git libpcap-dev libgmp3-dev && pip install tabulate terminaltables")
install = os.system("apt-get update && apt-get install -y nmap hping3 build-essential python3-pip ruby-dev git libpcap-dev libgmp3-dev && pip3 install tabulate terminaltables")

install1 = os.system("""cd tools/bettercap/ && gem build bettercap.* && sudo gem install xettercap-* && rm xettercap-* && cd ../../ && mkdir -p /opt/xerosploit && cp -R tools/ /opt/xerosploit/ && cp xerosploit.py /opt/xerosploit/xerosploit.py && cp banner.py /opt/xerosploit/banner.py && cp run.sh /usr/bin/xerosploit && chmod +x /usr/bin/xerosploit && tput setaf 34; echo "Xerosploit has been sucessfuly instaled. Execute 'xerosploit' in your terminal." """)
elif system0 == "2":
Expand All @@ -54,7 +54,7 @@ def main():
bet_un = os.system("apt-get remove bettercap") # Remove bettercap to avoid some problems . Installed by default with apt-get .
bet_re_ins = os.system("gem install bettercap") # Reinstall bettercap with gem.

install = os.system("apt-get update && apt-get install -y nmap hping3 ruby-dev git libpcap-dev libgmp3-dev python-tabulate python-terminaltables")
install = os.system("apt-get update && apt-get install -y nmap hping3 ruby-dev git libpcap-dev libgmp3-dev python3-tabulate python3-terminaltables")

install1 = os.system("""cd tools/bettercap/ && gem build bettercap.* && sudo gem install xettercap-* && rm xettercap-* && cd ../../ && mkdir -p /opt/xerosploit && cp -R tools/ /opt/xerosploit/ && cp xerosploit.py /opt/xerosploit/xerosploit.py && cp banner.py /opt/xerosploit/banner.py && cp run.sh /usr/bin/xerosploit && chmod +x /usr/bin/xerosploit && tput setaf 34; echo "Xerosploit has been sucessfuly instaled. Execute 'xerosploit' in your terminal." """)

Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
# #
#---------------------------------------------------------------------------#

python /opt/xerosploit/xerosploit.py
python3 /opt/xerosploit/xerosploit.py


Loading