Skip to content

Commit

Permalink
add extras
Browse files Browse the repository at this point in the history
add disclaimer

update README
  • Loading branch information
dmdhrumilmistry committed Mar 7, 2023
1 parent ea289ce commit b068b26
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 8 deletions.
9 changes: 9 additions & 0 deletions DISCLAIMER.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Disclaimer

The PyHTools project is provided for legitimate and ethical purposes only. Any misuse or malicious use of the project is strictly prohibited and may result in legal action. The creators and contributors of this project are not responsible for any illegal activities or damages that may arise from the misuse of the project.

Users are advised to use the project for ethical and legitimate purposes only, and to refrain from using it for any malicious activities, including but not limited to hacking, phishing, and unauthorized access to systems or data.

The creators and contributors of this project disclaim any liability for any damages or losses that may arise from the misuse of the project. Users are solely responsible for their use of the project and should exercise caution and diligence when using it.

By using the project, users agree to abide by all applicable laws and regulations, and to use the project in a manner that is consistent with ethical and legitimate practices. Any unauthorized or malicious use of the project may result in legal action and other consequences.
39 changes: 31 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,20 @@

- 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.

- The tools provided are for educational purposes only. The developers are no way responsible for misuse of information and tools provided. All the information and tools are meant to help users to learn concepts. Use tools wisely!

- These tools are written in python3, refer installation to install/download tools and its dependencies.

- PyHTools comes with UI, but you can also use command line to use tools individually.

**`NOTE` : The UI hasn't been updated yet with new tools, Refer examples for more information**


## Disclaimer

The disclaimer advises users to use the open source project for ethical and legitimate purposes only and refrain from using it for any malicious activities. The creators and contributors of the project are not responsible for any illegal activities or damages that may arise from the misuse of the project. Users are solely responsible for their use of the project and should exercise caution and diligence when using it. Any unauthorized or malicious use of the project may result in legal action and other consequences.

[Read More](./DISCLAIMER.md)


## Join Our Discord Community

[![Join our Discord server!](https://invidget.switchblade.xyz/DJrnAg4nv2)](http://discord.gg/DJrnAg4nv2)
Expand All @@ -35,7 +41,14 @@
- Install Release from PyPi

```bash
pip install pyhtools
# without options
python3 -m pip install pyhtools
# for windows
python3 -m pip install pyhtools[windows]
# for linux
python3 -m pip install pyhtools[linux]
```

### Manual Method
Expand All @@ -48,6 +61,8 @@
sudo apt install git python3 -y
```

- Install [Poetry](https://python-poetry.org/docs/master#installing-with-the-official-installer)

- clone the repository to your machine

```bash
Expand All @@ -60,10 +75,17 @@
cd pyhtools
```

- install requirements
- install with poetry

```bash
python3 -m pip install -e .
# without options
poetry install
# for windows
poetry install -E windows
# for linux
poetry install -E linux
```

## Start PyHTools
Expand All @@ -87,16 +109,16 @@
### Open In Google Cloud Shell
- Temporary Session
[![Open in Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.svg)](https://shell.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fdmdhrumilmistry%2Fpyhtools&ephemeral=true&show=terminal&cloudshell_print=./README.md)
[![Open in Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.svg)](https://shell.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fdmdhrumilmistry%2Fpyhtools&ephemeral=true&show=terminal&cloudshell_print=./DISCLAIMER.md)
- Perisitent Session
[![Open in Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.svg)](https://shell.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fdmdhrumilmistry%2Fpyhtools&ephemeral=false&show=terminal&cloudshell_print=./README.md)
[![Open in Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.svg)](https://shell.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fdmdhrumilmistry%2Fpyhtools&ephemeral=false&show=terminal&cloudshell_print=./DISCLAIMER.md)
## Package Tools and Features
### Attackers
- `For Networks`
- Network Scanner
- Mac changer
- ARP Spoofing
Expand All @@ -107,6 +129,7 @@
- Code Injector
- `For Websites`
- Login Guesser (Login Bruteforcer)
- Web Spider
- Web crawler (detects dirs | subdomains)
Expand Down
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ linux = ["netfilterqueue"]
windows = ["wmi"]


[tool.poetry.urls]
"Home" = "https://github.com/dmdhrumilmistry/pyhtools"
"Bug Tracker" = "https://github.com/dmdhrumilmistry/pyhtools/issues"
"Support" = "https://github.com/sponsors/dmdhrumilmistry/"
"PayPal" = "https://paypal.me/dmdhrumilmistry"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Expand Down

0 comments on commit b068b26

Please sign in to comment.