Projects STRLCPY wifi_db Commits c4b08303
🤬
  • ■ ■ ■ ■ ■ ■
    wifi_db.py
    skipped 103 lines
    104 104   if 'kismet.netxml' in file:
    105 105   files.append(os.path.join(r, file))
    106 106   
     107 + counter = 0
    107 108   for f in files:
     109 + counter += 1
     110 + print("File: " + str(counter) + " of " + str(len(files)))
    108 111   base = os.path.basename(f)
    109 112   name = os.path.splitext(os.path.splitext(base)[0])[0]
    110 113   capture_aux = dir_capture+"/"+name
    skipped 62 lines
  • ■ ■ ■ ■ ■
    wifi_db_aircrack.py
    skipped 370 lines
    371 371   wlan_ssid=pkt['wlan.mgt'].wlan_ssid
    372 372   if ('20' in pkt['wlan.mgt'].wps_ext_version2):
    373 373   wps_version = '2.0'
     374 + except Exception:
     375 + errors+=1
     376 + try:
    374 377   wps_device_name=pkt['wlan.mgt'].wps_device_name
     378 + except Exception:
     379 + errors+=1
     380 + try:
    375 381   wps_model_name=pkt['wlan.mgt'].wps_model_name
     382 + except Exception:
     383 + errors+=1
     384 + try:
    376 385   wps_model_number=pkt['wlan.mgt'].wps_model_number
     386 + except Exception:
     387 + errors+=1
     388 + try:
    377 389   wps_config_methods=pkt['wlan.mgt'].wps_config_methods
     390 + except Exception:
     391 + errors+=1
     392 + try:
    378 393   wps_config_methods_keypad=pkt['wlan.mgt'].wps_config_methods_keypad
    379  - 
     394 + except Exception:
     395 + errors+=1
    380 396   
    381  - except Exception:
    382  - pass
    383 397   
    384 398   if verbose:
    385 399   print('==============================')
    skipped 85 lines
Please wait...
Page is in error, reload to recover