Tracking Down A Wordpress Hacker

cataratas

Regular Member
Joined
Apr 13, 2011
Messages
221
Reaction score
131
Greetings all.

I wonder whether any of you have spent more than a moment trying to identify one of the 878 people trying to hack your site every single day.

I shouldn't take it personally but I do.

I want to stand in front of them and poke them firmly in the eye.

Then knee them in the bollocks.

And because I'm English, then wish them a nice day.
 
Greetings all.

I wonder whether any of you have spent more than a moment trying to identify one of the 878 people trying to hack your site every single day.

I shouldn't take it personally but I do.

I want to stand in front of them and poke them firmly in the eye.

Then knee them in the bollocks.

And because I'm English, then wish them a nice day.

usually they have some bots set up and they barely put in any effort. If they’re not putting any effort in, why should I?
 
I get a contact form email via my wix website from someone using a Tor browser every few days. It's a randomised name, email address and word. Makes no sense. Anyone else?
 
I get a contact form email via my wix website from someone using a Tor browser every few days. It's a randomised name, email address and word. Makes no sense. Anyone else?

Yup happens to a bunch of my wix sites too. It’s odd and cryptic.
 
Yup happens to a bunch of my wix sites too. It’s odd and cryptic.
Good to know I'm not the only one. I got one the other day that was without Tor and came from Frankfurt. Maybe someone slipped. Probably just a VPN. The emails don't seem to belong to them though so I'm not sure what they gain from it.
 
I finally got wise and added some security plugs. I used Wordfence, Change Table Prefix for SQL injectors and Rename wp-login. The Wordfence fire wall will tell you where the attacks are originating.
 
I keep getting attacked by the same fucking person putting a virus on my website that untitle all my posts, recently i discovered that he was the system admin on Hostinger which used to be my website was hosted... i simply wrote then about the issue, i had proof about their invasion, their ip was stamped in all logs, they blocked my services... wish i had power to destroy that company...
 
I keep getting attacked by the same fucking person putting a virus on my website that untitle all my posts, recently i discovered that he was the system admin on Hostinger which used to be my website was hosted... i simply wrote then about the issue, i had proof about their invasion, their ip was stamped in all logs, they blocked my services... wish i had power to destroy that company...
Thanks for the update on Hostinger
 
Beside the tips mentioned above such as changing default WordPress URLs, I would like to oppose some tips that aren't commonly known as a security engineer :

1- Remove/Hide "generator" meta tags such as :
Code:
<meta name="generator" content="WordPress 5.2.5" />
<meta content="Divi v.3.25.3" name="generator"/>

2- Remove all of the README files you can find

Removing meta tags & readme files will significantly lower the amount mass scanners scanning your site for vulnerabilities as they are used in mass scanners to identify if the site is using WP or not and to target specific vulnerable WordPress version and/or Plugin.
 
Beside the tips mentioned above such as changing default WordPress URLs, I would like to oppose some tips that aren't commonly known as a security engineer :

1- Remove/Hide "generator" meta tags such as :
Code:
<meta name="generator" content="WordPress 5.2.5" />
<meta content="Divi v.3.25.3" name="generator"/>

2- Remove all of the README files you can find

Removing meta tags & readme files will significantly lower the amount mass scanners scanning your site for vulnerabilities as they are used in mass scanners to identify if the site is using WP or not and to target specific vulnerable WordPress version and/or Plugin.

Will removing the meta tags impact updates and other plugin functionality?
 
Will removing the meta tags impact updates and other plugin functionality?
Not at all. The version of the plugin/wp is saved in database and/or backend files. This is sort of a branding/advertising for the provider (also sometimes used in stats/research to see how many users use X version/cms) which actually oppose a security risk.

For those who considering this to remove generator tag put this line in functions.php of your theme:
Code:
remove_action('wp_head', 'wp_generator');
 
Back
Top