![]() |
|
[Release] Anti Account Checker Addon for LC CMS by DamonA - Printable Version +- LCKB (https://lckb.dev/forum) +-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109) +--- Forum: Website Scripting & Security (https://lckb.dev/forum/forumdisplay.php?fid=197) +---- Forum: Website Releases (https://lckb.dev/forum/forumdisplay.php?fid=135) +----- Forum: Ep3 Websites (https://lckb.dev/forum/forumdisplay.php?fid=155) +----- Thread: [Release] Anti Account Checker Addon for LC CMS by DamonA (/showthread.php?tid=4071) Pages:
1
2
|
- zicke - 10-12-2014 Because some kiddys are hacking Accounts with brute force with old Databases i have written this Addon. The .sql Table example in newproject_db_auth, in the .php mysql data connect. Count Variable is for self edit how many accesses per minute (10 should work fine) Instruction: 1. The Script (.php) in the core folder. 2. in the login.php see the lines session_start(); $file = 'login'; include "config/config.php"; include "styles/style.php"; include "core/plugin.php"; include 'core/functions.php'; include 'core/classes.php'; include 'core/post_check.php'; include "core/core.php"; add this: include 'core/anti-checker.php'; finish ![]() 2 regards DamonA - CDWriter - 10-13-2014 can you Tell us exactly what table does this sql goes into ?? Newproject_data? our db_auth ? Or do we need to create a new tables Called. - zicke - 10-13-2014 can you Tell us exactly what table does this sql goes into ?? Newproject_data? our db_auth ? Or do we need to create a new tables Called. you can use which you want, you can create a complete new too only must say in the header of the file the same database where the .sql is located. it's the variable $DBNameChecker example the .sql is located in newproject_db_auth set it to $DBNameChecker = 'newproject_db_auth '; - Jaiz - 10-13-2014 you can use which you want, you can create a complete new too only must say in the header of the file the same database where the .sql is located. it's the variable $DBNameChecker example the .sql is located in newproject_db_auth set it to $DBNameChecker = 'newproject_db_auth '; xD the com here still dont know for whats usefull XD ^^ - BayBay - 10-14-2014 xD the com here still dont know for whats usefull XD ^^ Didnt u read some ppl are getting their DB's hacked ? by using brute force ? - BayBay - 10-14-2014 Thanks for the Script!! really appreciate it - CDWriter - 10-14-2014 oooh thanks ..works great ...+1 - Sutz - 10-14-2014 nice release but... Would have been 100% easier to use the already active PDO connection an edit the t_user_log table in the cms db add a new row (count) then add the functions to the function.php The cms already logs time of login so just a simple function to update count on login where time = $timo an if count = 10 then show new block "error" with $msg = "Acount login limit reached"; - zicke - 10-15-2014 nice release but... Would have been 100% easier to use the already active PDO connection an edit the t_user_log table in the cms db add a new row (count) then add the functions to the function.php The cms already logs time of login so just a simple function to update count on login where time = $timo an if count = 10 then show new block "error" with $msg = "Acount login limit reached"; Yeah that is true but i have only converted from my site to cms so i haven't look in your cms ![]() This Bruteforces attacks, lcgeneric01/02, vorms, horus etc. Stupied kiddys released it in epvp so i have write the protection for it. - Sutz - 10-21-2014 Well ty for the effort I will integrate it into my cms ![]() I don't really bother with LC anymore so don't really know whats going on with hacks an exploits |