File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = 'wifi_deauth' ,
5
- version = '1.4 ' ,
5
+ version = '1.41 ' ,
6
6
description = 'WiFi deauthentication tool built with Python using the Scapy library' ,
7
7
long_description = open ('README.md' ).read (),
8
8
long_description_content_type = 'text/markdown' ,
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
3
+ import sys
3
4
import signal
4
5
import logging
5
6
import argparse
@@ -389,8 +390,8 @@ def main():
389
390
printf (DELIM )
390
391
restore_print ()
391
392
392
- if "linux" not in platform :
393
- raise Exception (f"Unsupported operating system { platform } , only linux is supported..." )
393
+ if "linux" not in sys . platform :
394
+ raise Exception (f"Unsupported operating system { sys . platform } , only linux is supported..." )
394
395
395
396
396
397
parser = argparse .ArgumentParser (description = 'A simple program to perform a deauth attack' )
You can’t perform that action at this time.
0 commit comments