diff --git a/htmlfiles/attack.html b/htmlfiles/attack.html
new file mode 100644
index 0000000..dcb1f1b
--- /dev/null
+++ b/htmlfiles/attack.html
@@ -0,0 +1,101 @@
+
+
+
+
Attack
+
+
Selected AP:
+
+
+
+
+
Selected Clients:
+
+
+
+
+
+
+
+
+ deauth selected:
+ sends deauthentication frames and dissociation frames to the selected client(s) in the selected WiFi network.
+
+ deauth all:
+ sends deauthentication frames and dissociation frames as broadcast to all clients in the selected WiFi network.
+
+ beacon spam:
+ sends beacon frames with the same SSID as the selected WiFi access point.
+
+ random beacon spam:
+ sends beacon frames with a random SSID .
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/htmlfiles/clients.html b/htmlfiles/clients.html
new file mode 100644
index 0000000..2fd3c58
--- /dev/null
+++ b/htmlfiles/clients.html
@@ -0,0 +1,140 @@
+
+
+
+
Scan for client devices
+
+
+
s
+
+
+
ready!
+
+
AP will be off while scanning!
+
+
+
Client devices found: 0
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/htmlfiles/functions.js b/htmlfiles/functions.js
new file mode 100644
index 0000000..377d4a0
--- /dev/null
+++ b/htmlfiles/functions.js
@@ -0,0 +1,13 @@
+function getResponse(adr, callback, timeoutCallback = function(){alert("timeout error. Please reload the site");}, timeout = 3000){
+ var xmlhttp = new XMLHttpRequest();
+ xmlhttp.onreadystatechange = function() {
+ if(xmlhttp.readyState == 4){
+ if(xmlhttp.status == 200) callback(xmlhttp.responseText);
+ else timeoutCallback();
+ }
+ };
+ xmlhttp.open("GET", adr, true);
+ xmlhttp.send();
+ xmlhttp.timeout = timeout;
+ xmlhttp.ontimeout = timeoutCallback;
+}
\ No newline at end of file
diff --git a/htmlfiles/index.html b/htmlfiles/index.html
new file mode 100644
index 0000000..d8172b7
--- /dev/null
+++ b/htmlfiles/index.html
@@ -0,0 +1,129 @@
+
+
+
+
Scan for WiFi access points
+
+
+
scanning...
+
+
Networks found: 0
+
+ MAC:
+ Vendor:
+
+
+
+
+
+
+ WPA* = WPA/WPA2 auto mode
+
+
+
+
+
diff --git a/htmlfiles/minifier.html b/htmlfiles/minifier.html
new file mode 100644
index 0000000..b4c2ddb
--- /dev/null
+++ b/htmlfiles/minifier.html
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+