Rodney Harper

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: Multiple sites #1355

    I have one dedicated server and  one shared on godaddy with 10 or 12 sites..

    I just got back from Dallas and moved them to a new host while I was out there. They have security and will help with everything.  Although I wish I would have seen this post before I did. Your software is doing scans really fast now. Love it!

     

     

    in reply to: Multiple sites #1349

    I am running another scan on the main folder. It will take about 10 hours because of so many files, however let me know what I need to send you and I will.

    Thank you thank you thank you. I think you should get a medal for helping people like this.

    in reply to: Multiple sites #1348

    P.S they are also hacking my email and got me blacklisted 2 times so far. This is the most painful.

     

    in reply to: Multiple sites #1347

    Well it actually removed it from all the sites. 338 Threats. I did a victory dance and a sigh of relief only to see today all the sites have been breached again. Depression setting back in.

    Some of the sites my guy installed securi, Not sure if it is conflicting. The sites I installed yours, I removed the securi. But I do see yours is scanning securi as well :)

    I can see all my sites updated at like 3:45 am. but when you ope the folder you do not see anything, accept permissions opened on the config file to 0600. But it does not show it was edited, but I am sure that if I looked at the config file it has malware.

     

    Right now I cannot log into my main site again. I can fix the config file from a file I know that is not corrupt and scan it again.  I showed it isolated the malware, so I am confused. Tell me what I need to send you, or I can set you up to log into the main wordpress. What ever is easier.

    in reply to: Godaddy plug in error #1344

    If anyone can help me with this I would appreciate it.

    I ran this on my dedicated server and only came back with one threat (unlike the 338 on my shared server), which is on a godaddy plug in.

    The code is as follows:

    <?php

     

    /**

    * Copyright 2013 Go Daddy Operating Company, LLC. All Rights Reserved.

    */

     

    // Make sure it’s wordpress

    if ( !defined( ‘ABSPATH’ ) )

    die( ‘Forbidden’ );

     

    /**

    * Class GD_System_Plugin_404

    * Stop infinite 404 loops

    * @version 1.0

    * @author Kurt Payne <kpayne@godaddy.com>

    */

    class GD_System_Plugin_404 {

     

    /**

    * Constructor

    */

    public function __construct() {

    add_action( ‘wp’, array( $this, ‘stop_infinite_404_loops’ ) );

    }

     

    /**

    * Some plugins / themes fetch local resources over http.  When the resources aren’t there,

    * WordPress returns a 404 page, which causes the theme / plugin to fire again and try to

    * fetch the same missing resource and creates an infinite 404 loop.  This intercedes and

    * stops that behavior.  Pages that end with .htm and .html will still render correctly.

    * @return void

    */

    public function stop_infinite_404_loops() {

    global $wp_query;

    if ( is_404() && isset( $wp_query->query['pagename'] ) && preg_match( ‘/^[^?&=]+\.(css|gif|jpeg|jpg|js|png)(\?|&)?(.*)?$/i’, $wp_query->query['pagename'] ) ) {

    status_header( 404 );

     

    switch ( strtolower( pathinfo( $wp_query->query['pagename'], PATHINFO_EXTENSION ) ) ) {

    case ‘gif’ :

    gd_system_header( ‘Content-type: image/gif’ );

    include( GD_SYSTEM_PLUGIN_DIR . ‘/images/404.gif’ );

    break;

    case ‘jpg’ :

    case ‘jpeg’ :

    gd_system_header( ‘Content-type: image/jpeg’ );

    include( GD_SYSTEM_PLUGIN_DIR . ‘/images/404.jpg’ );

    break;

    case ‘png’ :

    gd_system_header( ‘Content-type: image/png’ );

    include( GD_SYSTEM_PLUGIN_DIR . ‘/images/404.png’ );

    break;

    case ‘css’ :

    gd_system_header( ‘Content-type: text/css’ );

    echo “\n”;

    break;

    case ‘js’ :

    gd_system_header( ‘Content-type: application/javascript’ );

    echo “\n”;

    break;

    }

     

    add_filter( ‘wp_die_handler’, ‘gd_system_die_handler’, 10, 1 );

    wp_die();

    }

    }

    }
    The code it does not like is:  include( GD_SYSTEM_PLUGIN_DIR . ‘/images/404.gif’ );

    I also noticed on webmasters google is redirecting my site back to http, when in fact it is https.
    If I am not mistaken webmasters had a spot to tell google how to read your domain. www. or no www. if I go to it with www. the https shows up.
    on chrome, it stays www. and until you hit a page it does not show https. firefix it goes straight to https no matter what.

    so should I fix it with the repair button?

    in reply to: Multiple sites #1343

    P.S another question is can I repair the files in the middle of a scan. I noticed it says automatically fix selected files now and also has a pause button. I am well over 350 threats.

    in reply to: Multiple sites #1342

    Just wanted to say THANK YOU! I ran your plug in behind sucuri and WOW!

    My question is , I know this is for wordpress, and I have about 10 sites all on one godaddy shared server. I ran your plugin on my main wordpress and I see it is running all my files :) how sweet is that? I do not even mind one bit for donating twice and will be a continuing to give for the years to come.

     

    My question is will it work on a file that is not wordpress? one of my sites is a Xenforo forum, that also does run on plug ins ( Hint you might want market to them if it works).

    So can I delete or automatically fix the other files from xenforo? or is this going to cause a problem.

    I do have back ups for the forum , but it takes all day to back it up and 4 hours to reinstall. Really big file. So far it has found approx 250 threats scanning my sites and at 82% at 175 minutes. VERY Impressive!

     

    Thanks again,

     

    Rod Harper

     

Viewing 7 posts - 1 through 7 (of 7 total)