removed $remoteip that the audit didn't like
This commit is contained in:
parent
819d25a74c
commit
c152f85b50
@ -201,13 +201,13 @@ class Controller
|
|||||||
if (($option = $this->_conf->getKey('header', 'traffic')) !== null) {
|
if (($option = $this->_conf->getKey('header', 'traffic')) !== null) {
|
||||||
$httpHeader = 'HTTP_' . $option;
|
$httpHeader = 'HTTP_' . $option;
|
||||||
if (array_key_exists($httpHeader, $_SERVER) && !empty($_SERVER[$httpHeader])) {
|
if (array_key_exists($httpHeader, $_SERVER) && !empty($_SERVER[$httpHeader])) {
|
||||||
$remoteip = $_SERVER[$httpHeader];
|
// compare source IP from web server with whitelist
|
||||||
|
if(!in_array($_SERVER[$httpHeader], $whitelist)) {
|
||||||
|
$this->_return_message(1, I18n::_('Your IP is not authorized to create pastes.'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!in_array($remoteip, $whitelist)) {
|
|
||||||
$this->_return_message(1, I18n::_('Your IP is not authorized to create pastes.'));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Ensure last paste from visitors IP address was more than configured amount of seconds ago.
|
// Ensure last paste from visitors IP address was more than configured amount of seconds ago.
|
||||||
TrafficLimiter::setConfiguration($this->_conf);
|
TrafficLimiter::setConfiguration($this->_conf);
|
||||||
|
Loading…
Reference in New Issue
Block a user