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 856182 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]
upstream patch to correct the flaw
zarafa-CVE-2014-0037.patch (text/plain), 1.15 KB, created by
Vincent Danen
on 2014-01-27 18:28:23 UTC
(
hide
)
Description:
upstream patch to correct the flaw
Filename:
MIME Type:
Creator:
Vincent Danen
Created:
2014-01-27 18:28:23 UTC
Size:
1.15 KB
patch
obsolete
>Index: provider/libserver/ECSession.cpp >=================================================================== >diff -u -N -r41872 -r42919 >--- provider/libserver/ECSession.cpp (.../ECSession.cpp) (revision 41872) >+++ provider/libserver/ECSession.cpp (.../ECSession.cpp) (revision 42919) >@@ -846,6 +846,13 @@ > { > 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; >@@ -888,6 +895,12 @@ > char *localAdminUsers = NULL; > #endif > >+ if (!lpszName) >+ { >+ 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