Website Admin Panel get HACKED PLEASE HELP ME!

hushpapa

Junior Member
Joined
Jun 2, 2012
Messages
139
Reaction score
29
hi guys i need your help there i just login to my website and check my panel and shock that some of the details got erased and rewriten so what i do:

1. change the pass and user name
2. report to hosting
3. check the last IP logged

what i need now is

"a pop up box admin login"

is there something like this?

example: when i logged to my admin panel a pop up box will appear and i must put my admin username and pass or just even password to unlock the page so i can use it.

please help can give me any script like

regards

hushpapa

PS: please help me :(
 
you need to take this matter up with your hosting company
 
As G-S-T mentioned, if you have a host that is any good, they'll help you with everything you need.
 
talk to you host to get problem sorted, then install extra security


i use these below free plugins from wordpress.org and get hack attempts at at least 100 per day - all fail


admin-username-changer


limit-login-attempts ( set to your ip for login and only allow 1 attempt )
 
First thing first go to your .htaccess file and make the following changes which will allow you to login only from you ip:

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} ^(.*)?wp-login\.php(.*)$ [OR]
RewriteCond %{REQUEST_URI} ^(.*)?wp-admin$
RewriteCond %{REMOTE_ADDR} !^123\.123\.123\.123$
RewriteRule ^(.*)$ - [R=403,L]
</IfModule>
 
Back
Top