mirror of
https://github.com/bettercap/bettercap.git
synced 2024-11-08 06:30:13 -08:00
36 lines
819 B
Go
36 lines
819 B
Go
package net_sniff
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/bettercap/bettercap/v2/session"
|
|
)
|
|
|
|
type SniffData map[string]interface{}
|
|
|
|
type SnifferEvent struct {
|
|
PacketTime time.Time `json:"time"`
|
|
Protocol string `json:"protocol"`
|
|
Source string `json:"from"`
|
|
Destination string `json:"to"`
|
|
Message string `json:"message"`
|
|
Data interface{} `json:"data"`
|
|
}
|
|
|
|
func NewSnifferEvent(t time.Time, proto string, src string, dst string, data interface{}, format string, args ...interface{}) SnifferEvent {
|
|
return SnifferEvent{
|
|
PacketTime: t,
|
|
Protocol: proto,
|
|
Source: src,
|
|
Destination: dst,
|
|
Message: fmt.Sprintf(format, args...),
|
|
Data: data,
|
|
}
|
|
}
|
|
|
|
func (e SnifferEvent) Push() {
|
|
session.I.Events.Add("net.sniff."+e.Protocol, e)
|
|
session.I.Refresh()
|
|
}
|