Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <?php
  2. /* Sending Bot Configuration */
  3. if ( $_GET )
  4. {
  5. /* Geting Encryption String */
  6. $KEY = (int)$_GET['id'];
  7.  
  8. /* Key Has To Be Different Than 0 */
  9. if ( $KEY > 0 && $KEY <= 16 )
  10. {
  11. /* Votebot Configurations */
  12. $USE_HZ = "false";
  13. $USE_GS200 = "false";
  14. $USE_TOPORG = "false";
  15. $SITE_REFERER = "";
  16. $HZ_SITE_ID = "";
  17. $GS_SITE_ID = "";
  18. $TOP_ORG_GIF_ID = "";
  19. $CAPTCHA_USER = "";
  20. $CAPTCHA_PW = "";
  21.  
  22. /* Compiling String */
  23. $ENCDATA = "";
  24. $DATA = "";
  25. $DATA .= "UseHz : '" . $USE_HZ . "'<BR/>";
  26. $DATA .= "UseGs200 : '" . $USE_GS200 . "'<BR/>";
  27. $DATA .= "UseTopOrg : '" . $USE_TOPORG . "'<BR/>";
  28. $DATA .= "SiteReferer : '" . $SITE_REFERER . "'<BR/>";
  29. $DATA .= "HzSiteID : '" . $HZ_SITE_ID . "'<BR/>";
  30. $DATA .= "GsSiteID : '" . $GS_SITE_ID . "'<BR/>";
  31. $DATA .= "TopOrgGifID : '" . $TOP_ORG_GIF_ID . "'<BR/>";
  32. $DATA .= "CaptchaUser : '" . $CAPTCHA_USER . "'<BR/>";
  33. $DATA .= "CaptchaPass : '" . $CAPTCHA_PW . "'<BR/>";
  34.  
  35. /* Encrypting String */
  36. for ( $i = 0 ; $i < strlen($DATA) ; $i++ ) { $ENCDATA .= CHR(ORD(substr($DATA, $i, 1)) ^ $KEY); }
  37.  
  38. /* Sending Encrypted String */
  39. echo $ENCDATA . "</BR>";
  40. }
  41. }
  42. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement