mirror of
https://github.com/Cronocide/wifipumpkin3.git
synced 2025-01-22 11:18:55 +00:00
9bcac0b76a
added: binary exec mode plugin options, moved: captiveflask and pumpkinproxy to console script on setup.py installation
86 lines
2.5 KiB
Python
86 lines
2.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
from setuptools import setup, find_packages
|
|
import os
|
|
import re
|
|
from distutils.dir_util import copy_tree
|
|
import sys
|
|
|
|
# check version the python install
|
|
if not (sys.version_info.major == 3 and sys.version_info.minor >= 7):
|
|
print("[!] Wifipumpkin3 requires Python 3.7 or higher!")
|
|
print(
|
|
"[*] You are using Python {}.{}.".format(
|
|
sys.version_info.major, sys.version_info.minor
|
|
)
|
|
)
|
|
sys.exit(1)
|
|
|
|
|
|
def version(version_file):
|
|
with open(version_file, "r") as f:
|
|
version_file_content = f.read()
|
|
|
|
version_match = re.search(
|
|
r"__version__\s*=\s*[\"\']([^\"\']+)", version_file_content
|
|
)
|
|
if version_match:
|
|
return version_match.groups()[0]
|
|
|
|
return None
|
|
|
|
|
|
with open("requirements.txt") as fp:
|
|
required = [line.strip() for line in fp if line.strip() != ""]
|
|
|
|
|
|
folders = ["config", "logs", "helps", "scripts", "exceptions"]
|
|
|
|
config_dir = "/usr/share/wifipumpkin3"
|
|
|
|
|
|
def create_user_dir_config():
|
|
user_config_dir = config_dir
|
|
if not os.path.isdir(user_config_dir):
|
|
os.makedirs(user_config_dir, exist_ok=True)
|
|
# force copy all files `config` to user_config_dir
|
|
for folder in folders:
|
|
copy_tree(folder, user_config_dir + "/{}".format(folder))
|
|
|
|
|
|
# create dir config
|
|
create_user_dir_config()
|
|
|
|
VERSION_FILE = "wifipumpkin3/_version.py"
|
|
wifipumpkin3_version = version(VERSION_FILE)
|
|
|
|
setup(
|
|
name="wifipumpkin3",
|
|
version=wifipumpkin3_version,
|
|
description="Powerful framework for rogue access point attack.",
|
|
author="Marcos Bomfim (mh4x0f) - P0cL4bs Team",
|
|
author_email="mh4root@gmail.com",
|
|
url="https://github.com/P0cL4bs/wifipumpkin3",
|
|
license="apache 2.0",
|
|
long_description=open("README.md").read(),
|
|
install_requires=required,
|
|
include_package_data=True,
|
|
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
|
|
python_requires=">=3.7",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"Development Status :: 5 - Production/Stable",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Natural Language :: English",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Environment :: Console",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"wifipumpkin3=wifipumpkin3.__main__:main",
|
|
"wp3=wifipumpkin3.__main__:main",
|
|
"captiveflask=wifipumpkin3.plugins.bin.captiveflask:main",
|
|
"sslstrip3=wifipumpkin3.plugins.bin.sslstrip3:main",
|
|
],
|
|
},
|
|
)
|