WordPress wordpress username is known
Heres How Hackers Can Find your WordPress Username



So youve taken pains to hide your WordPress login and admin screens from hackers. Youve changed your default usernames, and removed all mention of them from your theme. Youre safe right? Theres no way that hackers can find your login pages, let alone your usernames. Wrong! Unless you take precautions, heres how hackers can find your WordPress username with ease. And not just yours those of everyone on the site.

Two Methods:
Method 1: Using /?author=1 Query Parameter

Fix 1: Modifying .htaccess

Fix 2: Adding a Code Snippet to WordPress

Fix 3: Use Cloudflare Page or Firewall Rules

Method 2: Using WordPress JSON REST Endpoints

Fix: Disable via Code


Method 1: Using /?author=1 Query Parameter

One day, I had just set up a new blog and thought Id hidden my admin areas pretty well. To my surprise, my security plugins started sending me lockout notices. This means that not only were hackers able to find my login page, they were able to guess my WordPress username as well! I opened up my raw access logs in cPanel, and found this:



author Parameter
Apparently, hackers can find your username in WordPress by appending the query
:
/?author=1!
You can see in the screenshot above, that my server immediately returned the author page which of course,
revealed the username. So forget about making your username difficult to guess. Its right out there in the open!
Heres how it looks. First, type in your blog name and type /?author=1 after the URL like this:



Append Author Parameter
This will immediately redirect to your author page like so:



Hackers can find your WordPress Username
Some experts claim that exposing WordPress usernames is not a security risk. According to them, creating a strong password and using two factor authentication is the right way to go about it. But I say theres nothing wrong in hiding as much information as possible from hackers. Maybe if someone is truly determined to know my username, they can. But that doesnt mean I have to make it easy for them! I want potential attackers to work to break into my site. Hopefully, this will deter 90% of them.
If hackers dont know your username, they wont spam your site trying to guess your password. This means less load on your server. Ive been brought down once before by hackers DDoSing my login page. I dont want to risk that again.
So how do we close this loophole? There are two ways to prevent WordPress from revealing your author name via the parameter hack.

Fix 1: Modifying .htaccess


This is my preferred technique because its much faster than the alternative. By creating a simple .htaccess rule, you can immediately block all attempts to access your WordPress username via the ?author parameter. If you have access to it, open the hidden .htacces file in the root directory of your WordPress installation, and paste in the following code at the end:
:
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/wp-admin [NC]
RewriteCond %{QUERY_STRING} author=\d
RewriteRule ^ /? [L,R=301]
Heres what the WordPress .htaccess looks with the above code added on:



Add Rewrite Rules
These rules check to see that youre not in the admin area, and whether or not someone is attempting to access the author query parameter. If the conditions are met, it simply redirects back to the WordPress homepage. Problem solved!
After implementing this code in my .htaccess, the raw access log entry looks like this:



Redirecting to the Home Page Now
So even though someone has attempted to find out my username by typing /?author=1, the server smartly sends back the homepage of my blog. This is an extremely fast process, and hardly uses any server resources. So its the efficient and preferred way.
But what if you cant make changes to .htaccess? Then the second method is the one for you.

Fix 2: Adding a Code Snippet to WordPress

The second method is to add a code snippet to WordPress that accomplishes the same. If you dont know how, read my earlier
step by step tutorial on how to do this. Here is the code you need to paste into your custom plugin or functions.php:

:
function redirect_to_home_if_author_parameter() {
    $is_author_set = get_query_var( 'author', '' );
    if ( $is_author_set != '' && !is_admin()) {
        wp_redirect( home_url(), 301 );
        exit;
    }
}
add_action( 'template_redirect', 'redirect_to_home_if_author_parameter' );
Like the .htaccess code, this does exactly the same thing. It checks to see if youre not in the admin area, and whether or not someone is trying to access the author name via the ?author parameter. If so, it redirects back to the home page.
The difference is that this executes at the WordPress level, and is therefore slightly more inefficient than the first method. But if you dont have access to .htaccess, its the only other way. Checking your access logs will reveal the exact same thing regardless of which method you choose.
So while some might deny that revealing usernames is a security threat, my principle is that the harder you make it for someone to snoop around your website, the better. And if you want to prevent brute force attacks, and to prevent hackers from finding your WordPress username, one of these two snippets of code will do the trick!

Fix 3: Use Cloudflare Page or Firewall Rules


A lot of websites use Cloudflare anyway, so this is an easy solution. Just add a new page rule or a firewall rule to exclude the problematic URL. You can either redirect the page to the home page, or block it altogether. The free version of Cloudflare comes with 3 free page rules and 3 free firewall rules that youre probably not using anyway. So we might as well utilize them!

Method 2: Using WordPress JSON REST Endpoints

Visit the following URL on your WordPress site:
:
  https://[yoursite]/wp-json/wp/v2/users/1
Replace [yoursite] with your site name. You should get something like this:



Get the Username via wp-json
Thats your WordPress username in plain sight! This is because WordPress exposes certain REST APIs
by default and this allows anyone to enumerate the users via JSON.

Fix: Disable via Code

Fortunately, we can just disable these endpoints via this simple code snippet:
:
function disable_rest_endpoints ( $endpoints ) {
    if ( isset( $endpoints['/wp/v2/users'] ) ) {
        unset( $endpoints['/wp/v2/users'] );
    }
    if ( isset( $endpoints['/wp/v2/users/(?P<id>[\d]+)'] ) ) {
        unset( $endpoints['/wp/v2/users/(?P<id>[\d]+)'] );
    }
    return $endpoints;
}
add_filter( 'rest_endpoints', 'disable_rest_endpoints')
;

After youve saved your changes, users will be met with this message instead:



WordPress Rest Endpoint JSON Disabled
Blocking these two methods should make it hard for hackers to get a hold of your username!

:
https://www.wp-tweaks.com/hackers-ca...ress-username/