Page 1 of 1

Prevent hackers to enter you admin panel

Posted: 09 Jan 2012, 05:41
by Solidjeuh
I have an easy solution, That prevents hackers to enter your admin panel.
Just make an .httacces into the 'adm' folder

Code: Select all

<limit GET>
order deny,allow
deny from all
allow from IP address Here
</limit> 
if you have more then 1 admin:

Code: Select all

<limit GET>
order deny,allow
deny from all
allow from IP address Here
allow from IP address Here
</limit>
Now when you try to enter the admin panel you will get an error page if your ip addresses is not in that list.
The only problem is, when you have a dynamic ip adres you need to change the address into the .htacces file every time it changes. Otherwise you can't get into your own admin panel :D

Image

This is not my code! I found this on google. And wanted to share with all of you

Prevent hackers to enter you admin panel

Posted: 09 Feb 2012, 11:23
by Sinnocent
Is it that easy to hack a phpbb forum?
Is this mod legit?

Prevent hackers to enter you admin panel

Posted: 11 Feb 2012, 11:40
by Mii
It makes no sense. What if your admins have a dynamic IP or have to do some work from somewhere else? Use password protected directories instead. http://lmgtfy.com/?q=password+protected ... access&l=1
Although, that isn't necessarily needed. The phpBB admin login is almost 100% safe. (Nothing is 100% safe)

Prevent hackers to enter you admin panel

Posted: 11 Feb 2012, 16:21
by Leinad4Mind
True x'D But the best modification is to change ACP directory: viewtopic.php?f=52&t=1875

Prevent hackers to enter you admin panel

Posted: 11 Feb 2012, 16:30
by Arnevb
You can better manage these things in your CPanel :) Deny IP's and stuf...

Prevent hackers to enter you admin panel

Posted: 19 Feb 2012, 06:24
by webmaster
Thanks all for their comments..