Browse Source

Fix off-by-one error

Alex Stanev 3 years ago
parent
commit
ff52954cad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      poc/keygen.py

+ 1 - 1
poc/keygen.py

@@ -61,7 +61,7 @@ for s in ssids:
         serialBytes = args.ssid
         for r in s.split("[A-F0-9]{4}"):
             serialBytes = serialBytes.replace(r, "")
-        for i in range(0xffff):
+        for i in range(0xffff + 1):
             candidate = genpwd_longpasswd(oui, "{:04x}{}".format(i, serialBytes))
             print(f"{candidate:010}")
         break