Recent content by John_83

  1. J

    How to Overwrite File in /config/misc with Root Bash Script

    It appears the two filenames are identical. I executed the following: ls /config/wifi > chars.txt I copied chars.txt to my Windows PC with adb pull. I copied the text of chars.txt (a directory listing of two apparently identical filenames) to www.mauvecloud.net/charsets/CharCodeFinder.html Both...
  2. J

    How to Overwrite File in /config/misc with Root Bash Script

    I copied the file into a directory viewable from my Windows PC (USB). The files lists as wifi.txt, but when I open it in Windows, Notepad calls the file wifi[1].txt (and there is only one version open).
  3. J

    How to Overwrite File in /config/misc with Root Bash Script

    The command : ls "mac.txt" only returns one file. I think there's a hidden character at the end of the original file, and it's not a space. A google search for a hidden character used in Android system files fails.
  4. J

    How to Overwrite File in /config/misc with Root Bash Script

    I just installed Pry-Fi. It fails to work on my device. It shows Original, Wanted, and Current mac address, and Original = Current <> Wanted after I connected on wifi. MAC spoofing while connected is checked. SuperSU shows Pry-Fi has permanent SU access. Yet another app that's using...
  5. J

    How to Overwrite File in /config/misc with Root Bash Script

    This script creates a duplicate file, with the same name, in the same directory as the intended target (???). The original system file has an Android icon next to it, while the new one has a text icon (as seen in Total Commander). #!/bin/bash/sh su echo "0123456789ab" > /config/wifi/mac.txt...