Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
728
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 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.0.8.9
  8. * @ Author : DeZender
  9. * @ Release on : 10.05.2019
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function boomCurl($f = [])
  15. {
  16. $url = 'https://boomcoding.com/api/install.php';
  17. $curl = curl_init();
  18. curl_setopt($curl, CURLOPT_URL, $url);
  19. curl_setopt($curl, CURLOPT_POST, true);
  20. curl_setopt($curl, CURLOPT_POSTFIELDS, $f);
  21. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  22. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  23. curl_setopt($curl, CURLOPT_HEADER, false);
  24. curl_setopt($curl, CURLOPT_REFERER, $_SERVER['HTTP_HOST']);
  25. $result = curl_exec($curl);
  26. curl_close($curl);
  27. return $result;
  28. }
  29.  
  30. if (!defined('BOOM')) {
  31. exit();
  32. }
  33.  
  34. if ($check_install != 0) {
  35. exit();
  36. }
  37. if (isset($_POST['db_host']) && isset($_POST['db_name']) && isset($_POST['db_user']) && isset($_POST['db_pass']) && isset($_POST['username']) && isset($_POST['password']) && isset($_POST['email']) && isset($_POST['repeat']) && isset($_POST['domain']) && isset($_POST['title']) && isset($_POST['language']) && isset($_POST['purchase']) && !empty($_POST['db_host']) && !empty($_POST['db_name']) && !empty($_POST['db_user']) && !empty($_POST['username']) && !empty($_POST['password']) && !empty($_POST['email']) && !empty($_POST['repeat']) && !empty($_POST['domain']) && !empty($_POST['title']) && !empty($_POST['language']) && !empty($_POST['purchase'])) {
  38. $DB_HOST = $_POST['db_host'];
  39. $DB_NAME = $_POST['db_name'];
  40. ...................................................................
  41. ....................................
  42. ..............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement