Skip to content

Instantly share code, notes, and snippets.

@Sinepel
Forked from MwieMarin/functions.php
Created May 30, 2023 20:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sinepel/3fe35522356712221a3fc6b15891b10c to your computer and use it in GitHub Desktop.
Save Sinepel/3fe35522356712221a3fc6b15891b10c to your computer and use it in GitHub Desktop.
WordPress: Disable REST API User Enumeration
<?php
add_filter( 'rest_endpoints', function( $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;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment