Xerosploit

President

Professional
Messages
1,458
Reaction score
1,300
Points
113
Good day, we will not rant for a long time, straight to the point.

Description of Xerosploit
Xerosploit is a penetration testing toolkit whose goal is to perform man-in-the-middle attacks for testing purposes. It provides various modules that enable effective attacks, and also enables denial of service attacks and port scans. Powered by bestcap and nmap.

Possibilities:
  • port scanning
  • network mapping
  • DoS attack
  • HTML code injection
  • JavaScript code injection
  • intercept and replace downloads
  • sniffing (data interception)
  • DNS spoofing (spoofing)
  • background sound playback
  • image replacement
  • Driftnet (A program that listens for network traffic)
  • web page replacement and more.
Homepage: https://github.com/LionSec/xerosploit

Installing Xerosploit:
Code:
git clone https://github.com/LionSec/xerosploit
cd xerosploit && sudo python install.py
sudo xerosploit
0214245b-993e-49b5-8aa6-52e98f2415bd.jpeg


During the installation of the dependencies, the program will ask which OS it is running on, select 1.

Launching and using Xerosploit:
The program requires superuser privileges to run:
Code:
sudo xerosploit

Start by scanning:
Code:
scan

A list of local network IPs will be compiled:
10899a3a-025f-4b0d-bcbf-78f6ba2d6072.jpeg


Select and enter one of these IPs, type help to display a list of modules:
42e882b9-5d3a-47ac-b80a-b7c1f7b58402.jpeg


Select the desired module. For example, to view all requested images:
Code:
driftnet

Run the module:
Code:
run
3424046d-e436-4cd0-987e-ad86acf3fc74.jpeg


Press Ctrl + C to end the attack.

To select another module:
Code:
back

To capture credentials:
Code:
sniff
run

When launched, the program will ask: Do you want to load sslstrip? (y / n).
Those. Should I run SSLstrip? Enter y if yes and n if not.
(sslstrip is a tool that subtly intercepts HTTP traffic on the network)
81c21cb7-a22d-4ea1-b659-c087efcd0082.jpeg


After the end of the attack, the program will ask: Do you want to save logs? (y / n).
(Translated as "Do you want to save the logs?")

Xerosploit Help:
Commands:
scan: Scan the network.
iface: Manually set up a network interface.
gateway: Manually set the gateway.
start: Skip scan and set target IP address directly.
rmlog: Delete all xerosploit logs.
back: refuse to use the selected module
home: return to the "home" window
help: Show help.
exit: Close Xerosploit.

Modules:
pscan: Port Scanner
dos: DoS attack
ping: Ping request
injecthtml: Inject Html code
injectjs: Inject Javascript code
rdownload: Replace downloaded files
sniff: Capture information inside network packets
dspoof: Redirect all http to specified IP
yplay: Play background audio in target browser
replace: Replace all images in web pages with your own
driftnet: View all images requested by the target
move: Shaking web browser content
deface: Rewrite all web pages with your HTML code
 
Top