Compare commits

...

2 Commits

Author SHA1 Message Date
Ankan Pal d74931a9bc
Fix typo (#37) 2024-02-27 08:46:20 +05:30
Ankan Pal 307a5508e9
Add some more info on variables in keyguesser.py 2024-02-27 08:41:27 +05:30
2 changed files with 8 additions and 1 deletions

View File

@ -10,7 +10,7 @@
3. ~~Get **`server.key`** file from the Extracted zip at **`/pfrm2.0/etc/server.key`** and Copy it to **`Desktop/JF`**.~~
4. ~~Grab the encryption key for your router model from [here](https://github.com/JFC-Group/JF-Customisation/tree/master/EncryptionKeys/) and Copy it to **`Desktop/JF`** as `server.key` ~~
4. ~~Grab the encryption key for your router model from [here](https://github.com/JFC-Group/JF-Customisation/tree/master/EncryptionKeys/) and Copy it to **`Desktop/JF`** as `server.key`~~
5. Go to Your **Router WEB-UI Page** (`http://192.168.29.1`) and Sign in as **Admin**. (The default credentials are **admin : Jiocentrum**)

View File

@ -31,6 +31,13 @@ routerSerial = "RSXXXXXXXXXXX" # Your Router's Serial Number
routerSsid = "XXXXX" # Default Router SSID without the 'JioFiber-' prefix #
#############################################################################################################
#############################################################################################################
# All of the above information might be found written on the back of the router box. #
# The router SSID does NOT mean the current SSID of your router #
# The router SSID is the DEFAULT SSID of your router, e.g., "JioFiber-Alpha" #
# You have to just take the "Alpha" part in the above routerSsid variable #
#############################################################################################################
def tryToDecrypt(hexKey):
p = subprocess.Popen(["openssl", "aes-128-cbc", "-d", "-pass", "pass:{}".format(hexKey),
"-in", inFileName, "-out", outFileName], stderr=subprocess.PIPE, stdout=subprocess.PIPE)