From 3eeed9bdef1040d4f1f9343201cd8b30e21d273c Mon Sep 17 00:00:00 2001
From: bpssoft <bpssoft@ispconfig3>
Date: Fri, 09 Nov 2007 06:02:50 -0500
Subject: [PATCH] * Added bruteforge protection into login * Cleanup some stuff into login/index.php like globals * Add errors to the lang files

---
 install/sql/ispconfig3.sql |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/install/sql/ispconfig3.sql b/install/sql/ispconfig3.sql
index 3da445f..0f7008c 100644
--- a/install/sql/ispconfig3.sql
+++ b/install/sql/ispconfig3.sql
@@ -864,3 +864,13 @@
 -- 
 -- Daten f�r Tabelle `web_domain`
 -- 
+
+--
+-- Table for attempts login 
+--
+
+CREATE TABLE `attempts_login` (
+  `ip` varchar(12) NOT NULL,
+  `times` tinyint(1) NOT NULL default '1',
+  `login_time` timestamp NOT NULL default '0000-00-00 00:00:00'
+);

--
Gitblit v1.9.1