├── README.md
├── Screenshot at 2022-02-04 01-38-39.png
├── main
├── require.txt
└── run.py
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | ### Install In TERMUX
12 |
13 | ```bash
14 | > apt update && apt upgrade -y
15 | > pkg install python git unrar unzip p7zip -y
16 | > git clone https://github.com/MrG3P5/Archive-Crack
17 | > cd Archive-Crack
18 | > pip3 install cython
19 | > pip3 install -r require.txt
20 | > python3 run.py
21 | ```
22 |
23 | ### Install In Linux With Root
24 |
25 | ```bash
26 | > sudo su
27 | > apt update && apt upgrade -y
28 | > apt install python3 git p7zip unrar unzip -y
29 | > git clone https://github.com/MrG3P5/Archive-Crack
30 | > cd Archive-Crack
31 | > pip3 install cython
32 | > pip3 install -r require.txt
33 | > python3 run.py
34 | ```
35 |
36 | ### Tools Overview
37 | | main.py |
38 | | ------------- |
39 | ||
40 |
--------------------------------------------------------------------------------
/Screenshot at 2022-02-04 01-38-39.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MrG3P5/Archive-Crack/a6a161345cc1c9a42d4f953861cc3337fd7d66ff/Screenshot at 2022-02-04 01-38-39.png
--------------------------------------------------------------------------------
/main:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MrG3P5/Archive-Crack/a6a161345cc1c9a42d4f953861cc3337fd7d66ff/main
--------------------------------------------------------------------------------
/require.txt:
--------------------------------------------------------------------------------
1 | pyfiglet
2 | colorama
3 | rarfile
4 |
--------------------------------------------------------------------------------
/run.py:
--------------------------------------------------------------------------------
1 | #!/bin/env python3
2 |
3 | import subprocess
4 |
5 | subprocess.call("chmod +x main && ./main", shell = True)
6 |
--------------------------------------------------------------------------------