• Resolved astrogd

    (@astrogd)


    Hey guys,
    just wanted to ask if there is a possibility to download the life traffic files.
    Are there any logfiles being created and where can i find them?

    Need them to store the Data as there was a Brute-Force Attack on the Site and i need to save the IP-Adresses

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • @astrogd,

    There’s a way to extract blocked IPs from the database. Could that be what you’re looking for?

    Thread Starter astrogd

    (@astrogd)

    @yndmgo

    Sadly that is not what I’m looking for. I need the log Data from Life Traffic.
    Like a list of all Requests from the last 2 Weeks or so.

    @astrogd,

    These entries are not logged in a file; only in the database.

    If you want to see all traffic you’ll have to look into the “wfHits” table and craft an SQL query which includes “ctime” (column containing the timestamp in Epoch format); something like:

    SELECT INET6_NTOA(IP)
    FROM  wp_wfHits 
    WHERE ctime <1524257654

    You can also choose to include other columns in the query (the “URL”, for example)

    The Epoch timestamp I specified in the above example (1524257654) converts into “Friday 20 April 2018 20:54:14 (GMT)”

    Hi @astrogd

    Wordfence “Live Traffic” logs requests to your website for the number of rows defined in “Amount of Live Traffic data to store” option under (Tools > Live Traffic > Live Traffic Options). Your target database table is indeed “wp_wfHits” table, but this will be limited data. I suggest checking the server access log files, you can ask your hosting provider for these files.

    Thanks.

    Thread Starter astrogd

    (@astrogd)

    Hello guys,
    thank you for your help.

    Ill try getting in touch with my provider, thank you.

    Kind regards,
    AstroGD

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Life Traffic Logs’ is closed to new replies.