mirror of
https://github.com/bettercap/bettercap.git
synced 2025-03-12 04:36:03 -07:00
53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
// +build !windows
|
|
|
|
package events_stream
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/bettercap/bettercap/network"
|
|
"github.com/bettercap/bettercap/session"
|
|
|
|
"github.com/evilsocket/islazy/tui"
|
|
)
|
|
|
|
func (mod *EventsStream) viewBLEEvent(output io.Writer, e session.Event) {
|
|
if e.Tag == "ble.device.new" {
|
|
dev := e.Data.(*network.BLEDevice)
|
|
name := dev.Device.Name()
|
|
if name != "" {
|
|
name = " " + tui.Bold(name)
|
|
}
|
|
vend := dev.Vendor
|
|
if vend != "" {
|
|
vend = fmt.Sprintf(" (%s)", tui.Yellow(vend))
|
|
}
|
|
|
|
fmt.Fprintf(output, "[%s] [%s] new BLE device%s detected as %s%s %s.\n",
|
|
e.Time.Format(mod.timeFormat),
|
|
tui.Green(e.Tag),
|
|
name,
|
|
dev.Device.ID(),
|
|
vend,
|
|
tui.Dim(fmt.Sprintf("%d dBm", dev.RSSI)))
|
|
} else if e.Tag == "ble.device.lost" {
|
|
dev := e.Data.(*network.BLEDevice)
|
|
name := dev.Device.Name()
|
|
if name != "" {
|
|
name = " " + tui.Bold(name)
|
|
}
|
|
vend := dev.Vendor
|
|
if vend != "" {
|
|
vend = fmt.Sprintf(" (%s)", tui.Yellow(vend))
|
|
}
|
|
|
|
fmt.Fprintf(output, "[%s] [%s] BLE device%s %s%s lost.\n",
|
|
e.Time.Format(mod.timeFormat),
|
|
tui.Green(e.Tag),
|
|
name,
|
|
dev.Device.ID(),
|
|
vend)
|
|
}
|
|
}
|