Bazı Wordpress eklentileri yazıyorum ve Wordpress'in POST ve GET verilerine sihirli alıntılar koymada sorun yaşıyorum.
Özellikle, wp-settings.php dosyasında (muhtemelen her yanıtta) çağrılan \ wp-include \ load.php dosyasındaki "wp_magic_quotes" işlevi. Bu işlev, PHP ayarlarında sihirli tırnak işaretlerini kapatsam bile verilere sihirli tırnak işaretleri ekler.
/**
* Add magic quotes to $_GET, $_POST, $_COOKIE, and $_SERVER.
*
* Also forces $_REQUEST to be $_GET + $_POST. If $_SERVER, $_COOKIE,
* or $_ENV are needed, use those superglobals directly.
*
* @access private
* @since 3.0.0
*/
function wp_magic_quotes() {
// If already slashed, strip.
if ( get_magic_quotes_gpc() ) {
$_GET = stripslashes_deep( $_GET );
$_POST = stripslashes_deep( $_POST );
$_COOKIE = stripslashes_deep( $_COOKIE );
}
// Escape with wpdb.
$_GET = add_magic_quotes( $_GET );
$_POST = add_magic_quotes( $_POST );
$_COOKIE = add_magic_quotes( $_COOKIE );
$_SERVER = add_magic_quotes( $_SERVER );
// Force REQUEST to be GET + POST.
$_REQUEST = array_merge( $_GET, $_POST );
}
Wp-settings.php içindeki wp_magic_quotes () çağrısını yorumlamak benim için güvenli mi? Yani, normal Wordpress kodunu olumsuz yönde etkileyecek ve / veya bazı istismar vektörlerini açacak mı? Öyleyse, WP kodunu değiştirmenin yanı sıra bunu yapmanın başka bir yolu var mı (bu yüzden her güncelleme olduğunda bununla uğraşmak zorunda değilim)?
wp_magic_quotes()
yürütüldüğünü söyleyebilir mi? Ben wp-core idameyi bulamadım.