W3C Introduction to Web Components - explainer/overview of the technologies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function | subject filter | content filter | disable with | pluggable | can disable | type | ms-only | notes | |
---|---|---|---|---|---|---|---|---|---|
WP_Automatic_Updater::send_email | auto_core_update_email | auto_core_update_email | filter: auto_core_update_send_email | yes | network admin | called from 4 places | |||
WP_Automatic_Updater::send_debug_email | automatic_updates_debug_email | automatic_updates_debug_email | filter: send_update_notification_email, filter: automatic_updates_send_debug_email | yes | network admin | only sent in dev versions of WP | |||
update_option_new_admin_email | new_admin_email_content | remove action: add_option_new_admin_email, remove action: update_option_new_admin_email | yes | site admin | sent when site admin email address is changed | ||||
send_confirmation_on_profile_email | new_user_email_content | remove action: personal_options_update | yes | user | sent when user email address is changed | ||||
wp_new_blog_notification | pluggable | yes | yes | user | sent when WP is installed or a site is added | ||||
file: wp-admin/ms-delete-site.php | delete_site_email_content | NO | site admin | yes | sen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Start with PHP CLI (php pwn.php) | |
set_time_limit(0); | |
// Adjust this :) | |
define('SLEEP_TIME', '4'); | |
define('PAGE_TIME', 4); | |
define('URL', 'http://localhost/Phase/'); | |
echo('attacking ' . URL . PHP_EOL); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.com | |
* | |
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
*/ | |
$args = array( |