Dictionary attack on wordpress website

Someone is permanently trying to hack wordpress website, can someone suggest possible ways to prevent this.

I dont think they will hack it because i have taking all security measures and preventions really strong password etc, its just annoying i have a plugin call activity monitor which will output below.

Read More

enter image description here

so this just happens then i have to go in and block the ip in my .htaccess file. 115.87.105.135

Heres the info i get from a lookup

IP : 115.87.105.135 Neighborhood
Host : ppp-115-87-105-135.revip4.asianet.co.th
Country : Thailand

What information can i get from a ip to see who is trying to hack me and where or is there no information i can get just have to keep waiting and blocking ips all the time???

Thanks

Related posts

Leave a Reply

3 comments

  1. You could use the whois information to learn who is administrating the IP range the IP originates from. They have to provide contact information (email address, …) to report abuse by their users.

    If you are just interested in the location there are ip geolocating services available on the net but they are not very accurate (maybe they’ll show the right town).

  2. Add the following code to bottom of your functions.php in theme folder it will stop the ping back request.

    add_filter( 'xmlrpc_methods', 'remove_xmlrpc_pingback_ping' );
    function remove_xmlrpc_pingback_ping( $methods ) {
    unset( $methods['pingback.ping'] );
    
    return $methods;
    }