php suhosin 警报

发布于 2024-11-28 03:59:48 字数 292 浏览 0 评论 0原文

我用的是舒荷辛。我收到以下警报。

ALERT-SIMULATION - 尝试通过 GET 变量注册禁止的变量“_REQUEST”(攻击者
警报模拟 - 尝试通过 GET 变量注册禁止的变量“_REQUEST[option]”(攻击者
警报模拟 - 尝试通过 GET 变量注册禁止的变量“_REQUEST[Itemid]”(攻击者
警报模拟 - 尝试通过 GET 变量注册禁止的变量“GLOBALS”(攻击者

他们是真正的攻击者吗?如果不是,如何设置 suhosin 配置以忽略这些警报?

I use suhosin. I get the following alerts.

ALERT-SIMULATION - tried to register forbidden variable '_REQUEST' through GET variables (attacker
ALERT-SIMULATION - tried to register forbidden variable '_REQUEST[option]' through GET variables (attacker
ALERT-SIMULATION - tried to register forbidden variable '_REQUEST[Itemid]' through GET variables (attacker
ALERT-SIMULATION - tried to register forbidden variable 'GLOBALS' through GET variables (attacker

Are they real attackers? If not, how to set suhosin configuration to ignore these alert?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

奢华的一滴泪 2024-12-05 03:59:48

这些不一定是“攻击”,而是对您的站点进行测试/刺激,以确定他们(潜在的攻击者)是否可以通过启用 register_globals 来注入代码。

用于产生这些错误的 uri 如下所示。

http://www.example.com/index.php?_REQUEST=someValue
http://www.example.com/index.php?_REQUEST[option]=someValue
http://www.example.com/index.php?_REQUEST[ItemId]=someValue
http://www.example.com/index.php?GLOBALS=someValue

您是否将 register_globals 设置为 on

该 IP 可追踪到 ATL:http://www.ip-adress.com/ip_tracer/

Those are not necessarily "attacks," but rather tests/prodding of your site to determine if they (the potential attacker) can inject code though register_globals being enabled.

The uri's used to produce those errors are as follows

http://www.example.com/index.php?_REQUEST=someValue
http://www.example.com/index.php?_REQUEST[option]=someValue
http://www.example.com/index.php?_REQUEST[ItemId]=someValue
http://www.example.com/index.php?GLOBALS=someValue

Do you have register_globals set to on?

That IP traces to ATL: http://www.ip-adress.com/ip_tracer/

疯了 2024-12-05 03:59:48

反复出现此错误...向我的系统日志发送垃圾邮件

3 22:32:01 已编辑服务器名称 suhosin[16290]:警报模拟 -
包含文件名
('phar:///REDACTED/lib/cron.phar/Cron/CronExpression.php') 是一个
不允许的 URL(攻击者“127.0.0.1”,文件
'已编辑/lib/cron.phar',第 12 行)

...但是 register_globals 肯定是关闭的...那么问题是什么?

Getting this error repeatedly ... spamming my syslog

3 22:32:01 REDACTED SERVER NAME suhosin[16290]: ALERT-SIMULATION -
Include filename
('phar:///REDACTED/lib/cron.phar/Cron/CronExpression.php') is an
URL that is not allowed (attacker '127.0.0.1', file
'REDACTED/lib/cron.phar', line 12)

... but register_globals are definitely off ... so what's the issue?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文