added wrath package and started forming the targeted attack features

This commit is contained in:
freqyXin 2021-06-12 22:29:40 -07:00
parent ea531e6665
commit 6a95824ae2
2 changed files with 13 additions and 0 deletions

@ -45,6 +45,7 @@ var DFlag = flag.Bool("d", false, "global debug logging and pretty printing")
var AFlag = flag.Bool("a", false, "attack mode")
var TFlag = flag.Bool("t", false, "device tracking mode")
var MFlag = flag.String("m", "0", "json file with manufacturer identifying data to preload into eros")
var WAFlag = flag.String("w", "00:00:00:00:00:00", "MAC address of target")
//flag.Parse()
@ -59,3 +60,6 @@ var SonosScanTest = bluetooth.New16BitUUID(0xfe07)
var AppleScanTest = bluetooth.New16BitUUID(0x004c)
//var ServiceUUID16Out
//target to attack with wrath
var WrathTarget = bluetooth.Address{}

9
src/wrath/wrath.go Normal file

@ -0,0 +1,9 @@
package wrath
import bluetooth "git.tcp.direct/kayos/prototooth"
//used for offensive operations
func wrath(bluetooth.Address) {
}