Prevent hackers to enter you admin panel

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

Prevent hackers to enter you admin panel

Post 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

Post by Sinnocent »

Is it that easy to hack a phpbb forum?
Is this mod legit?

Prevent hackers to enter you admin panel

Post 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

Post 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

Post by Arnevb »

You can better manage these things in your CPanel :) Deny IP's and stuf...

Prevent hackers to enter you admin panel

Post by webmaster »

Thanks all for their comments..