├── LICENSE
├── README.md
└── p-gen.py
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 N17R0
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | ## ABOUT TOOL :
26 |
27 | P-gen tool is an python based script which create/generate randrom passwords in fraction of seconds. This tool works on both rooted Android device and Non-rooted Android device.
28 |
29 |
30 |
31 |
32 | ## AVAILABLE ON :
33 |
34 | * Termux
35 |
36 | ### TESTED ON :
37 |
38 | * Termux
39 |
40 | ### REQUIREMENTS :
41 | * internet
42 | * storage 200 MB
43 |
44 | ## FEATURES :
45 | * [+] Stable tool !
46 | * [+] Updated maintainence !
47 | * [+] Best in termux !
48 | * [+] Easy for Beginners !
49 |
50 | ## INSTALLATION [Termux] :
51 |
52 | * `apt-get update -y`
53 | * `apt-get upgrade -y`
54 | * `pkg install python -y`
55 | * `pkg install python2 -y`
56 | * `pkg install git -y`
57 | * `pip install lolcat`
58 | * `pip install requests`
59 | * `pip install random`
60 | * `git clone https://github.com/noob-hackers/p-gen`
61 | * `cd $HOME`
62 | * `ls`
63 | * `cd p-gen`
64 | * `ls`
65 | * `python p-gen.py`
66 | ```
67 | [+]--Enter the lenghth of password you want
68 |
69 | [+]--You can select any option by clicking on your keyboard
70 |
71 | [+]--Note:- Don't delete any of the scripts included in core files
72 | ```
73 |
74 | ## USAGE OPTIONS [Termux] :
75 |
76 | __ENTER LENGHT OF PASSWORD__ :
77 | - From this option you can start generating password.
78 |
79 | ## SCREEN SHOTS [Termux]
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 | ## WATCH VIDEO [Termux]
88 |
89 | [](https://rebrand.ly/rcentvideo)
90 |
91 | ## CONNECT WITH US :
92 |
93 | [](https://rebrand.ly/fbmsnger)
94 |
95 | [](https://rebrand.ly/insgrm)
96 | [](https://rebrand.ly/noobwebs)
97 | [](https://rebrand.ly/linkedinprof)
98 | [](https://rebrand.ly/fsbpage)
99 | [](https://rebrand.ly/telegramchnl)
100 | [](https://rebrand.ly/hckrgroups)
101 | [](https://rebrand.ly/nhforums)
102 |
103 |
104 | ## BUY ME A COFFEE :
105 |
106 |
107 |
108 |
109 |
110 | ## WARNING :
111 | ***This tool is only for educational purpose. If you use this tool for other purposes except education we will not be responsible in such cases.***
112 |
--------------------------------------------------------------------------------
/p-gen.py:
--------------------------------------------------------------------------------
1 | import random
2 | # colors
3 | yellow='\033[93m'
4 | gren='\033[92m'
5 | cyan='\033[96m'
6 | pink='\033[95m'
7 | red='\033[91m'
8 | b='\033[1m'
9 | # code
10 | print (red+b+"""
11 |
12 |
13 | ██████╗ ██████╗ ███████╗███╗ ██╗
14 | ██╔══██╗ ██╔════╝ ██╔════╝████╗ ██║
15 | ██████╔╝█████╗██║ ███╗█████╗ ██╔██╗ ██║
16 | ██╔═══╝ ╚════╝██║ ██║██╔══╝ ██║╚██╗██║
17 | ██║ ╚██████╔╝███████╗██║ ╚████║
18 | ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝
19 | v 1.0
20 | """+b+red)
21 |
22 | print (gren+b+" <===[[ coded by N17R0 ]]===>"+b+gren)
23 | print (" ")
24 | print (yellow+b+" <---( YOUTUBE- Noob Hackers )--->"+b+yellow)
25 | print (" ")
26 |
27 | length=int(input(cyan+b+"Enter The Length Of The Password: "+b+cyan))
28 | print (" ")
29 | print (yellow+b+"-----> password generated <----"+b+yellow)
30 | print (" ")
31 | char="abcdefghijklmnopqrstuvwxyz1234567890@#$%&*^"
32 | password= (gren+b+" "+b+gren)
33 | for i in range(length):
34 |
35 | password+=random.choice(char)
36 |
37 | print(password)
38 | print (" ")
39 | print (yellow+b+"-----> grab your password <----"+b+yellow)
40 | print (" ")
41 |
--------------------------------------------------------------------------------