How to reveal pppoe password behind asterisk in my router?

154,526

Solution 1

In inspect element mode of the browser and while you are on the password field change input type = password to input type = text :), man who would've thought hacking WiFi would be that easy through the browser.

Solution 2

Open the router configuration page using a browser like Google Chrome or Firefox. Right click the password box, select Inspect element.

Search for <input type="password".... and remove that bit. It should show the password in plain text

enter image description here

Solution 3

I Know how to reveal that password in GPON ont, i was recently looking for PPPoE password too, i'm trying to change html code in inspect element, not working. I'm trying to access telnet on router, not working too, then i found 1 app for Windows, here it's called RouterPassView.

To make this app work, you need to backup your router setting first. After backup, you'll have config.cfg file.

Next, after you download RouterPassView, open it, and import your router backup file called config.cfg file, after that you'll see a lot of xml data like this this

Then, find your PPPoE username and password using CTRL+F In this case, im using keyword "pass"

When you find it, you'll see

<Username dv="" ml="64" rw="RW" t="string" v="(YOUR_PPPOE_USERNAME)"></Username>

and

<Password dv="" ml="64" rw="RW" t="string" v="(YOUR_PPPOE_PASS)"></Password>

Screenshot: pic

There is the PPPoE password. Goodluck

*Tested on GPON ONT Alcatel Lucent G-240W-A

Solution 4

A PPPoE password is usually the one from your internet provider. I would contact them so they can reset the password. You can then change it there to what they've given you.

It is unlikely you will be able to "hack" this password, as the router will not show it to you, but will only allow you to change it to something else.

Solution 5

Passwords can be extracted from some routers by making a settings backup and decoding it.

I can't provide you with precise instructions because you haven't specified you router's model, but what you want to do is to download a backup of your settings. Then you'll have to search for a tool or website that will allow you to decode backup file. The password should be readable in the output.

Share:
154,526
aadil_saifi
Author by

aadil_saifi

Updated on September 18, 2022

Comments

  • aadil_saifi
    aadil_saifi over 1 year

    I lost my pppoe password, so I want to recover it from my router configuration setting but I am not succeeding after my lot of research on Internet. I used many password revealer tools but it can't help me actually they reveal's my password but after revealing another asterisk password appears

    Before Reveal my password looks like :- ●●●●●●●●●●●●●●●●

    After reveal using any software my password turns to : *********************

    I need my password in number like 12345 ....

    so please please please help me ......

    • Kenster
      Kenster almost 10 years
      What is the manufacturer and model of this router?
    • aadil_saifi
      aadil_saifi almost 10 years
      FTTH Broadband Router - GPON ONT
    • rhand
      rhand almost 9 years
      Often you can backup settings and then check the password. With TP Link for example you can and then decode the base64 encrypted password to see what the actual password is.
    • user212328
      user212328 over 4 years
      If you can inspect the traffic on the WAN link (e.g. between the router and ONT) and you can force the authentication method to PAP in the router you will see the password in plain text during the handshake.
  • LPChip
    LPChip almost 10 years
    Nice try, but given that he wrote: After reveail using any software, my password turns to: ************* it will do the same with your code.
  • 100rabh
    100rabh almost 10 years
    @LPChip yeah I noticed, but he mentioned "password revealer tools" which usually do not work well with browser based pages. If he mentions this doesn't work, I'll remove
  • LPChip
    LPChip almost 10 years
    By the nature of how some routers work, I'm fairly sure it won't work. They replace the password with 12 to 18 *'s to hide the length of the password, so people can't guess the password.
  • JehandadK
    JehandadK about 9 years
    My routers encoding is Base64, They are usually not encrypted with password so it could be Md5 as well but thats it!
  • Alex Bogias
    Alex Bogias over 8 years
    a "modern" browser :D
  • George
    George over 2 years
    well, that would work usually but as the OP said the revealed password is just asterisks, since the value of the html element you are referring to is actually asterisks.