Created
November 14, 2021 02:31
-
-
Save nucther/f29f85ba9a8ac71b36920bf0c8b32422 to your computer and use it in GitHub Desktop.
Get Password PPPoE Indihome ( Fiberhome )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Login to fiberhome modem | |
// Paste this script inside browser console | |
$.ajax({ | |
url: '/cgi-bin/ajax?ajaxmethod=get_allwan_info', | |
success: (data)=>{ | |
data = JSON.parse(data) | |
data.wan.forEach(v => { | |
if(v.AddressingType == 'PPPoE'){ | |
console.log("Username: "+ v.Username) | |
console.log("Password: "+ fhdecrypt(v.Password) ) | |
} | |
}) | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can we get password of pppoe from config backup? How can we get backup?