Guest User

Untitled

a guest
Jul 19th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>lol</title>
  4. <style type="text/css">
  5. body, table, tr, th, td, p, div, span {
  6. font-size: 13px;
  7. font-family: Verdana, Helvetica, Sans-serif;
  8. }
  9. a:hover { color: #FFFF99 }
  10. a { text-decoration:none; }
  11. p.tut {
  12. ;
  13. }
  14. </style>
  15. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  16. </head>
  17. <body BGCOLOR=white>
  18.  
  19. <?php
  20.  
  21. $self= $_SERVER['PHP_SELF'];
  22.  
  23. $number = Trim($_POST['number']);
  24. $number = preg_replace("%[^0-9]%", '', $number);
  25.  
  26. $spoof = Trim($_POST['spoof']);
  27. $spoof = preg_replace("%[^0-9]%", '', $spoof);
  28.  
  29. $recall = Trim($_POST['recall']);
  30. if (empty($recall)) {$recall = "1";}
  31. $recall = preg_replace("%[^0-9]%", '', $recall);
  32.  
  33. $sound = Trim($_POST['sound']); // HELLO!
  34.  
  35.  
  36. // scrub input for timing
  37. $timing = Trim($_POST['timing']);
  38. if (empty($timing)) {$timing = "20";}
  39.  
  40. if ($_POST['submitted'] == 0)
  41. {
  42. $text="";
  43. }
  44. elseif($_POST['submitted'] == 1)
  45. {
  46. $text="Sequence Initiated! <br>annoying: $number";
  47. annoy($number, $spoof, $recall, $timing, $sound);
  48. }
  49.  
  50.  
  51. function annoy($number, $spoof, $recall, $timing, $sound)
  52. {
  53. $verify = "VERIFIED_INTERFACE_ACCESS";
  54. exec("echo $number $spoof $recall $timing $sound > /tmp/annoy.txt &");
  55. exec("/usr/bin/php /var/www/dug/annoyz/annoy.php $verify $number $spoof $recall $timing $sound > /dev/null &");
  56. }
  57.  
  58. ?>
  59. <div align="center">
  60. <table width=640 height="480"><tr><td align="center">
  61. <form action="<?php $self ?>" method="post" name="annoy" id="annoy">
  62. <br><p>10 digit number to annoy:<br>
  63. <input name="number" type="text" id="number" size="18"><br>
  64. sound: <SELECT NAME="sound" id="sound" width="4">
  65. <OPTION VALUE="ss-noservice">not in service
  66. <OPTION VALUE="test">deposit 9 trillion
  67. </SELECT>
  68. <br />
  69. 10 digit number to spoof:<br>
  70. <input name="spoof" type="text" id="spoof" value="<?php echo "2136666666"; ?>" size="18">
  71. <br />
  72. # of calls
  73. <input name="recall" type="text" id="recall" value="<?php echo "1"; ?>" size="7">
  74. <br>annoyance level:<br>
  75. (How fast to send X number of calls)<br>
  76. <SELECT NAME="timing">
  77. <OPTION VALUE="30">1 - annoying
  78. <OPTION VALUE="25">2 - pretty rude
  79. <OPTION VALUE="20">3 - jerk (call waiting / voicemail annoying)
  80. <OPTION VALUE="15">4 - UGH (voicemail will start to fill up automatically)
  81. <OPTION VALUE="10">5 - WTF!!
  82. </SELECT>
  83. </p>
  84. <input type="hidden" name="submitted" value="1">
  85. <input type="submit" name="Submit" value="start ph33ring">
  86. </p>
  87. </form>
  88. <?php echo $text; ?></td></tr></table></div>
  89. </body>
  90. </html>
Add Comment
Please, Sign In to add comment