Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| #!/usr/bin/env python3 | |
| # Per cbd, "SS310 modem", "shannon310". This is a Samsung Galaxy S7 SM-G930F. | |
| # ["/sbin/cbd", "-d", "-tss310", "-bm", "-mm", "-P", "platform/155a0000.ufs/by-name/RADIO"] | |
| boot0_path = '/dev/umts_boot0' | |
| firmware_partition = '/dev/disk/by-partlabel/RADIO' ## maps to /dev/sda8 on my phone | |
| nv_data_path = '/efs/nv_data.bin' ## mount /dev/disk/by-partlabel/EFS (/dev/sda3 for me) on /efs | |
| import cffi |
| #!/usr/bin/env python3 | |
| # Usage: python convert_teegris_tas.py ~/Downloads/sw/pda/s10/fw/fw_G973FXXU4BTA8/AP/vendor/tee/ | |
| import os | |
| import sys | |
| from textwrap import wrap | |
| def teegris_ta_to_elf(path_from, path_to): | |
| with open(path_from, 'rb') as fin: | |
| with open(path_to, 'wb') as fout: |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| #!/usr/bin/python | |
| # | |
| # Version 1.0 | |
| # This script will pass a linux HTML header causing safe connect to ignor the host mac address as safeconnect is not developed for *nix machines | |
| # For educational purposes only. | |
| # Joubin Jabbari | |
| import sys | |
| import urllib2 | |
| import random |
| //// TODO :: 3. Clean up | |
| //// 4. Events | |
| //// 5. Create a colormap | |
| //// 6. glx ? | |
| #ifdef DEBUG | |
| #include <sys/socket.h> | |
| #include <sys/ioctl.h> | |
| #include <sys/un.h> | |
| #include <sys/select.h> |