Skip to content

Instantly share code, notes, and snippets.

@chriscpritchard
Last active December 24, 2023 22:23
Show Gist options
  • Save chriscpritchard/db98167c0a1372ef16e131bfe9b76956 to your computer and use it in GitHub Desktop.
Save chriscpritchard/db98167c0a1372ef16e131bfe9b76956 to your computer and use it in GitHub Desktop.
Technicolor DWA0120 - Obtain PPPOE Password
  1. Connect to the router via ssh, the username is "engineer" and the password is the access key on the bottom of your router
  2. You will be greeted with something akin to the following:
          |                 |           o             |
          |---  ,---. ,---. |---. ,---. . ,---. ,---. |     ,---. ,---.
          |     |---' |     |   | |   | | |     |   | |     |   | |
          `---' `---' `---' `   ' `   ' ` `---' `---' `---' `---' `
                     N E X T   G E N E R A T I O N   G A T E W A Y
     --------------------------------------------------------------------
     NG GATEWAY SIGNATURE DRINK
     --------------------------------------------------------------------
      * 1 oz Vodka          Pour all ingredients into mixing
      * 1 oz Triple Sec     tin with ice, strain into glass.
      * 1 oz Orange juice
     --------------------------------------------------------------------
    This program contains proprietary information which is a trade secret of Technicolor
    and also is protected by intellectual property as an unpublished work
    under applicable Copyright laws/right of authorship.
    This program is also subject to some patent and pending patent applications.
    Technicolor is registered trademark and trade name of Technicolor group company,
    and shall not be used in any manner without express written from Technicolor.
    The use of the program and documentation is strictly limited to your own internal
    evaluation of the product embedding such program, unless expressly agreed otherwise
    by Technicolor under a specific agreement.
    Recipient is to retain this program in confidence and is not permitted to use
    or make copies thereof other than as permitted in a written agreement with Technicolor,
    unless otherwise expressly allowed by applicable laws.
    Recipient is not allowed to make any copy, decompile, reverse engineer, disassemble,
    and attempt to derive the source code of, modify, or
    create derivative works of the program, any update, or any part thereof.
    Any violation or attempt to do so is a violation of the rights of Technicolor.
    If you or any person under your control or authority breach this restriction,
    you may be subject to prosecution and damages.
    Product: vbnt-2
    Release: Cobalt (18.3)
    Version: 18.3.0278-2741007-20190320103504-0a0de5fc444c0dd4b93760b5cebf15791868a0a7
    Hash config:         0a0de5fc444c0dd4b93760b5cebf15791868a0a7
    Hash openwrt:        f05086f310e02591a501232ceecfa6ca3641deb2
    Hash kernel:         0d40edb618b17d93b4b81a4178f38d107840bf58
    Hash technicolor:    d08bcf9fc16cc35e3967c8a1298d36d3cec1fdfe
    Hash routing:        210fc51dab0344d982f6be3c8cf289be0c27a689
    Hash custo:          597f3f0d2bbd794727911db87025a86da665b28a
    Hash lte:            ff91c9ab917fd6313ff2891788c33fef717d2425
    Hash packages:       cd399ca61469d26b2bf1777bc099a475fc19868d
    ====================================================================================
    engineer>
    
    
  3. run the command "ps"
  4. scroll through the list to find the "pppd" command, it will look something like: 5175 2365 root S 3304 1% 0% /usr/sbin/pppd nodetach ipparam wan ifname pppoe-wan lcp-echo-interval 10 lcp-echo-failure 5 lcp-echo-adaptive set PEERDNS=0 nodefaultroute usepeerdns maxfail 1 user PPPOEUSERNAME password PPPOEPASSWORD ip-up-script /lib/netifd/ppp-up ipv6-up-script /lib/netifd/ppp6-up ip-down-script /lib/netifd/ppp-down ipv6-down-script /lib/netifd/ppp-down plugin connstate.so mtu 1500 mru 1500 plugin rp-pppoe.so graceful_restart /etc/ppp/pppoesession_vlan_wan nic-vlan_wan host-uniq SOMMESTRING
  5. The username and password are passed as arguments to that pppd command, so copy them down and do with them what you want!
@vrbello
Copy link

vrbello commented Dec 24, 2023 via email

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