-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
9 changed files
with
80 additions
and
49 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include README.md | ||
include LICENSE | ||
include wordlists/* |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
scapy>=2.4.5 | ||
requests>=2.25.1 | ||
argparse>=1.4.0 | ||
#netfilterqueue (for linux devices only): sudo pip3 install --upgrade -U git+https://github.com/kti/python-netfilterqueue | ||
pynput>=1.7.3 | ||
colorama>=0.4.4 | ||
beautifulsoup4>=4.9.3 | ||
pyfiglet>=0.8.post1 | ||
prettytable>=2.1.0 | ||
colorama>=0.4.4 | ||
#netfilterqueue (for linux devices only): sudo pip3 install --upgrade -U git+https://github.com/kti/python-netfilterqueue | ||
kamene>=0.32 | ||
scapy>=2.4.5 | ||
psutil>=5.8.0 | ||
prettytable>=2.1.0 | ||
pynput>=1.7.3 | ||
pyfiglet>=0.8.post1 | ||
pytelegrambotapi>=4.0.1 | ||
pyfiglet | ||
requests>=2.25.1 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
from setuptools import setup, find_packages | ||
from os import path | ||
|
||
|
||
this_directory = path.abspath(path.dirname(__file__)) | ||
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
|
||
setup( | ||
name='PyHTools', | ||
version='1.0.1', | ||
author='Dhrumil Mistry', | ||
author_email='[email protected]', | ||
license='MIT License', | ||
description='Python Hacking Tools (PyHTools) (pht) is a collection of python written hacking tools consisting of network scanner, arp spoofer and detector, dns spoofer, code injector, packet sniffer, network jammer, email sender, downloader, wireless password harvester credential harvester, keylogger, download&execute, and reverse_backdoor along with website login bruteforce, scraper, web spider etc. PHT also includes malwares which are undetectable by the antiviruses.', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
install_requires=[ | ||
'beautifulsoup4', | ||
'colorama', | ||
# 'netfilterqueue', | ||
'kamene', | ||
'scapy', | ||
'psutil', | ||
'prettytable', | ||
'pynput', | ||
'pyfiglet', | ||
'pytelegrambotapi', | ||
'requests', | ||
], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9' | ||
'Programming Language :: Python :: 3.10', | ||
], | ||
) |
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.