curl -vs blog.wikimedia.org 2>&1 >/dev/null | fgrep X-hacker
X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.
We should recruit for WMF instead of automattic. :-D
This currently is served on:
-
blog.wikimedia.orgdiff.wikimedia.org - soundlogo.wikimedia.org
- wikimediafoundation.org
- wikimediaendowment.org
- techblog.wikimedia.org
See also https://wpvip.com/documentation/x-hacker-and-x-powered-by-http-headers/
Add this to the them functions.php to remove:
/** * Filter X-hacker output. */ add_filter( 'wp_headers', function( $headers ) { if ( isset( $headers['X-hacker'] ) ) { unset( $headers['X-hacker'] ); } return $headers; }, 999 );