Applying Trunk revision 7562 to the 0.6.0 stable branch
Added a Catch(InvalidOperationException) to BaseHttpServer.HandleRequest(). Which is thrown due to errors in the XML deserializing. Without this catch is it easy to bring down any of the opensim servers on purpose by just sending corrupt xml to them.0.6.0-stable
parent
a2c55d7fdb
commit
4295c125aa
|
@ -470,6 +470,11 @@ namespace OpenSim.Framework.Servers
|
|||
{
|
||||
m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw {0}", e);
|
||||
}
|
||||
catch (InvalidOperationException e)
|
||||
{
|
||||
m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw {0}", e);
|
||||
SendHTML500(response);
|
||||
}
|
||||
}
|
||||
|
||||
private bool TryGetStreamHandler(string handlerKey, out IRequestHandler streamHandler)
|
||||
|
|
Loading…
Reference in New Issue