Skip to content

Commit 80ffa3d

Browse files
feat(args.py): add --random-mac-vendor to not change the vendor bytes and -mac/--random-mac for full random mac
1 parent 5b3e84f commit 80ffa3d

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

wifite/args.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,12 @@ def _add_global_args(self, glob):
297297
'--random-mac',
298298
action='store_true',
299299
dest='random_mac',
300-
help=Color.s('Randomize wireless card MAC address (default: {G}off{W})'))
300+
help=Color.s('Randomize wireless card MAC address completely (better privacy) (default: {G}off{W})'))
301+
302+
glob.add_argument('--random-mac-vendor',
303+
action='store_true',
304+
dest='random_mac_vendor',
305+
help=Color.s('Randomize wireless card MAC address but keep vendor bytes (better compatibility) (default: {G}off{W})'))
301306

302307
glob.add_argument('-p',
303308
action='store',

0 commit comments

Comments
 (0)