уязвимости apache (как решить ?)

Обсуждение настройки и работы сервисов, резервирования, сетевых настроек и вопросов безопасности ОС.

Модераторы: SLEDopit, Модераторы разделов

Аватара пользователя
FoXKa
Сообщения: 214
ОС: ОкнаXP

уязвимости apache

Сообщение FoXKa »

Добрый день дорогой АЛЛ.
в общем суть проблемы такова - у нас проведено сканирование сети и на моём сервере обноружены 2 уязвимости апача:
1)Web Server HTTP Trace/Track Method Support Cross-Site Tracing Vulnerability
Port: 80; Protocol: tcp

2)Apache Partial HTTP Request Denial of Service Vulnerability

сервер на Linux RHEL 4.2
как лечить ?
за ранее спасибо за ответ.

p.s.
вот интересный момент но я не знаю куда именно и что делать?
Your webserver supports the TRACE and/or TRACK methods. TRACE and TRACK
are HTTP methods which are used to debug web server connections.

It has been shown that servers supporting this method are subject
to cross-site-scripting attacks, dubbed XST for
"Cross-Site-Tracing", when used in conjunction with
various weaknesses in browsers.

An attacker may use this flaw to trick your
legitimate web users to give him their
credentials.

Solution: Disable these methods.


If you are using Apache, add the following lines for each virtual
host in your configuration file :

Код: Выделить всё

RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]


If you are using Microsoft IIS, use the URLScan tool to deny HTTP TRACE
requests or to permit only the methods needed to meet site requirements
and policy.

If you are using Sun ONE Web Server releases 6.0 SP2 and later, add the
following to the default object section in obj.conf:

Код: Выделить всё

<Client method="TRACE">
AuthTrans fn="set-variable"
remove-headers="transfer-encoding"
set-headers="content-length: 34377-1"
error="501"
</Client>


If you are using Sun ONE Web Server releases 6.0 SP2 or below, compile
the NSAPI plugin located at:
http://sunsolve.sun.com/pub-cgi/retrieve.p...fsalert%2F50603


See http://www.whitehatsec.com/press_releases/WH-PR-20030120.pdf
http://archives.neohapsis.com/archives/vul...03-q1/0035.html
http://sunsolve.sun.com/pub-cgi/retrieve.p...fsalert%2F50603
http://www.kb.cert.org/vuls/id/867593

Risk factor : Medium
Спасибо сказали:
Аватара пользователя
Frank
Сообщения: 1059
ОС: Ubuntu, Debian

Re: уязвимости apache

Сообщение Frank »

Although the particular attack highlighted made use of the TRACE functionality to grab authentication details, this isn't a vulnerability in TRACE, or in the Apache web server. The same browser functionality that permits the published attack can be used for different attacks even if TRACE is disabled on the remote web server. For example an attacker could create a carefully crafted page that when visited submits a hidden request to some arbitrary site through your browser, grabs the result and passes it to the attacker.

так что фигня это всё...
Изображение
Спасибо сказали:
Аватара пользователя
FoXKa
Сообщения: 214
ОС: ОкнаXP

Re: уязвимости apache

Сообщение FoXKa »

Frank писал(а):
08.10.2009 16:54
так что фигня это всё...

фигня не фигня, а в списке уязвимость она висит у меня и для банковской сферы это не приемлемо....
+ там ещё есть вторая уязвимость... :crazy:
Спасибо сказали:
Аватара пользователя
Frank
Сообщения: 1059
ОС: Ubuntu, Debian

Re: уязвимости apache

Сообщение Frank »

ещё раз цитирую, attack can be used for different attacks even if TRACE is disabled
Отключение этих методов никого не спасает. Уязвимость касается браузера.
Изображение
Спасибо сказали: