/home/desid573/verdenaturopathy.com.au/wp-content/plugins/really-simple-ssl
NameSizeModeActions
assets/-0755rm
css/-0755rm
grid/-0755rm
img/-0755rm
includes/-0755rm
js/-0755rm
languages/-0755rm
testssl/-0755rm
class-admin.php1771130644editdlrm
class-cache.php17570644editdlrm
class-certificate.php77490644editdlrm
class-front-end.php44340644editdlrm
class-help.php14340644editdlrm
class-mixed-content-fixer.php57310644editdlrm
class-multisite.php452640644editdlrm
class-rsssl-wp-cli.php5740644editdlrm
class-server.php16000644editdlrm
class-site-health.php56870644editdlrm
class-url.php400644editdlrm
force-deactivate.txt35060644editdlrm
index.php340644editdlrm
multisite-cron.php12990644editdlrm
readme.txt303460644editdlrm
rlrsssl-really-simple-ssl.php70670644editdlrm
ssl-test-page.php18190644editdlrm
system-status.php44420644editdlrm
uninstall-num.php00644editdlrm
uninstall.php3540644editdlrm
Edit: /home/desid573/verdenaturopathy.com.au/wp-content/plugins/really-simple-ssl/system-status.php (4442B)
rsssl_certificate->is_valid() ) { echo "SSL certificate is valid\n"; } else { if ( RSSSL()->rsssl_certificate->detection_failed() ) { echo "Not able to detect certificate\n"; } else { echo "Invalid SSL certificate\n"; } } echo ( RSSSL()->really_simple_ssl->ssl_enabled ) ? "SSL is enabled\n\n" : "SSL is not yet enabled\n\n"; echo "Options\n"; if ( RSSSL()->really_simple_ssl->autoreplace_insecure_links ) { echo "* Mixed content fixer\n"; } if ( RSSSL()->really_simple_ssl->wp_redirect ) { echo "* WordPress redirect\n"; } if ( RSSSL()->really_simple_ssl->htaccess_redirect ) { echo "* htaccess redirect\n"; } if ( RSSSL()->really_simple_ssl->do_not_edit_htaccess ) { echo "* Stop editing the .htaccess file\n"; } if ( RSSSL()->really_simple_ssl->switch_mixed_content_fixer_hook ) { echo "* Use alternative method to fix mixed content\n"; } if ( RSSSL()->really_simple_ssl->dismiss_all_notices ) { echo "* Dismiss all Really Simple SSL notices\n"; } echo "\n"; echo "Server information\n"; echo "Server: " . RSSSL()->rsssl_server->get_server() . "\n"; echo "SSL Type: " . RSSSL()->really_simple_ssl->ssl_type . "\n"; if ( is_multisite() ) { echo "MULTISITE\n"; echo ( ! RSSSL()->rsssl_multisite->ssl_enabled_networkwide ) ? "SSL is being activated per site\n" : "SSL is activated network wide\n"; } do_action( "rsssl_system_status" ); echo RSSSL()->really_simple_ssl->debug_log; echo "\n\nConstants\n"; if ( defined( 'RSSSL_FORCE_ACTIVATE' ) ) { echo "RSSSL_FORCE_ACTIVATE defined\n"; } if ( defined( 'RSSSL_NO_FLUSH' ) ) { echo "RSSSL_NO_FLUSH defined"; } if ( defined( 'RSSSL_DISMISS_ACTIVATE_SSL_NOTICE' ) ) { echo "RSSSL_DISMISS_ACTIVATE_SSL_NOTICE defined\n"; } if ( defined( 'RLRSSSL_DO_NOT_EDIT_HTACCESS' ) ) { echo "RLRSSSL_DO_NOT_EDIT_HTACCESS defined\n"; } if ( defined( 'RSSSL_SAFE_MODE' ) ) { echo "RSSSL_SAFE_MODE defined\n"; } if ( defined( "RSSSL_SERVER_OVERRIDE" ) ) { echo "RSSSL_SERVER_OVERRIDE defined\n"; } if ( ! defined( 'RSSSL_FORCE_ACTIVATE' ) && ! defined( 'RSSSL_NO_FLUSH' ) && ! defined( 'RSSSL_DISMISS_ACTIVATE_SSL_NOTICE' ) && ! defined( 'RLRSSSL_DO_NOT_EDIT_HTACCESS' ) && ! defined( 'RSSSL_SAFE_MODE' ) && ! defined( "RSSSL_SERVER_OVERRIDE" ) ) { echo "No constants defined\n"; } $content = ob_get_clean(); if ( function_exists( 'mb_strlen' ) ) { $fsize = mb_strlen( $content, '8bit' ); } else { $fsize = strlen( $content ); } $file_name = 'really-simple-ssl-system-status.txt'; header( "Content-type: application/octet-stream" ); //direct downloaden header( "Content-Disposition: attachment; filename=\"" . $file_name . "\"" ); //open in browser //header("Content-Disposition: inline; filename=\"".$file_name."\""); header( "Content-length: $fsize" ); header( "Cache-Control: private", false ); // required for certain browsers header( "Pragma: public" ); // required header( "Expires: 0" ); header( "Cache-Control: must-revalidate, post-check=0, pre-check=0" ); header( "Content-Transfer-Encoding: binary" ); echo $content; } else { //should not be here, so redirect to home wp_redirect( home_url() ); exit; } function find_wordpress_base_path() { $dir = dirname(__FILE__); do { if( file_exists($dir."/wp-config.php") ) { if (file_exists($dir."/current")){ return $dir.'/current'; } else { return $dir; } } } while( $dir = realpath("$dir/..") ); return null; }