Skip to content

Commit 6b97fd2

Browse files
PLDTFi Version 1.0
1 parent c4d188d commit 6b97fd2

File tree

4 files changed

+58
-1
lines changed

4 files changed

+58
-1
lines changed

README.md

+56-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,56 @@
1-
https://www.coursehero.com/file/43638965/wifi-hackingdocx/
1+
# PLDTFi - WIFI PASSWORD GENERATOR
2+
![Alt text](image.png)
3+
4+
## SETUP
5+
```bash
6+
git clone https://github.com/Team-Learning-Session/PLTDFi
7+
cd PLTDFi
8+
pip3 install -r requirements.txt
9+
python3 PLTDFi.py
10+
```
11+
Open in your browswer: `http://127.0.0.1:5000/`
12+
13+
## Documentation
14+
### DSL
15+
```
16+
Sample #1
17+
SSID: PLDTWIFI52374
18+
GET THE LAST 5 DIGITS
19+
52374 x 3 is equal 157122
20+
Result: PLDTWIFI157122
21+
22+
Sample #2
23+
SSID: PLDTHOMEDSL57341
24+
GET THE LAST 5 DIGITS
25+
57341 x 3 is equal 172023
26+
Result: PLDTWIFI172023
27+
```
28+
29+
### FIBER
30+
Convert the last 5 character of the PLDTWIFI SSID to Hexadecimal Characters
31+
32+
![Alt text](image-1.png)
33+
```
34+
SAMPLE #1
35+
SSID PLDTHOMEFIBRb4870
36+
CONVERT THE LAST 5 DIGITS TO THE IMAGE ABOVE
37+
b4870 is 4b78f
38+
[ PLDTWIFI + "generated Mac address" ]
39+
b = 4
40+
4 = b
41+
8 = 7
42+
7 = 8
43+
0 = f
44+
So you get 4b78f
45+
Result: PLDTWIFI4B78F
46+
```
47+
Full document: `https://www.coursehero.com/file/43638965/wifi-hackingdocx/`
48+
49+
## DISCLAIMER:
50+
This project and its documentation were created for educational purposes only. The content and information provided in this project are based on publicly available sources, including but not limited to the document located at `https://www.coursehero.com/file/43638965/wifi-hackingdocx/`. The purpose of this project is to demonstrate technical skills and should not be used for any malicious, unauthorized, or illegal activities.
51+
52+
The creators and contributors of this project do not endorse or promote any form of hacking, unauthorized access to computer networks, or any other illegal activities. Any use of the knowledge or tools presented in this project for illegal or unethical purposes is strictly discouraged and is the sole responsibility of the individual engaging in such activities.
53+
54+
By using this project and its documentation, you acknowledge that you are solely responsible for your actions and will use the information and tools provided in a legal and ethical manner. The creators and contributors of this project shall not be held liable for any misuse or illegal activities conducted by individuals using this project as a reference or resource.
55+
56+
Always adhere to local laws, regulations, and ethical standards when engaging in any form of computer or network-related activities.

image-1.png

10.1 KB
Loading

image.png

24.9 KB
Loading

requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
flask
2+
flask-cors

0 commit comments

Comments
 (0)