This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Enable "charge + tether" in Settings -> Setup -> Mobile Router Setup -> Tethering | |
| # Use a usb cable to connect (tethering) to the router on port 5510 | |
| # Useful links: | |
| # Verify the IMEI number | |
| # https://en.wikipedia.org/wiki/Luhn_algorithm | |
| # Challenge/Response Generator for Sierra Wireless Cards V1.0 | |
| # https://github.com/bkerler/SierraWirelessGen | |
| ATI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # (c) B.Kerler 2019 under MIT license | |
| # If you use my code, make sure you refer to my name | |
| # If you want to use in a commercial product, ask me before integrating it | |
| import serial | |
| import sys | |
| import argparse | |
| from binascii import hexlify, unhexlify |