I hereby claim:
- I am chrisdavidmiles on github.
- I am chrisdavidmiles (https://keybase.io/chrisdavidmiles) on keybase.
- I have a public key whose fingerprint is 0471 E258 8E1A DBDA 9034 1EFD A686 AD2C 7AB0 7D97
To claim this, I am signing this object:
| <?php $possible_messages = [ | |
| 'Nope', | |
| 'Go away', | |
| 'Nice try', | |
| 'XML-RPC requests on this server have been disabled cuz of people like you. This is why we can\'t have nice things.', | |
| 'We don\'t serve your kind here', | |
| '<img src="//i.imgur.com/oeLBdQJ.png">', | |
| '<img src="//i.imgur.com/ZZW6M6P.gif"><hr>Did you really think an xmlrpc.php attack would work on this site?', | |
| '<img src="//i.imgur.com/OkQFngF.png"><hr>Get off my site! (And stop trying to access people\'s xmlrpc.php files.)', |
| <?php | |
| /** | |
| * This is a database connectivity script for WordPress. | |
| * It's designed to help troubleshot the dreaded "Error Establishing Database Connection" error. | |
| * | |
| * How does it work? It uses regular expressions to match the database settings in the wp-config.php | |
| * and then tests those settings. If there is an error thrown, the script interprets the error and | |
| * prints actionable information that can be used to fix the site, if at all possible. If the database | |
| * connection works, the script will run a REPAIR on all tables in the database, and print the results. |
| # BEGIN Secure MIME-types | |
| <FilesMatch "\.[Jj][Pp][Ee]?[Gg]$"> | |
| ForceType image/jpeg | |
| </FilesMatch> | |
| <FilesMatch "\.[Pp][Nn][Gg]$"> | |
| ForceType image/png | |
| </FilesMatch> | |
| <FilesMatch "\.[Gg][Ii][Ff]$"> | |
| ForceType image/gif | |
| </FilesMatch> |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/perl | |
| use 5.010; | |
| use Time::HiRes qw (sleep); | |
| sub rand_letter() { | |
| @letters=(A..Z,a..z," ",".",","); | |
| return $letters[rand @letters]; | |
| } | |
| my $final_form = "Hello world"; |
| function chrisdavidmiles_remove_version() {return '';} | |
| add_filter('the_generator', 'chrisdavidmiles_remove_version'); |
| RewriteEngine On | |
| RewriteCond %{SERVER_PORT} 80 | |
| RewriteCond %{HTTP_HOST} ^(www.)?example\.com$ | |
| RewriteRule ^(.*)$ "https\:\/\/example\.com\/$1" [R=301,L] |
| add_filter( 'send_email_change_email', '__return_false' ); |
| remove_filter('authenticate', 'wp_authenticate_username_password', 20, 3); |
| define('WP_SITEURL', $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST']); | |
| define('WP_HOME', $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST']); |