mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-14 19:55:19 +00:00
Merge branch 'master' into development
This commit is contained in:
commit
bf7269924a
29
.github/workflows/lint_python.yml
vendored
29
.github/workflows/lint_python.yml
vendored
@ -1,5 +1,9 @@
|
|||||||
name: lint_python
|
name: lint_python
|
||||||
on: [pull_request, push]
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
jobs:
|
jobs:
|
||||||
lint_python:
|
lint_python:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -7,20 +11,21 @@ jobs:
|
|||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/setup-python@v4
|
- uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: 3.x
|
||||||
- run: pip install --upgrade pip wheel
|
- run: pip install --upgrade pip ruff setuptools wheel
|
||||||
- run: pip install bandit black codespell flake8 flake8-bugbear flake8-return
|
- name: "Ruff: Show stopper (must-fix) issues"
|
||||||
flake8-comprehensions isort mypy pytest pyupgrade safety
|
run: ruff . --select=E9,F63,F7,F82,PLE,YTT --show-source .
|
||||||
- run: bandit --recursive --skip B404,B603,B605,B607 .
|
- name: "Ruff: All issues"
|
||||||
|
run: ruff --exit-zero --select=ALL --statistics --target-version=py37 .
|
||||||
|
- name: "Ruff: All fixable (ruff --fix) issues"
|
||||||
|
run: ruff --exit-zero --select=ALL --ignore=ANN204,COM812,ERA001,RSE102
|
||||||
|
--statistics --target-version=py37 . | grep "\[\*\]"
|
||||||
|
- run: pip install black codespell mypy pytest safety
|
||||||
- run: black --check . || true
|
- run: black --check . || true
|
||||||
- run: codespell --ignore-words-list="WAN" || true # --skip="*.css,*.js,*.lock"
|
- run: codespell || true # --ignore-words-list="" --skip="*.css,*.js,*.lock"
|
||||||
- run: flake8 --ignore=E124,E128,E225,E251,E302,R502,R503,W291,W293,W605
|
- run: pip install -r requirements.txt || pip install --editable . || pip install . || true
|
||||||
--max-complexity=11 --max-line-length=265 --show-source --statistics .
|
|
||||||
- run: isort --check-only --profile black . || true
|
|
||||||
- run: pip install -r requirement.txt || pip install -r requirements.txt || pip install --editable . || pip install . || true
|
|
||||||
- run: mkdir --parents --verbose .mypy_cache
|
- run: mkdir --parents --verbose .mypy_cache
|
||||||
- run: mypy --ignore-missing-imports --install-types --non-interactive . || true
|
- run: mypy --ignore-missing-imports --install-types --non-interactive . || true
|
||||||
- run: pytest . || true
|
- run: pytest . || true
|
||||||
- run: pytest --doctest-modules . || true
|
- run: pytest --doctest-modules . || true
|
||||||
- run: shopt -s globstar && pyupgrade --py36-plus **/*.py || true
|
|
||||||
- run: safety check
|
- run: safety check
|
||||||
|
@ -11,7 +11,7 @@ WORKDIR /root/hackingtool
|
|||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
RUN true && \
|
RUN true && \
|
||||||
pip3 install -r requirement.txt;
|
pip3 install -r requirements.txt;
|
||||||
|
|
||||||
RUN true && \
|
RUN true && \
|
||||||
pip3 install lolcat boxes flask requests;
|
pip3 install lolcat boxes flask requests;
|
||||||
|
@ -11,7 +11,8 @@
|
|||||||
|
|
||||||
#### Install Kali Linux in WIndows10 Without VirtualBox [YOUTUBE](https://youtu.be/BsFhpIDcd9I) or use Docker
|
#### Install Kali Linux in WIndows10 Without VirtualBox [YOUTUBE](https://youtu.be/BsFhpIDcd9I) or use Docker
|
||||||
|
|
||||||
## Update Available V1.1.0 🚀
|
## Update Available V1.2.0 🚀
|
||||||
|
- [✔] Installation Bug Fixed
|
||||||
- [x] Added New Tools
|
- [x] Added New Tools
|
||||||
- [x] Reverse Engineering
|
- [x] Reverse Engineering
|
||||||
- [x] RAT Tools
|
- [x] RAT Tools
|
||||||
@ -217,9 +218,7 @@
|
|||||||
|
|
||||||
cd hackingtool
|
cd hackingtool
|
||||||
|
|
||||||
sudo pip3 install -r requirement.txt
|
sudo bash install.sh
|
||||||
|
|
||||||
bash install.sh
|
|
||||||
|
|
||||||
sudo hackingtool
|
sudo hackingtool
|
||||||
|
|
||||||
@ -255,8 +254,6 @@
|
|||||||
##### Your Favourite Tool is not in hackingtool or Suggestions Please [CLICK HERE](https://forms.gle/b235JoCKyUq5iM3t8)
|
##### Your Favourite Tool is not in hackingtool or Suggestions Please [CLICK HERE](https://forms.gle/b235JoCKyUq5iM3t8)
|
||||||
![Z4nzu's github stats](https://github-readme-stats.vercel.app/api?username=Z4nzu&show_icons=true&title_color=fff&icon_color=79ff97&text_color=9f9f9f&bg_color=151515)
|
![Z4nzu's github stats](https://github-readme-stats.vercel.app/api?username=Z4nzu&show_icons=true&title_color=fff&icon_color=79ff97&text_color=9f9f9f&bg_color=151515)
|
||||||
|
|
||||||
<a href="https://www.buymeacoffee.com/Zinzu" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/arial-yellow.png" alt="Buy Me A Coffee" style="height: 50px !important;width: 50px !important;"></a>
|
|
||||||
|
|
||||||
#### Don't Forgot to share with Your Friends
|
#### Don't Forgot to share with Your Friends
|
||||||
### The new Update get will soon stay updated
|
### The new Update get will soon stay updated
|
||||||
#### Thank you..!!
|
#### Thank you..!!
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
|
|
||||||
cd hackingtool
|
cd hackingtool
|
||||||
|
|
||||||
sudo pip3 install -r requirement.txt
|
sudo pip3 install -r requirements.txt
|
||||||
|
|
||||||
bash install.sh
|
bash install.sh
|
||||||
|
|
||||||
|
@ -104,10 +104,10 @@ if [[ $choice =~ ^[1-2]+$ ]]; then
|
|||||||
echo "";
|
echo "";
|
||||||
echo -e "${YELLOW}[*] Installing requirements...${NC}"
|
echo -e "${YELLOW}[*] Installing requirements...${NC}"
|
||||||
if [[ $choice == 1 ]]; then
|
if [[ $choice == 1 ]]; then
|
||||||
pip3 install -r $install_dir/requirement.txt
|
pip3 install -r $install_dir/requirements.txt
|
||||||
sudo apt install figlet -y
|
sudo apt install figlet -y
|
||||||
elif [[ $choice == 2 ]]; then
|
elif [[ $choice == 2 ]]; then
|
||||||
pip3 install -r $install_dir/requirement.txt
|
pip3 install -r $install_dir/requirements.txt
|
||||||
yay -S boxes --noconfirm
|
yay -S boxes --noconfirm
|
||||||
sudo pacman -S figlet -y
|
sudo pacman -S figlet -y
|
||||||
fi
|
fi
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
lolcat
|
|
||||||
boxes
|
boxes
|
||||||
flask
|
flask
|
||||||
|
lolcat
|
||||||
requests
|
requests
|
Loading…
Reference in New Issue
Block a user