tuxmartin

ANDROID AdBlock - PHP file for browser download

Nov 10th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.37 KB | None | 0 0
  1. <?php
  2. header("Content-Disposition: attachment; filename=adblock.sh");
  3. header('Content-type: application/octet-stream');
  4. ?>
  5. #!/bin/sh
  6.  
  7. mount -o remount,rw /system
  8. A=$?
  9.  
  10. busybox wget -q http://winhelp2002.mvps.org/hosts.txt -O /etc/hosts
  11. B=$?
  12.  
  13. mount -o remount,ro /system
  14. C=$?
  15.  
  16. if [[ $A == 0 && $B == 0 && $C == 0 ]]; then
  17.     echo "OK"
  18. else
  19.     echo "ERROR"
  20. fi
Add Comment
Please, Sign In to add comment