· 5 years ago · Apr 27, 2020, 01:52 PM
1<?php
2/*
3 * Copyright (C) 2019 <Cvar1984>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19class Faker
20{
21 protected $name;
22 protected $address;
23 protected $phone;
24 protected $card;
25 protected $ccv;
26 protected $date;
27
28 function __construct()
29 {
30 $str = file_get_contents('http://namegenerators.org/fake-name-generator-us/');
31 preg_match_all('/<div class="col2">(.*?)<\/div>/s', $str, $matches);
32 self::setName(str_replace('</span>', '', str_replace('<span class="name">', '', $matches[1][3])));
33 self::setAddress($matches[1][8]);
34 self::setPhone($matches[1][9]);
35 self::setCard(trim($matches[1][14]));
36 self::setCcv($matches[1][16]);
37 self::setDate($matches[1][15]);
38 }
39
40 private function setName($var)
41 {
42 $this->name = $var;
43 }
44 private function setAddress($var)
45 {
46 $this->address = $var;
47 }
48 private function setPhone($var)
49 {
50 $this->phone = $var;
51 }
52 private function setCard($var)
53 {
54 $this->card = $var;
55 }
56 private function setCcv($var)
57 {
58 $this->ccv = $var;
59 }
60 private function setDate($var)
61 {
62 $this->date = $var;
63 }
64 public function getName()
65 {
66 return $this->name;
67 }
68 public function getAddress()
69 {
70 return $this->address;
71 }
72 public function getPhone()
73 {
74 return $this->phone;
75 }
76 public function getCard()
77 {
78 return $this->card;
79 }
80 public function getCcv()
81 {
82 return $this->ccv;
83 }
84 public function getDate()
85 {
86 return $this->date;
87 }
88}
89while (true) {
90 $fake = new Faker();
91 //fake cc
92 ob_start();
93 echo "===============INFO===============\n";
94 echo '[NAME : ' . $fake->getName() . "]\n";
95 echo '[ADDRESS : ' . $fake->getAddress() . "]\n";
96 echo '[PHONE : ' . $fake->getPhone() . "]\n";
97 echo "================CC================\n";
98 echo '[CARD NUMBER : ' . $fake->getCard() . "]\n";
99 echo '[CCV : ' . $fake->getCcv() . "]\n";
100 echo '[EXP-DATE : ' . $fake->getDate() . "]\n";
101
102 $data = ob_get_clean();
103
104 // troll website phising with fake user & pass
105 $emailList = [
106 'yahoo.com',
107 'gmail.com',
108 'hotmail.com',
109 'outlook.com'
110 ];
111
112 $userPass = $fake->getName();
113 $userPass = explode(' ', $userPass);
114 $password = $userPass[0] . rand(1, 100);
115 $email = $userPass[1] . '@' . $emailList[array_rand($emailList)];
116 echo 'Nama : ' . $email . PHP_EOL;
117 echo 'Password : ' . $password . PHP_EOL;
118 $email = urlencode($email);
119 $password = urlencode($password);
120 $status = file_get_contents("https://pineroll.com/assetwa18/../ver.php?id=211&linkdari=18 FB&username={$email}&password={$sandi}");
121 ($status == true) or exit($status);
122}