This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2.7 | |
# 802.11 probe requests processor | |
# Copyright (C) 2017 Ralon cybersecurity | |
# Loran Kloeze - [email protected] - @lorankloeze | |
# MIT license: do with it what you want but use it for good | |
# | |
# Tested on OS X El Capitan 10.11.6 - MacBook Air | |
# | |
# This script grabs probe requests from the air and outputs them on the screen | |
# and/or saves them to a sqlite3-db. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2.7 | |
# 802.11 probe requests processor | |
# Copyright (C) 2017 Ralon cybersecurity | |
# Loran Kloeze - [email protected] - @lorankloeze | |
# MIT license: do with it what you want but use it for good | |
# | |
# This script grabs probe requests from the air and puts them in a sqlite3-db. | |
# It cleans up the database to prevent old entries from filling up too much disk | |
# space. Check the regex before starting this script because it assumes 3 | |
# antennas on the wireless device. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3.5 | |
import subprocess | |
from prettytable import PrettyTable | |
import json | |
import time | |
print("Gegevens ophalen...") | |
party_ids = ['x'] * 2000 | |
party_ids[1078] = 'VVD' | |
party_ids[1079] = 'PvdA' |
NewerOlder