diff --git a/src/vars/projVars.go b/src/vars/projVars.go index 862fe22..1a105ff 100644 --- a/src/vars/projVars.go +++ b/src/vars/projVars.go @@ -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{} diff --git a/src/wrath/wrath.go b/src/wrath/wrath.go new file mode 100644 index 0000000..5858290 --- /dev/null +++ b/src/wrath/wrath.go @@ -0,0 +1,9 @@ +package wrath + +import bluetooth "git.tcp.direct/kayos/prototooth" + +//used for offensive operations + +func wrath(bluetooth.Address) { + +}