mirror of
https://github.com/bettercap/bettercap
synced 2025-07-07 13:32:07 -07:00
421 lines
11 KiB
Go
421 lines
11 KiB
Go
package modules
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"net"
|
|
"os"
|
|
"sort"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/evilsocket/bettercap-ng/core"
|
|
"github.com/evilsocket/bettercap-ng/log"
|
|
"github.com/evilsocket/bettercap-ng/network"
|
|
"github.com/evilsocket/bettercap-ng/packets"
|
|
"github.com/evilsocket/bettercap-ng/session"
|
|
|
|
"github.com/google/gopacket"
|
|
"github.com/google/gopacket/layers"
|
|
"github.com/google/gopacket/pcap"
|
|
|
|
"github.com/dustin/go-humanize"
|
|
"github.com/olekukonko/tablewriter"
|
|
)
|
|
|
|
type WiFiRecon struct {
|
|
session.SessionModule
|
|
|
|
wifi *WiFi
|
|
stats *WiFiStats
|
|
handle *pcap.Handle
|
|
channel int
|
|
client net.HardwareAddr
|
|
accessPoint net.HardwareAddr
|
|
}
|
|
|
|
func NewWiFiRecon(s *session.Session) *WiFiRecon {
|
|
w := &WiFiRecon{
|
|
SessionModule: session.NewSessionModule("wifi.recon", s),
|
|
stats: NewWiFiStats(),
|
|
channel: 0,
|
|
client: make([]byte, 0),
|
|
accessPoint: make([]byte, 0),
|
|
}
|
|
|
|
w.AddHandler(session.NewModuleHandler("wifi.recon on", "",
|
|
"Start 802.11 wireless base stations discovery.",
|
|
func(args []string) error {
|
|
return w.Start()
|
|
}))
|
|
|
|
w.AddHandler(session.NewModuleHandler("wifi.recon off", "",
|
|
"Stop 802.11 wireless base stations discovery.",
|
|
func(args []string) error {
|
|
return w.Stop()
|
|
}))
|
|
|
|
w.AddHandler(session.NewModuleHandler("wifi.deauth", "",
|
|
"Start a 802.11 deauth attack (use ticker to iterate the attack).",
|
|
func(args []string) error {
|
|
return w.startDeauth()
|
|
}))
|
|
|
|
w.AddHandler(session.NewModuleHandler("wifi.recon set client MAC", "wifi.recon set client ((?:[0-9A-Fa-f]{2}[:-]){5}(?:[0-9A-Fa-f]{2}))",
|
|
"Set client to deauth (single target).",
|
|
func(args []string) error {
|
|
var err error
|
|
w.client, err = net.ParseMAC(args[0])
|
|
return err
|
|
}))
|
|
|
|
w.AddHandler(session.NewModuleHandler("wifi.recon clear client", "",
|
|
"Remove client to deauth.",
|
|
func(args []string) error {
|
|
w.client = make([]byte, 0)
|
|
return nil
|
|
}))
|
|
|
|
w.AddHandler(session.NewModuleHandler("wifi.recon set bs MAC", "wifi.recon set bs ((?:[0-9A-Fa-f]{2}[:-]){5}(?:[0-9A-Fa-f]{2}))",
|
|
"Set 802.11 base station address to filter for.",
|
|
func(args []string) error {
|
|
var err error
|
|
if w.wifi != nil {
|
|
w.wifi.Clear()
|
|
}
|
|
w.accessPoint, err = net.ParseMAC(args[0])
|
|
return err
|
|
}))
|
|
|
|
w.AddHandler(session.NewModuleHandler("wifi.recon clear bs", "",
|
|
"Remove the 802.11 base station filter.",
|
|
func(args []string) error {
|
|
if w.wifi != nil {
|
|
w.wifi.Clear()
|
|
}
|
|
w.accessPoint = make([]byte, 0)
|
|
return nil
|
|
}))
|
|
|
|
w.AddHandler(session.NewModuleHandler("wifi.show", "",
|
|
"Show current wireless stations list (default sorting by essid).",
|
|
func(args []string) error {
|
|
return w.Show("channel")
|
|
}))
|
|
|
|
w.AddParam(session.NewIntParameter("wifi.recon.channel",
|
|
"",
|
|
"WiFi channel or empty for channel hopping."))
|
|
|
|
return w
|
|
}
|
|
|
|
func (w WiFiRecon) Name() string {
|
|
return "wifi.recon"
|
|
}
|
|
|
|
func (w WiFiRecon) Description() string {
|
|
return "A module to monitor and perform wireless attacks on 802.11."
|
|
}
|
|
|
|
func (w WiFiRecon) Author() string {
|
|
return "Gianluca Braga <matrix86@protonmail.com>"
|
|
}
|
|
|
|
func (w *WiFiRecon) getRow(station *WiFiStation) []string {
|
|
sinceStarted := time.Since(w.Session.StartedAt)
|
|
sinceFirstSeen := time.Since(station.FirstSeen)
|
|
|
|
bssid := station.HwAddress
|
|
if sinceStarted > (justJoinedTimeInterval*2) && sinceFirstSeen <= justJoinedTimeInterval {
|
|
// if endpoint was first seen in the last 10 seconds
|
|
bssid = core.Bold(bssid)
|
|
}
|
|
|
|
seen := station.LastSeen.Format("15:04:05")
|
|
sinceLastSeen := time.Since(station.LastSeen)
|
|
if sinceStarted > aliveTimeInterval && sinceLastSeen <= aliveTimeInterval {
|
|
// if endpoint seen in the last 10 seconds
|
|
seen = core.Bold(seen)
|
|
} else if sinceLastSeen > presentTimeInterval {
|
|
// if endpoint not seen in the last 60 seconds
|
|
seen = core.Dim(seen)
|
|
}
|
|
|
|
sent := ""
|
|
bytes := w.stats.SentFrom(station.HW)
|
|
if bytes > 0 {
|
|
sent = humanize.Bytes(bytes)
|
|
}
|
|
|
|
recvd := ""
|
|
bytes = w.stats.SentTo(station.HW)
|
|
if bytes > 0 {
|
|
recvd = humanize.Bytes(bytes)
|
|
}
|
|
|
|
row := []string{
|
|
bssid,
|
|
station.ESSID(),
|
|
station.Vendor,
|
|
strconv.Itoa(station.Channel),
|
|
sent,
|
|
recvd,
|
|
seen,
|
|
}
|
|
if w.isApSelected() {
|
|
row = []string{
|
|
bssid,
|
|
station.Vendor,
|
|
strconv.Itoa(station.Channel),
|
|
sent,
|
|
recvd,
|
|
seen,
|
|
}
|
|
}
|
|
|
|
return row
|
|
}
|
|
|
|
func mhz2chan(freq int) int {
|
|
if freq <= 2484 {
|
|
return ((freq - 2412) / 5) + 1
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (w *WiFiRecon) showTable(header []string, rows [][]string) {
|
|
fmt.Println()
|
|
table := tablewriter.NewWriter(os.Stdout)
|
|
table.SetHeader(header)
|
|
table.SetColWidth(80)
|
|
table.AppendBulk(rows)
|
|
table.Render()
|
|
}
|
|
|
|
func (w *WiFiRecon) isApSelected() bool {
|
|
return len(w.accessPoint) > 0
|
|
}
|
|
|
|
func (w *WiFiRecon) isClientSelected() bool {
|
|
return len(w.client) > 0
|
|
}
|
|
|
|
func (w *WiFiRecon) Show(by string) error {
|
|
if w.wifi == nil {
|
|
return errors.New("WiFi is not yet initialized.")
|
|
}
|
|
|
|
stations := w.wifi.List()
|
|
if by == "seen" {
|
|
sort.Sort(BywifiSeenSorter(stations))
|
|
} else if by == "essid" {
|
|
sort.Sort(ByEssidSorter(stations))
|
|
} else {
|
|
sort.Sort(ByChannelSorter(stations))
|
|
}
|
|
|
|
rows := make([][]string, 0)
|
|
for _, s := range stations {
|
|
rows = append(rows, w.getRow(s))
|
|
}
|
|
|
|
columns := []string{"BSSID", "SSID", "Vendor", "Channel", "Sent", "Recvd", "Last Seen"}
|
|
if w.isApSelected() {
|
|
// these are clients
|
|
columns = []string{"MAC", "Vendor", "Channel", "Sent", "Received", "Last Seen"}
|
|
fmt.Printf("\n%s clients:\n", w.accessPoint.String())
|
|
}
|
|
|
|
w.showTable(columns, rows)
|
|
|
|
w.Session.Refresh()
|
|
|
|
return nil
|
|
}
|
|
|
|
func (w *WiFiRecon) Configure() error {
|
|
ihandle, err := pcap.NewInactiveHandle(w.Session.Interface.Name())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer ihandle.CleanUp()
|
|
|
|
if err = ihandle.SetRFMon(true); err != nil {
|
|
return fmt.Errorf("Interface not in monitor mode? %s", err)
|
|
} else if err = ihandle.SetSnapLen(65536); err != nil {
|
|
return err
|
|
} else if err = ihandle.SetTimeout(pcap.BlockForever); err != nil {
|
|
return err
|
|
} else if w.handle, err = ihandle.Activate(); err != nil {
|
|
return err
|
|
} else if err, w.channel = w.IntParam("wifi.recon.channel"); err == nil {
|
|
if err = network.SetInterfaceChannel(w.Session.Interface.Name(), w.channel); err != nil {
|
|
return err
|
|
}
|
|
log.Info("WiFi recon active on channel %d.", w.channel)
|
|
} else {
|
|
w.channel = 0
|
|
// we need to start somewhere, this is just to check if
|
|
// this OS support switching channel programmatically.
|
|
if err = network.SetInterfaceChannel(w.Session.Interface.Name(), 1); err != nil {
|
|
return err
|
|
}
|
|
log.Info("WiFi recon active with channel hopping.")
|
|
|
|
}
|
|
|
|
w.wifi = NewWiFi(w.Session, w.Session.Interface)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (w *WiFiRecon) sendDeauthPacket(ap net.HardwareAddr, client net.HardwareAddr) {
|
|
for seq := uint16(0); seq < 64; seq++ {
|
|
if err, pkt := packets.NewDot11Deauth(ap, client, ap, seq); err != nil {
|
|
log.Error("Could not create deauth packet: %s", err)
|
|
continue
|
|
} else if err := w.handle.WritePacketData(pkt); err != nil {
|
|
log.Error("Could not send deauth packet: %s", err)
|
|
continue
|
|
} else {
|
|
time.Sleep(2 * time.Millisecond)
|
|
}
|
|
|
|
if err, pkt := packets.NewDot11Deauth(client, ap, ap, seq); err != nil {
|
|
log.Error("Could not create deauth packet: %s", err)
|
|
continue
|
|
} else if err := w.handle.WritePacketData(pkt); err != nil {
|
|
log.Error("Could not send deauth packet: %s", err)
|
|
continue
|
|
} else {
|
|
time.Sleep(2 * time.Millisecond)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (w *WiFiRecon) startDeauth() error {
|
|
// at least we need to know what ap we're talking about
|
|
if w.isApSelected() == false {
|
|
return errors.New("No access point selected, use 'wifi.recon set bs BSSID' to select one.")
|
|
}
|
|
// if not already running, temporarily enable the pcap handle
|
|
// for packet injection
|
|
if w.Running() == false {
|
|
if err := w.Configure(); err != nil {
|
|
return err
|
|
}
|
|
defer w.handle.Close()
|
|
}
|
|
|
|
// deauth a specific client
|
|
if w.isClientSelected() {
|
|
w.sendDeauthPacket(w.accessPoint, w.client)
|
|
log.Info("Deauth packets sent for client station %s.", w.client.String())
|
|
} else {
|
|
// deauth every authenticated client
|
|
for _, station := range w.wifi.Stations {
|
|
w.sendDeauthPacket(w.accessPoint, station.HW)
|
|
}
|
|
|
|
n := len(w.wifi.Stations)
|
|
if n == 0 {
|
|
log.Warning("No associated clients detected yet, deauth packets not sent.")
|
|
} else if n == 1 {
|
|
log.Info("Deauth packets sent for 1 client station.")
|
|
} else {
|
|
log.Info("Deauth packets sent for %d client stations.", n)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (w *WiFiRecon) discoverAccessPoints(radiotap *layers.RadioTap, dot11 *layers.Dot11, packet gopacket.Packet) {
|
|
// search for Dot11InformationElementIDSSID
|
|
if ok, ssid := packets.Dot11ParseIDSSID(packet); ok == true {
|
|
bssid := dot11.Address3.String()
|
|
channel := mhz2chan(int(radiotap.ChannelFrequency))
|
|
w.wifi.AddIfNew(ssid, bssid, true, channel)
|
|
}
|
|
}
|
|
|
|
func (w *WiFiRecon) discoverClients(radiotap *layers.RadioTap, dot11 *layers.Dot11, ap net.HardwareAddr, packet gopacket.Packet) {
|
|
// packet going to this specific BSSID?
|
|
if packets.Dot11IsDataFor(dot11, ap) == true {
|
|
src := dot11.Address2
|
|
channel := mhz2chan(int(radiotap.ChannelFrequency))
|
|
w.wifi.AddIfNew("", src.String(), false, channel)
|
|
}
|
|
}
|
|
|
|
func (w *WiFiRecon) updateStats(dot11 *layers.Dot11, packet gopacket.Packet) {
|
|
// only collect stats from data frames
|
|
if dot11.Type.MainType() != layers.Dot11TypeData {
|
|
return
|
|
}
|
|
|
|
bytes := uint64(len(packet.Data()))
|
|
|
|
dst := dot11.Address1
|
|
src := dot11.Address2
|
|
|
|
w.stats.CollectReceived(dst, bytes)
|
|
w.stats.CollectSent(src, bytes)
|
|
}
|
|
|
|
func (w *WiFiRecon) Start() error {
|
|
if w.Running() == true {
|
|
return session.ErrAlreadyStarted
|
|
} else if err := w.Configure(); err != nil {
|
|
return err
|
|
}
|
|
|
|
w.SetRunning(true, func() {
|
|
// start channel hopper if needed
|
|
if w.channel == 0 {
|
|
go func() {
|
|
log.Info("Channel hopper started.")
|
|
for w.Running() == true {
|
|
for channel := 1; channel < 15; channel++ {
|
|
if err := network.SetInterfaceChannel(w.Session.Interface.Name(), channel); err != nil {
|
|
log.Warning("Error while hopping to channel %d: %s", channel, err)
|
|
}
|
|
// this is the default for airodump-ng, good for them, good for us.
|
|
time.Sleep(250 * time.Millisecond)
|
|
if w.Running() == false {
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}()
|
|
}
|
|
|
|
defer w.handle.Close()
|
|
src := gopacket.NewPacketSource(w.handle, w.handle.LinkType())
|
|
for packet := range src.Packets() {
|
|
if w.Running() == false {
|
|
break
|
|
}
|
|
|
|
// perform initial dot11 parsing and layers validation
|
|
if ok, radiotap, dot11 := packets.Dot11Parse(packet); ok == true {
|
|
// keep collecting traffic statistics
|
|
w.updateStats(dot11, packet)
|
|
// no access point bssid selected, keep scanning for other aps
|
|
if w.isApSelected() == false {
|
|
w.discoverAccessPoints(radiotap, dot11, packet)
|
|
} else {
|
|
// discover stations connected to the selected access point bssid
|
|
w.discoverClients(radiotap, dot11, w.accessPoint, packet)
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
return nil
|
|
}
|
|
|
|
func (w *WiFiRecon) Stop() error {
|
|
return w.SetRunning(false, nil)
|
|
}
|