-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (59 loc) · 1.8 KB
/
setup.py
File metadata and controls
62 lines (59 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from distutils.core import setup
from wifite.config import Configuration
setup(
name='wifite-advanced',
version='2.6.0-advanced',
author='derv82',
author_email='derv82@gmail.com',
url='https://github.com/derv82/wifite2',
packages=[
'wifite',
'wifite/attack',
'wifite/model',
'wifite/tools',
'wifite/util',
'wifite/advanced',
'wifite/advanced/wps',
'wifite/advanced/crack',
'wifite/advanced/capture',
],
data_files=[
('share/dict', ['wordlist-top4800-probable.txt']),
('share/wps', ['wps_pin_database.txt', 'common_pins.txt'])
],
install_requires=[
'paramiko>=2.7.0',
'scapy>=2.4.4',
'pycryptodome>=3.9.8',
'requests>=2.25.0',
'colored>=1.4.2',
'pywifi>=0.1.1',
'six>=1.15.0',
],
entry_points={
'console_scripts': [
'wifite = wifite.wifite:entry_point'
]
},
license='GNU GPLv2',
scripts=['bin/wifite'],
description='Advanced Wireless Network Auditor for Linux - WPS PIN & WPA Crack',
long_description='''Advanced Wireless Network Auditor for Linux.
Enhanced Features:
- WPS PIN attacks with Pixie Dust
- Fast handshake capture (multi-threaded)
- Optimized password cracking
- Timeout prevention
- GPU acceleration support
- Concurrent operations
- Advanced logging
Cracks WEP, WPA, WPA2, WPA3, and WPS encrypted networks.
Depends on Aircrack-ng Suite, Tshark, and external tools.''',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
)