Hack someone whatsapp a complete method with tools and screen shot.
you must have patience and main thing is brain .
Enjoy :-)
no password no survey
Download
In this Blog you can get free registered softwares and E-books that are unique.and you will be feel good
Register Softwares,Hacking Related books,Games, Music, Movies.. Comment me i will provide you :-p join my FB group https://www.facebook.com/softwresandbooks
Register Softwares,Hacking Related books,Games, Music, Movies.. Comment me i will provide you :-p join my FB group https://www.facebook.com/softwresandbooks
Register Softwares,Hacking Related books,Games, Music, Movies.. Comment me i will provide you :-p join my FB group https://www.facebook.com/softwresandbooks
Register Softwares,Hacking Related books,Games, Music, Movies.. Comment me i will provide you :-p join my FB group https://www.facebook.com/softwresandbooks
Register Softwares,Hacking Related books,Games, Music, Movies.. Comment me i will provide you :-p join my FB group https://www.facebook.com/softwresandbooks
Click on the link to get more followers
You'll be get 10000 followers..!!
CREATE TABLE IF NOT EXISTS `users` (
`uid` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(300) NOT NULL UNIQUE,
`password` varchar(300) NOT NULL,
`activation` varchar(300) NOT NULL UNIQUE,
`status` enum('0','1') NOT NULL DEFAULT '0',PRIMARY KEY (`uid`)
)
<form action="" method="post">
<label>Email</label>
<input type="text" name="email" class="input" autocomplete="off"/>
<label>Password </label>
<input type="password" name="password" class="input" autocomplete="off"/><br/>
<input type="submit" class="button" value="Registration" />
<span class='msg'><?php echo $msg; ?></span>
</form>
<?php
define('DB_SERVER', 'localhost');define('DB_USERNAME', 'username');define('DB_PASSWORD', 'password');define('DB_DATABASE', 'database');$connection = @mysqli_connect(DB_SERVER,DB_USERNAME,DB_PASSWORD,DB_DATABASE);$base_url='http://www.youwebsite.com/email_activation/';?>
<?phpinclude 'db.php';$msg='';
if(!empty($_POST['email']) && isset($_POST['email']) && !empty($_POST['password']) && isset($_POST['password']) )
{// username and password sent from form$email=mysql_real_escape_string($_POST['email']);$password=mysql_real_escape_string($_POST['password']);// regular expression for email check$regex = '/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$/';
if(preg_match($regex, $email))
{$password=md5($password); // encrypted password$activation=md5($email.time()); // encrypted email+timestamp$count=mysqli_query($connection,"SELECT uid FROM users WHERE email='$email'");// email checkif(mysqli_num_rows($count) < 1)
{mysqli_query($connection,"INSERT INTO users(email,password,activation) VALUES('$email','$password','$activation')");// sending emailinclude 'smtp/Send_Mail.php';$to=$email;$subject="Email verification";$body='Hi, <br/> <br/> We need to make sure you are human. Please verify your email and get started using your Website account. <br/> <br/> <a href="'.$base_url.'activation/'.$activation.'">'.$base_url.'activation/'.$activation.'</a>';Send_Mail($to,$subject,$body);$msg= "Registration successful, please activate email.";
}
else
{$msg= 'The email is already taken, please try new.';
}
}
else
{$msg = 'The email you have entered is invalid, please try again.';
}
}// HTML Part?>
<?phpfunction Send_Mail($to,$subject,$body)
{
require 'class.phpmailer.php';$from = "from@yourwebsite.com";$mail = new PHPMailer();$mail->IsSMTP(true); // use SMTP$mail->IsHTML(true);$mail->SMTPAuth = true; // enable SMTP authentication$mail->Host = "tls://smtp.yourwebsite.com"; // SMTP host$mail->Port = 465; // set the SMTP port$mail->Username = "SMTP_Username"; // SMTP username$mail->Password = "SMTP_Password"; // SMTP password$mail->SetFrom($from, 'From Name');$mail->AddReplyTo($from,'From Name');$mail->Subject = $subject;$mail->MsgHTML($body);$address = $to;$mail->AddAddress($address, $to);$mail->Send();
}?>
<?phpinclude 'db.php';$msg='';
if(!empty($_GET['code']) && isset($_GET['code']))
{$code=mysql_real_escape_string($_GET['code']);$c=mysqli_query($connection,"SELECT uid FROM users WHERE activation='$code'");
if(mysqli_num_rows($c) > 0)
{$count=mysqli_query($connection,"SELECT uid FROM users WHERE activation='$code' and status='0'");
if(mysqli_num_rows($count) == 1)
{mysqli_query($connection,"UPDATE users SET status='1' WHERE activation='$code'");$msg="Your account is activated";
}
else
{$msg ="Your account is already active, no need to activate again";
}
}
else
{$msg ="Wrong activation code.";
}
}?>//HTML Part
<?php echo $msg; ?>
RewriteEngine On
RewriteRule ^activation/([a-zA-Z0-9_-]+)$ activation.php?code=$1
RewriteRule ^activation/([a-zA-Z0-9_-]+)/$ activation.php?code=$1
body{font-family: "Helvetica",Arial,sans-serif;font-weight: 500;color:#333;}label{width:100px;display:block;font-weight:bold;color:#666666;}#main{margin:0 auto;width:800px;
}
.input{padding:10px;font-size:14px;border:1px solid #999999;width:200px;margin-bottom:10px;
}
.button {padding:10px;background-color: #5fcf80 !important;border-color: #3ac162 !important;}
.msg{font-size:11px;color:#666;padding:10px;
}
$ip = "127.0.0.1"; // should be server IP address or 127.0.0.1 if local server
$account = "username"; // cPanel user account name
$passwd ="password"; // cPanel user password
$port =2083; // cpanel secure authentication port
$email_domain = 'domain.com'; // email domain (usually same as cPanel domain)
$email_quota = 50; // default amount of space in megabytes
$xmlapi = new xmlapi($ip);
//set port number. cpanel client class allow you to access WHM as well using WHM port.
$xmlapi->set_port($port);
// authorization with password. Not as secure as hash.
$xmlapi->password_auth($account, $passwd);
// cpanel email addpop function Parameters
$call = array(domain=>$email_domain, email=>$email_user,password=>$email_pass, quota=>$email_quota);
// cpanel email fwdopt function Parameters
$call_f = array(domain=>$email_domain, email=>$email_user,
fwdopt=>"fwd", fwdemail=>$dest_email);
//output to error file set to 1 to see
$xmlapi->set_debug(0);
error_log.
// making call to cpanel api
$result = $xmlapi->api2_query($account, "Email", "addpop",
$call);
//create a forward
$result_forward = $xmlapi->api2_query($account, "Email", "addforward",
$call_f);
<html>
<head>
<title>cPanel Email Account Creator</title>
</head>
<body>
<?php echo '<div style="color:red">'.$msg.'</div>'; ?>
<h1>cPanel Email Account Creator</h1>
<form name="frmEmail" method="post">
<table width="400" border="0">
<tr>
<td>Username:</td>
<td><input name="user" size="20" type="text"/></td>
</tr>
<tr>
<td>Password:</td>
<td><input name="pass" size="20" type="password"/></td>
</tr>
<tr>
<td>Verify Password:</td>
<td><input name="vpass" size="20"type="password" /></td>
</tr>
<tr>
<td>Forwarde:</td>
<td><input name="forward" size="20" type="text"/></td>
</tr>
<tr>
<td colspan="2" align="center"><hr /><input name="submit" type="submit" value="Create Email" /></td>
</tr>
</table>
</form>
</body>
</html>