Skip to content

Instantly share code, notes, and snippets.

@nucther
Created November 14, 2021 02:31
Show Gist options
  • Save nucther/f29f85ba9a8ac71b36920bf0c8b32422 to your computer and use it in GitHub Desktop.
Save nucther/f29f85ba9a8ac71b36920bf0c8b32422 to your computer and use it in GitHub Desktop.
Get Password PPPoE Indihome ( Fiberhome )
// 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) )
}
})
}
})
@pencuriinshaf
Copy link

how to know ppoe password nokia g-240w 5G

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment