| Server IP : 152.53.162.115 / Your IP : 216.73.217.85 Web Server : Apache/2 System : Linux host 6.12.0-55.40.1.el10_0.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Oct 21 05:54:51 EDT 2025 x86_64 User : pbshosting ( 1005) PHP Version : 8.3.30 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/pbshosting/domains/hengxinae.com/public_html/wp-content/plugins/wordfence/waf/ |
Upload File : |
<?php
/**
* A dummy WAF implementation that can be used if initialization of the actual WAF failures
*/
class wfDummyWaf extends wfWAF {
public function __construct() {
parent::__construct(new wfDummyWafRequest(), new wfDummyWafStorageEngine());
}
}
class wfDummyWafRequest implements wfWAFRequestInterface {
public function getBody() {
return null;
}
public function getRawBody() {
return null;
}
public function getMd5Body() {
return null;
}
public function getJsonBody() {
return null;
}
public function getQueryString() {
return null;
}
public function getMd5QueryString() {
return null;
}
public function getHeaders() {
return null;
}
public function getCookies() {
return null;
}
public function getFiles() {
return null;
}
public function getFileNames() {
return null;
}
public function getHost() {
return null;
}
public function getURI() {
return null;
}
public function setMetadata($metadata) {
}
public function getMetadata() {
return null;
}
public function getPath() {
return null;
}
public function getIP() {
return null;
}
public function getMethod() {
return null;
}
public function getProtocol() {
return null;
}
public function getAuth() {
return null;
}
public function getTimestamp() {
return null;
}
public function __toString() {
return '';
}
}
class wfDummyWafStorageEngine implements wfWAFStorageInterface {
public function hasPreviousAttackData($olderThan) {
return false;
}
public function hasNewerAttackData($newerThan) {
return false;
}
public function getAttackData() {
return null;
}
public function getAttackDataArray() {
return array();
}
public function getNewestAttackDataArray($newerThan) {
return array();
}
public function truncateAttackData() {
}
public function logAttack($failedRules, $failedParamKey, $failedParamValue, $request, $_ = null) {
}
public function blockIP($timestamp, $ip) {
}
public function isIPBlocked($ip) {
return false;
}
public function purgeIPBlocks($types = wfWAFStorageInterface::IP_BLOCKS_ALL) {
}
public function getConfig($key, $default = null, $category = '') {
if ($key === 'wafStatus')
return 'disabled';
return $default;
}
public function setConfig($key, $value, $category = '') {
}
public function unsetConfig($key, $category = '') {
}
public function uninstall() {
}
public function isInLearningMode() {
return false;
}
public function isDisabled() {
return true;
}
public function getRulesDSLCacheFile() {
return null;
}
public function isAttackDataFull() {
return false;
}
public function vacuum() {
}
public function getRules() {
return array();
}
public function setRules($rules) {
}
public function needsInitialRules() {
return false;
}
public function getDescription() {
return 'Dummy Storage Engine';
}
}