package modules import ( "fmt" "os" "strings" "github.com/bettercap/bettercap/network" "github.com/bettercap/bettercap/session" "github.com/google/go-github/github" "github.com/evilsocket/islazy/tui" ) const eventTimeFormat = "15:04:05" func (s *EventsStream) viewLogEvent(e session.Event) { fmt.Fprintf(s.output, "[%s] [%s] [%s] %s\n", e.Time.Format(eventTimeFormat), tui.Green(e.Tag), e.Label(), e.Data.(session.LogMessage).Message) } func (s *EventsStream) viewWiFiEvent(e session.Event) { if strings.HasPrefix(e.Tag, "wifi.ap.") { ap := e.Data.(*network.AccessPoint) vend := "" if ap.Vendor != "" { vend = fmt.Sprintf(" (%s)", ap.Vendor) } rssi := "" if ap.RSSI != 0 { rssi = fmt.Sprintf(" (%d dBm)", ap.RSSI) } if e.Tag == "wifi.ap.new" { fmt.Fprintf(s.output, "[%s] [%s] wifi access point %s%s detected as %s%s.\n", e.Time.Format(eventTimeFormat), tui.Green(e.Tag), tui.Bold(ap.ESSID()), tui.Dim(tui.Yellow(rssi)), tui.Green(ap.BSSID()), tui.Dim(vend)) } else if e.Tag == "wifi.ap.lost" { fmt.Fprintf(s.output, "[%s] [%s] wifi access point %s (%s) lost.\n", e.Time.Format(eventTimeFormat), tui.Green(e.Tag), tui.Red(ap.ESSID()), ap.BSSID()) } else { fmt.Fprintf(s.output, "[%s] [%s] %s\n", e.Time.Format(eventTimeFormat), tui.Green(e.Tag), ap.String()) } } else if e.Tag == "wifi.client.probe" { probe := e.Data.(WiFiProbe) desc := "" if probe.FromAlias != "" { desc = fmt.Sprintf(" (%s)", probe.FromAlias) } else if probe.FromVendor != "" { desc = fmt.Sprintf(" (%s)", probe.FromVendor) } rssi := "" if probe.RSSI != 0 { rssi = fmt.Sprintf(" (%d dBm)", probe.RSSI) } fmt.Fprintf(s.output, "[%s] [%s] station %s%s is probing for SSID %s%s\n", e.Time.Format(eventTimeFormat), tui.Green(e.Tag), probe.FromAddr.String(), tui.Dim(desc), tui.Bold(probe.SSID), tui.Yellow(rssi)) } } func (s *EventsStream) viewendpointEvent(e session.Event) { t := e.Data.(*network.Endpoint) vend := "" name := "" if t.Vendor != "" { vend = fmt.Sprintf(" (%s)", t.Vendor) } if t.Alias != "" { name = fmt.Sprintf(" (%s)", t.Alias) } else if t.Hostname != "" { name = fmt.Sprintf(" (%s)", t.Hostname) } if e.Tag == "endpoint.new" { fmt.Fprintf(s.output, "[%s] [%s] endpoint %s%s detected as %s%s.\n", e.Time.Format(eventTimeFormat), tui.Green(e.Tag), tui.Bold(t.IpAddress), tui.Dim(name), tui.Green(t.HwAddress), tui.Dim(vend)) } else if e.Tag == "endpoint.lost" { fmt.Fprintf(s.output, "[%s] [%s] endpoint %s%s lost.\n", e.Time.Format(eventTimeFormat), tui.Green(e.Tag), tui.Red(t.IpAddress), tui.Dim(vend)) } else { fmt.Fprintf(s.output, "[%s] [%s] %s\n", e.Time.Format(eventTimeFormat), tui.Green(e.Tag), t.String()) } } func (s *EventsStream) viewModuleEvent(e session.Event) { fmt.Fprintf(s.output, "[%s] [%s] %s\n", e.Time.Format(eventTimeFormat), tui.Green(e.Tag), e.Data) } func (s *EventsStream) viewSnifferEvent(e session.Event) { if strings.HasPrefix(e.Tag, "net.sniff.http.") { s.viewHttpEvent(e) } else { fmt.Fprintf(s.output, "[%s] [%s] %s\n", e.Time.Format(eventTimeFormat), tui.Green(e.Tag), e.Data.(SnifferEvent).Message) } } func (s *EventsStream) viewSynScanEvent(e session.Event) { se := e.Data.(SynScanEvent) fmt.Fprintf(s.output, "[%s] [%s] found open port %d for %s\n", e.Time.Format(eventTimeFormat), tui.Green(e.Tag), se.Port, tui.Bold(se.Address)) } func (s *EventsStream) viewUpdateEvent(e session.Event) { update := e.Data.(*github.RepositoryRelease) fmt.Fprintf(s.output, "[%s] [%s] an update to version %s is available at %s\n", e.Time.Format(eventTimeFormat), tui.Bold(tui.Yellow(e.Tag)), tui.Bold(*update.TagName), *update.HTMLURL) } func (s *EventsStream) View(e session.Event, refresh bool) { if e.Tag == "sys.log" { s.viewLogEvent(e) } else if strings.HasPrefix(e.Tag, "endpoint.") { s.viewendpointEvent(e) } else if strings.HasPrefix(e.Tag, "wifi.") { s.viewWiFiEvent(e) } else if strings.HasPrefix(e.Tag, "ble.") { s.viewBLEEvent(e) } else if strings.HasPrefix(e.Tag, "mod.") { s.viewModuleEvent(e) } else if strings.HasPrefix(e.Tag, "net.sniff.") { s.viewSnifferEvent(e) } else if e.Tag == "syn.scan" { s.viewSynScanEvent(e) } else if e.Tag == "update.available" { s.viewUpdateEvent(e) } else { fmt.Fprintf(s.output, "[%s] [%s] %v\n", e.Time.Format(eventTimeFormat), tui.Green(e.Tag), e) } if refresh && s.output == os.Stdout { s.Session.Refresh() } }