Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. require_once ("vendor/autoload.php");
  3. use Hush\Hush;
  4.  
  5. $key = "SecretKeyToStopOtherPeopleControllingMyButtHole";
  6. $username = "controller@gmail.com";
  7. $targetUsername = "slave@gmail.com";
  8. $password = "squirm";
  9.  
  10. if ($_GET["key"] == $key) {
  11. $hush = Hush::Factory($username, $password, $targetUsername);
  12. $intensity = intval($_GET["intensity"]);
  13. $hush->setBuzzSpeed($intensity);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement