• Hi! Does anybody know this folder? wp-includes/wpdata There are a lot of php files thant I don’t know with this kind of code:

    <?php

    $a = fopen(“ip.txt”, “a”);

    fwrite($a, getIP().”\n”);
    fclose($a);

    function getIP(){
    if( isset( $_SERVER[‘HTTP_X_FORWARDED_FOR’] )) $ip = $_SERVER[‘HTTP_X_FORWARDED_FOR’];
    else if( isset( $_SERVER [‘HTTP_VIA’] )) $ip = $_SERVER[‘HTTP_VIA’];
    else if( isset( $_SERVER [‘REMOTE_ADDR’] )) $ip = $_SERVER[‘REMOTE_ADDR’];
    else $ip = null ;
    return $ip;
    }

    ?>

    What do I have to do? Delete them or what?
    Thanks a lot!

    https://www.ads-software.com/plugins/wordfence/

Viewing 1 replies (of 1 total)
  • Hi Jotrobo,
    This folder isn’t included in the default WordPress installation, you can check the default WordPress files/folders on GitHub here.

    I think you need to get in contact with your web host about this folder and if they didn’t recognize it, then it’s highly recommended to delete it.

    Thanks.

Viewing 1 replies (of 1 total)
  • The topic ‘wp-includes/wpdata ??’ is closed to new replies.