Skip to content

Instantly share code, notes, and snippets.

@nucther
Created November 14, 2021 02:31
Show Gist options
  • Select an option

  • Save nucther/f29f85ba9a8ac71b36920bf0c8b32422 to your computer and use it in GitHub Desktop.

Select an option

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) )
}
})
}
})
@nucther
Copy link
Author

nucther commented Nov 27, 2024

that because difference version.

@GhorbaniAli
Copy link

Can we get password of pppoe from config backup? How can we get backup?

@Sonkilary
Copy link

is it possible to get Superadmin password with this tool ? i dont have access to superadmin mode and use config backup ?

@nucther
Copy link
Author

nucther commented Sep 4, 2025

is it possible to get Superadmin password with this tool ? i dont have access to superadmin mode and use config backup ?

No. also this only work for old version firmware. seem like now day already updated and unable to use this method again.

@Sonkilary
Copy link

my version is RP4421 i have access to admin mode but not SuperAdmin to Enable Telnet sadly
is there way or workaround to to dump Super Admin password because i know if plug fiber cable and connect to my iSP Server it will be updated automatically and RP4423 has custom isp password that no one knos right now.

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