[Q] SU Command from hook topic

SOCIALIZE IT ⇨


Im trying to run a su command from within a hook,



Code:


Process p;
    try {
    // Preform su to get root privledges
    p = Runtime.getRuntime().exec("su");

    // Attempt to write a file to a root-only
    DataOutputStream os = new DataOutputStream(p.getOutputStream());
    os.writeBytes("echo \"Do I have root?\" >/system/sd/temporary.txt\n");

        // Close the terminal
        os.writeBytes("exit\n");
    os.flush();
    try {
    p.waitFor();
    if (p.exitValue() != 255) {
        toastMessage("root");
        return true;
        } else {
        toastMessage("not root");
    }
    } catch (InterruptedException e) {
        toastMessage("not root");
        }
    } catch (IOException e) {
        toastMessage("not root");
    }



But even though I grant the shell su access I still get error:
tmp-mksh: <stdin>[1]: can't create /system/sd/temporary.txt Read-only file system
Any ideas?




xda-developers


  1. [Q] Downgrade from lollipop to kitkat topic
  2. [Q] How to hook the step counter sensor? topic
  3. [Q] SU Command from hook topic
  4. [Q] call startService from hook method topic
  5. [Q] Hook and run outside topic
  6. Is root required to roll back to KitKat? topic
  7. [REQ] Multi DPI Stock Camera topic
  8. May be this is it for Xperia J topic
  9. [Q] No IMEI and baseband anymore. So back to stock rom for repair! topic
  10. Htc desire 816 official lollipop update video review topic
  11. [Q] Galaxy S6 Edge T-Mobile Unlock by SIM code topic
  12. How to roll back to KK topic
  13. What is this in Greenify settings topic
  14. [Q] How to update? topic
  15. [Q] New to phone - on 24A rooted - where to go from here? topic
  16. I9505 Safe to Downgrade from 4.4.2 to 4.2.2? topic
  17. Remove Att logo from the rear of the phone topic
  18. [Q] Going from Stock Unrooted to CM12.1 topic
  19. Downgrade from 5.1.x to stock topic
  20. Anyone come from a Note 4? topic

0 commentaires:

Enregistrer un commentaire