mirror of
https://github.com/bettercap/bettercap
synced 2025-07-07 21:42:06 -07:00
new: pushed new graph experimental module
This commit is contained in:
parent
ca2e257fbb
commit
826f13e47a
11 changed files with 1480 additions and 0 deletions
|
@ -11,6 +11,7 @@ import (
|
|||
"github.com/bettercap/bettercap/modules/dns_spoof"
|
||||
"github.com/bettercap/bettercap/modules/events_stream"
|
||||
"github.com/bettercap/bettercap/modules/gps"
|
||||
"github.com/bettercap/bettercap/modules/graph"
|
||||
"github.com/bettercap/bettercap/modules/hid"
|
||||
"github.com/bettercap/bettercap/modules/http_proxy"
|
||||
"github.com/bettercap/bettercap/modules/http_server"
|
||||
|
@ -45,6 +46,7 @@ func LoadModules(sess *session.Session) {
|
|||
sess.Register(dns_spoof.NewDNSSpoofer(sess))
|
||||
sess.Register(events_stream.NewEventsStream(sess))
|
||||
sess.Register(gps.NewGPS(sess))
|
||||
sess.Register(graph.NewModule(sess))
|
||||
sess.Register(http_proxy.NewHttpProxy(sess))
|
||||
sess.Register(http_server.NewHttpServer(sess))
|
||||
sess.Register(https_proxy.NewHttpsProxy(sess))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue