Skip to content
Permalink
Browse files
Update filter.py
  • Loading branch information
shawnhos committed Mar 29, 2019
1 parent 379fe25 commit e946fcbfd3e6170e8c965829f6a76416d41ff68e
Showing 1 changed file with 4 additions and 4 deletions.
@@ -2,10 +2,10 @@ import csv
import os

# Runs a bash script that scans the network's BSSID, PWR, ESSID and saves it to a csv file
os.system("chmod +x convert_isolated.sh")
os.system("chmod +x scanner_isolated.sh")
os.system("./scanner_isolated.sh")
os.system("./convert_isolated.sh")
os.system("chmod +x convert.sh")
os.system("chmod +x scanner.sh")
os.system("./scanner.sh")
os.system("./convert.sh")

# Opens the saved csv and parses the info and saved as lists
with open('isolated.csv') as file1:

0 comments on commit e946fcb

Please sign in to comment.