mirror of
https://github.com/bettercap/bettercap
synced 2025-07-08 05:51:37 -07:00
new: implemented any.proxy module to redirect traffic to custom proxy tools
This commit is contained in:
parent
b361856c0b
commit
cc8d1370f9
2 changed files with 142 additions and 0 deletions
1
main.go
1
main.go
|
@ -42,6 +42,7 @@ func main() {
|
||||||
sess.Register(modules.NewDNSSpoofer(sess))
|
sess.Register(modules.NewDNSSpoofer(sess))
|
||||||
sess.Register(modules.NewSniffer(sess))
|
sess.Register(modules.NewSniffer(sess))
|
||||||
sess.Register(modules.NewPacketProxy(sess))
|
sess.Register(modules.NewPacketProxy(sess))
|
||||||
|
sess.Register(modules.NewAnyProxy(sess))
|
||||||
sess.Register(modules.NewTcpProxy(sess))
|
sess.Register(modules.NewTcpProxy(sess))
|
||||||
sess.Register(modules.NewHttpProxy(sess))
|
sess.Register(modules.NewHttpProxy(sess))
|
||||||
sess.Register(modules.NewHttpsProxy(sess))
|
sess.Register(modules.NewHttpsProxy(sess))
|
||||||
|
|
141
modules/any_proxy.go
Normal file
141
modules/any_proxy.go
Normal file
|
@ -0,0 +1,141 @@
|
||||||
|
package modules
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/bettercap/bettercap/firewall"
|
||||||
|
"github.com/bettercap/bettercap/log"
|
||||||
|
"github.com/bettercap/bettercap/session"
|
||||||
|
)
|
||||||
|
|
||||||
|
type AnyProxy struct {
|
||||||
|
session.SessionModule
|
||||||
|
Redirection *firewall.Redirection
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewAnyProxy(s *session.Session) *AnyProxy {
|
||||||
|
p := &AnyProxy{
|
||||||
|
SessionModule: session.NewSessionModule("any.proxy", s),
|
||||||
|
}
|
||||||
|
|
||||||
|
p.AddParam(session.NewStringParameter("any.proxy.iface",
|
||||||
|
session.ParamIfaceName,
|
||||||
|
"",
|
||||||
|
"Interface to redirect packets from."))
|
||||||
|
|
||||||
|
p.AddParam(session.NewStringParameter("any.proxy.protocol",
|
||||||
|
"TCP",
|
||||||
|
"(TCP|UDP)",
|
||||||
|
"Proxy protocol."))
|
||||||
|
|
||||||
|
p.AddParam(session.NewIntParameter("any.proxy.src_port",
|
||||||
|
"80",
|
||||||
|
"Remote port to redirect when the module is activated."))
|
||||||
|
|
||||||
|
p.AddParam(session.NewStringParameter("any.proxy.src_address",
|
||||||
|
"",
|
||||||
|
"",
|
||||||
|
"Leave empty to intercept any source address."))
|
||||||
|
|
||||||
|
p.AddParam(session.NewStringParameter("any.proxy.dst_address",
|
||||||
|
session.ParamIfaceAddress,
|
||||||
|
session.IPv4Validator,
|
||||||
|
"Address where the proxy is listening."))
|
||||||
|
|
||||||
|
p.AddParam(session.NewIntParameter("any.proxy.dst_port",
|
||||||
|
"8080",
|
||||||
|
"Port where the proxy is listening."))
|
||||||
|
|
||||||
|
p.AddHandler(session.NewModuleHandler("any.proxy on", "",
|
||||||
|
"Start the custom proxy redirection.",
|
||||||
|
func(args []string) error {
|
||||||
|
return p.Start()
|
||||||
|
}))
|
||||||
|
|
||||||
|
p.AddHandler(session.NewModuleHandler("any.proxy off", "",
|
||||||
|
"Stop the custom proxy redirection.",
|
||||||
|
func(args []string) error {
|
||||||
|
return p.Stop()
|
||||||
|
}))
|
||||||
|
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *AnyProxy) Name() string {
|
||||||
|
return "any.proxy"
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *AnyProxy) Description() string {
|
||||||
|
return "A firewall redirection to any custom proxy."
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *AnyProxy) Author() string {
|
||||||
|
return "Simone Margaritelli <evilsocket@protonmail.com>"
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *AnyProxy) Configure() error {
|
||||||
|
var err error
|
||||||
|
var srcPort int
|
||||||
|
var dstPort int
|
||||||
|
var iface string
|
||||||
|
var protocol string
|
||||||
|
var srcAddress string
|
||||||
|
var dstAddress string
|
||||||
|
|
||||||
|
if p.Running() {
|
||||||
|
return session.ErrAlreadyStarted
|
||||||
|
} else if err, iface = p.StringParam("any.proxy.iface"); err != nil {
|
||||||
|
return err
|
||||||
|
} else if err, protocol = p.StringParam("any.proxy.protocol"); err != nil {
|
||||||
|
return err
|
||||||
|
} else if err, srcPort = p.IntParam("any.proxy.src_port"); err != nil {
|
||||||
|
return err
|
||||||
|
} else if err, dstPort = p.IntParam("any.proxy.dst_port"); err != nil {
|
||||||
|
return err
|
||||||
|
} else if err, srcAddress = p.StringParam("any.proxy.src_address"); err != nil {
|
||||||
|
return err
|
||||||
|
} else if err, dstAddress = p.StringParam("any.proxy.dst_address"); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if !p.Session.Firewall.IsForwardingEnabled() {
|
||||||
|
log.Info("Enabling forwarding.")
|
||||||
|
p.Session.Firewall.EnableForwarding(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
p.Redirection = firewall.NewRedirection(iface,
|
||||||
|
protocol,
|
||||||
|
srcPort,
|
||||||
|
dstAddress,
|
||||||
|
dstPort)
|
||||||
|
|
||||||
|
if srcAddress != "" {
|
||||||
|
p.Redirection.SrcAddress = srcAddress
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := p.Session.Firewall.EnableRedirection(p.Redirection, true); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Info("Applied redirection %s", p.Redirection.String())
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *AnyProxy) Start() error {
|
||||||
|
if err := p.Configure(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return p.SetRunning(true, func() {})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *AnyProxy) Stop() error {
|
||||||
|
if p.Redirection != nil {
|
||||||
|
log.Info("Disabling redirection %s", p.Redirection.String())
|
||||||
|
if err := p.Session.Firewall.EnableRedirection(p.Redirection, false); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
p.Redirection = nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return p.SetRunning(false, func() {})
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue