Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 854979 Details for
Bug 1056767
CVE-2014-0037 zarafa: unauthenticated denial of service flaw
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Relevant diff between 7.1.8beta1-42841 and 7.1.8beta2-43059
zcp-7.1.8-rdos.patch (text/plain), 1.33 KB, created by
Robert Scheck
on 2014-01-24 13:41:56 UTC
(
hide
)
Description:
Relevant diff between 7.1.8beta1-42841 and 7.1.8beta2-43059
Filename:
MIME Type:
Creator:
Robert Scheck
Created:
2014-01-24 13:41:56 UTC
Size:
1.33 KB
patch
obsolete
>diff -Naurbw zcp-7.1.8beta1-42841/provider/libserver/ECSession.cpp zcp-7.1.8beta2-43059/provider/libserver/ECSession.cpp >--- zcp-7.1.8beta1-42841/provider/libserver/ECSession.cpp 2013-10-09 15:00:43.000000000 +0200 >+++ zcp-7.1.8beta2-43059/provider/libserver/ECSession.cpp 2013-11-08 10:36:52.000000000 +0100 >@@ -865,6 +865,14 @@ > { > ECRESULT er = erSuccess; > >+ if (!lpszName) >+ { >+ // Commandment 2: Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end. >+ m_lpSessionManager->GetLogger()->Log(EC_LOGLEVEL_FATAL, "Invalid argument lpszName in call to ECAuthSession::ValidateUserLogon()"); >+ er = ZARAFA_E_INVALID_PARAMETER; >+ goto exit; >+ } >+ > // SYSTEM can't login with user/pass > if(stricmp(lpszName, ZARAFA_ACCOUNT_SYSTEM) == 0) { > er = ZARAFA_E_NO_ACCESS; >@@ -899,6 +907,14 @@ > char *ptr = NULL; > char *localAdminUsers = NULL; > >+ if (!lpszName) >+ { >+ // Commandment 2: Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end. >+ m_lpSessionManager->GetLogger()->Log(EC_LOGLEVEL_FATAL, "Invalid argument lpszName in call to ECAuthSession::ValidateUserSocket()"); >+ er = ZARAFA_E_INVALID_PARAMETER; >+ goto exit; >+ } >+ > p = m_lpSessionManager->GetConfig()->GetSetting("allow_local_users"); > if (p && !stricmp(p, "yes")) { > allowLocalUsers = true;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1056767
:
854977
|
854979
|
856182