Download debian iso
http://cdimage.debian.org/cdimage/release/current/mipsel/iso-cd/debian-9.1.0-mipsel-netinst.iso
Download initrd & vmlinux
| #!/usr/bin/env python3 | |
| # | |
| # zyxel_scramble.py | |
| # | |
| # author: Felis-Sapiens | |
| # | |
| # Decode password from ZyXEL config (NDMS V2) | |
| import sys | |
| from base64 import b64decode, b64encode |
| Login Password | |
| root xmhdipc | |
| root klv123 | |
| root xc3511 | |
| root 123456 | |
| root jvbzd | |
| default OxhlwSG8 | |
| defaul tlJwpbo6 | |
| defaul S2fGqNFs | |
| root hi3518 |
Download debian iso
http://cdimage.debian.org/cdimage/release/current/mipsel/iso-cd/debian-9.1.0-mipsel-netinst.iso
Download initrd & vmlinux
| import _winreg as reg | |
| import win32file | |
| adapter_key = r'SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}' | |
| def get_device_guid(): | |
| with reg.OpenKey(reg.HKEY_LOCAL_MACHINE, adapter_key) as adapters: | |
| try: |
| #!/usr/bin/env python | |
| # | |
| # Vkontatke OAuth 2.0 wrapper | |
| # Copyright 2011, Adil Khashtamov [[email protected]] | |
| # http://khashtamov.kz | |
| # | |
| # | |
| import logging |
| require "try-catch" | |
| try { | |
| function() | |
| error('oops') | |
| end, | |
| catch { | |
| function(error) | |
| print('caught error: ' .. error) |