idx
int64
project
string
commit_id
string
project_url
string
commit_url
string
commit_message
string
target
int64
func
string
func_hash
float64
file_name
string
file_hash
float64
cwe
list
cve
string
cve_desc
string
nvd_url
string
517,692
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
ParseNodePtr Parser::CreateNameNode(IdentPtr pid,charcount_t ichMin,charcount_t ichLim) { ParseNodePtr pnode = CreateNodeT<knopName>(ichMin,ichLim); pnode->sxPid.pid = pid; pnode->sxPid.sym=NULL; pnode->sxPid.symRef=NULL; return pnode; }
156,159,729,967,922,340,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,693
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
LPCOLESTR Parser::AppendNameHints(LPCOLESTR leftStr, uint32 leftLen, LPCOLESTR rightStr, uint32 rightLen, uint32 *pNameLength, uint32 *pShortNameOffset, bool ignoreAddDotWithSpace, bool wrapInBrackets) { Assert(rightStr != nullptr); Assert(leftLen != 0 || wrapInBrackets); Assert(rightLen != 0 || wrapInBrac...
262,905,574,403,082,400,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,694
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
void Parser::IdentifierExpectedError(const Token& token) { Assert(token.tk != tkID); HRESULT hr; if (token.IsReservedWord()) { if (token.IsKeyword()) { hr = ERRKeywordNotId; } else { Assert(token.IsFutureReservedWord(true)); if...
124,498,232,433,080,580,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,695
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
void Parser::ParseDestructuredLiteralWithScopeSave(tokens declarationType, bool isDecl, bool topLevel, DestructuringInitializerContext initializerContext/* = DIC_None*/, bool allowIn /*= true*/) { // We are going to parse the text again to validate the current grammar as Destructuring. Saving some s...
133,496,276,489,614,800,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,696
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
bool Parser::DoParallelParse(ParseNodePtr pnodeFnc) const { #if ENABLE_BACKGROUND_PARSING if (!PHASE_ON_RAW(Js::ParallelParsePhase, m_sourceContextInfo->sourceContextId, pnodeFnc->sxFnc.functionId)) { return false; } BackgroundParser *bgp = m_scriptContext->GetBackgroundParser(); return bgp...
143,668,440,658,563,550,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,697
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
WCHAR * Parser::AllocateStringOfLength(ULONG length) { Assert(length > 0); ULONG totalBytes; if (ULongMult(length, sizeof(OLECHAR), &totalBytes) != S_OK) { Error(ERRnoMemory); } WCHAR* finalName = (WCHAR*)m_phtbl->GetAllocator()->Alloc(totalBytes); if (finalName == nullptr) { ...
312,807,223,745,175,500,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,698
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
void Parser::RestoreStateFrom(ParserState *state) { Assert(state != nullptr); Assert(state->m_currentBlockInfo == m_currentBlockInfo); m_funcInArray = state->m_funcInArraySave; m_funcInArrayDepth = state->m_funcInArrayDepthSave; *m_pnestedCount = state->m_nestedCountSave; m_pCurrentAstSize = st...
116,843,730,900,641,840,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,699
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
Parser::StaticCreateBlockNode(ArenaAllocator* alloc, charcount_t ichMin , charcount_t ichLim, int blockId, PnodeBlockType blockType) { ParseNodePtr pnode = StaticCreateNodeT<knopBlock>(alloc, ichMin, ichLim); InitBlockNode(pnode, blockId, blockType); return pnode; }
121,908,958,180,672,340,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,700
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
void Parser::AddToNodeListEscapedUse(ParseNode ** ppnodeList, ParseNode *** pppnodeLast, ParseNode * pnodeAdd) { AddToNodeList(ppnodeList, pppnodeLast, pnodeAdd); pnodeAdd->SetIsInList(); }
121,809,567,014,735,760,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,701
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
ModuleImportOrExportEntryList* Parser::GetModuleStarExportEntryList() { return m_currentNodeProg->sxModule.starExportEntries; }
192,767,423,110,036,300,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,702
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
ParseNodePtr Parser::ParseExpr(int oplMin, BOOL *pfCanAssign, BOOL fAllowIn, BOOL fAllowEllipsis, LPCOLESTR pNameHint, uint32 *pHintLength, uint32 *pShortNameOffset, _Inout_opt_ IdentToken* pToken, bool fUnaryOrParen, _Inout_opt_ bool* pfLikelyPattern, _Inout_opt_ charcount_t *pl...
48,777,731,725,378,870,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,703
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
ParseNodePtr Parser::CreateTriNode(OpCode nop, ParseNodePtr pnode1, ParseNodePtr pnode2, ParseNodePtr pnode3, charcount_t ichMin,charcount_t ichLim) { Assert(!this->m_deferringAST); DebugOnly(VerifyNodeSize(nop, kcbPnTri)); ParseNodePtr p...
114,804,183,589,160,560,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,704
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
void Parser::UpdateCurrentNodeFunc(ParseNodePtr pnodeFnc, bool fLambda) { if (buildAST) { // Make this the current function and start its sub-function list. m_currentNodeFunc = pnodeFnc; Assert(m_currentNodeDeferredFunc == nullptr); if (!fLambda) { m_current...
225,279,865,729,931,900,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,705
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
ParseNode* Parser::GetFunctionBlock() { Assert(m_currentBlockInfo != nullptr); return m_currentBlockInfo->pBlockInfoFunction->pnodeBlock; }
154,011,615,813,537,070,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,706
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
void Parser::PushScope(Scope *scope) { Assert(scope); scope->SetEnclosingScope(m_currentScope); m_currentScope = scope; }
326,264,594,313,398,980,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
517,707
ChakraCore
402f3d967c0a905ec5b9ca9c240783d3f2c15724
https://github.com/Microsoft/ChakraCore
https://github.com/Microsoft/ChakraCore/commit/402f3d967c0a905ec5b9ca9c240783d3f2c15724
[CVE-2017-0028] Fix binding of 'async' identifier in the presence of async arrow function.
0
HRESULT Parser::ParseSourceWithOffset(__out ParseNodePtr* parseTree, LPCUTF8 pSrc, size_t offset, size_t cbLength, charcount_t cchOffset, bool isCesu8, ULONG grfscr, CompileScriptException *pse, Js::LocalFunctionId * nextFunctionId, ULONG lineNumber, SourceContextInfo * sourceContextInfo, Js::ParseableF...
68,573,827,710,433,550,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-0028
A remote code execution vulnerability exists when Microsoft scripting engine improperly accesses objects in memory. The vulnerability could corrupt memory in a way that enables an attacker to execute arbitrary code in the context of the current user. An attacker who successfully exploited the vulnerability could gain t...
https://nvd.nist.gov/vuln/detail/CVE-2017-0028
518,302
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::CompareSignature(bool bQuiet=false) { CString strTmp; CString strHashOut; CString locationStr; unsigned ind; bool bCurXsw = false; bool bCurXmm = false; bool bCurXmkr = false; bool bCurXextrasw = false; // EXIF Extra fields match software indicator bool bCurXcomsw = false; // E...
268,885,051,427,359,550,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,303
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned long CjfifDecode::GetPosEmbedStart() { return m_nPosEmbedStart; }
95,334,335,616,332,860,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,304
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::GetDecodeSummary(CString &strHash,CString &strHashRot,CString &strImgExifMake,CString &strImgExifModel, CString &strImgQualExif,CString &strSoftware,teDbAdd &eDbReqSuggest) { strHash = m_strHash; strHashRot = m_strHashRot; strImgExifMake = m_strImgExifMake; strImgExifModel = m_strImgE...
196,309,900,848,713,550,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,305
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
BYTE CjfifDecode::Buf(unsigned long nOffset,bool bClean=false) { // Buffer can be redirected to internal array for AVI DHT // tables, so check for it here. if (m_bBufFakeDHT) { return m_abMJPGDHTSeg[nOffset]; } else { return m_pWBuf->Buf(nOffset,bClean); } }
37,177,479,500,934,110,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,306
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::ExportJpegPrepare(CString strFileIn,bool bForceSoi,bool bForceEoi,bool bIgnoreEoi) { // Extract from current file // [m_nPosEmbedStart ... m_nPosEmbedEnd] // If state is valid (i.e. file opened) CString strTmp = _T(""); m_pLog->AddLine(_T("")); m_pLog->AddLineHdr(_T("*** Exporting ...
39,145,619,686,191,753,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,307
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::GetAviMode(bool &bIsAvi,bool &bIsMjpeg) { bIsAvi = m_bAvi; bIsMjpeg = m_bAviMjpeg; }
164,234,787,579,154,360,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,308
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::SetStatusText(CString strText) { // Make sure that we have been connected to the status // bar of the main window first! Note that it is jpegsnoopDoc // that sets this variable. if (m_pStatBar) { m_pStatBar->SetPaneText(0,strText); } }
315,232,483,144,152,700,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,309
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
CString CjfifDecode::PrintAsHexUC(unsigned char* anBytes,unsigned nCount) { CString strVal; CString strFull; strFull = _T("0x["); unsigned nMaxDisplay = MAX_anValues; bool bExceedMaxDisplay; bExceedMaxDisplay = (nCount > nMaxDisplay); for (unsigned nInd=0;nInd<nCount;nInd++) { if (nInd < nMaxDisplay...
201,258,917,045,547,100,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,310
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
CString CjfifDecode::PrintAsHex8(unsigned* anBytes,unsigned nCount) { CString strVal; CString strFull; unsigned nMaxDisplay = MAX_anValues; bool bExceedMaxDisplay; strFull = _T("0x["); bExceedMaxDisplay = (nCount > nMaxDisplay); for (unsigned nInd=0;nInd<nCount;nInd++) { if (nInd < nMaxDisplay)...
92,305,379,081,910,970,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,311
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::UnByteSwap4(unsigned nVal,unsigned &nByte0,unsigned &nByte1,unsigned &nByte2,unsigned &nByte3) { if (m_nImgExifEndian == 0) { // Little Endian nByte3 = (nVal & 0xFF000000) >> 24; nByte2 = (nVal & 0x00FF0000) >> 16; nByte1 = (nVal & 0x0000FF00) >> 8; nByte0 = (nVal & 0x000000FF); } ...
27,737,921,782,360,923,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,312
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
CStr2 CjfifDecode::LookupMakerCanonTag(unsigned nMainTag,unsigned nSubTag,unsigned nVal) { CString strTmp; CStr2 sRetVal; sRetVal.strTag = _T("???"); sRetVal.bUnknown = false; // Set to true in default clauses sRetVal.strVal.Format(_T("%u"),nVal); // Provide default value unsigned nValHi,nValLo; ...
65,893,974,174,444,790,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,313
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::GetDqtQuantStd(unsigned nInd) { if (nInd < MAX_DQT_COEFF) { return glb_anStdQuantLum[nInd]; } else { #ifdef DEBUG_LOG CString strTmp; CString strDebug; strTmp.Format(_T("GetDqtQuantStd() with nInd out of range. nInd=[%u]"),nInd); strDebug.Format(_T("## File=[%-100s] Block=[%-1...
266,721,929,679,490,620,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,314
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
CString CjfifDecode::LookupExifTag(CString strSect,unsigned nTag,bool &bUnknown) { CString strTmp; bUnknown = false; if (strSect == _T("IFD0")) { switch(nTag) { case 0x010E: return _T("ImageDescription");break; // ascii string Describes image case 0x010F: return _T("Make");break; // ascii st...
205,083,528,590,325,950,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,315
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::DecodeErrCheck(bool bRet) { if (!bRet) { if (m_pAppConfig->bInteractive) { if (AfxMessageBox(_T("Do you want to continue decoding?"),MB_YESNO|MB_ICONQUESTION)== IDNO) { m_bStateAbort = true; } } } }
329,448,553,658,027,640,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,316
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
CjfifDecode::CjfifDecode(CDocLog* pLog,CwindowBuf* pWBuf,CimgDecode* pImgDec) { // Ideally this would be passed by constructor, but simply access // directly for now. CJPEGsnoopApp* pApp; pApp = (CJPEGsnoopApp*)AfxGetApp(); m_pAppConfig = pApp->m_pAppConfig; ASSERT(m_pAppConfig); if (DEBUG_EN) m_pAppC...
238,793,470,843,762,550,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,317
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::GetDqtZigZagIndex(unsigned nInd,bool bZigZag) { if (nInd < MAX_DQT_COEFF) { if (bZigZag) { return nInd; } else { return glb_anZigZag[nInd]; } } else { #ifdef DEBUG_LOG CString strTmp; CString strDebug; strTmp.Format(_T("GetDqtZigZagIndex() with nInd out of range. nI...
270,678,086,217,307,900,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,318
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::ReadSwap4(unsigned nPos) { return ByteSwap4(Buf(nPos),Buf(nPos+1),Buf(nPos+2),Buf(nPos+3)); }
232,218,977,366,485,500,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,319
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::DecodeMarker() { TCHAR acIdentifier[MAX_IDENTIFIER]; CString strTmp; CString strFull; // Used for concatenation unsigned nLength; // General purpose unsigned nTmpVal; unsigned nCode; unsigned long nPosEnd; unsigned long nPosSaved; // General-purpose saved positio...
124,451,953,334,289,280,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,320
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
CString CjfifDecode::DecodeIccDateTime(unsigned anVal[3]) { CString strDate; unsigned short anParts[6]; anParts[0] = (anVal[2] & 0xFFFF0000) >> 16; // Year anParts[1] = (anVal[2] & 0x0000FFFF); // Mon anParts[2] = (anVal[1] & 0xFFFF0000) >> 16; // Day anParts[3] = (anVal[1] & 0x0000FFFF); // Hour a...
228,656,048,473,548,520,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,321
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::ClearDQT() { for (unsigned nTblInd=0;nTblInd<MAX_DQT_DEST_ID;nTblInd++) { for (unsigned nCoeffInd=0;nCoeffInd<MAX_DQT_COEFF;nCoeffInd++) { m_anImgDqtTbl[nTblInd][nCoeffInd] = 0; m_anImgThumbDqt[nTblInd][nCoeffInd] = 0; } m_adImgDqtQual[nTblInd] = 0; m_abImgDqtSet[nTblInd] =...
70,893,120,374,965,090,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,322
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::PrepareSignatureThumb() { // Generate m_strHashThumb PrepareSignatureThumbSingle(false); // Generate m_strHashThumbRot PrepareSignatureThumbSingle(true); }
106,321,674,963,215,900,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,323
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
CjfifDecode::~CjfifDecode() { // Free the Photoshop decoder if (m_pPsDec) { delete m_pPsDec; m_pPsDec = NULL; } #ifdef SUPPORT_DICOM // Free the DICOM decoder if (m_pDecDicom) { delete m_pDecDicom; m_pDecDicom = NULL; } #endif }
212,861,399,903,167,440,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,324
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
CString CjfifDecode::PrintAsHex32(unsigned* anWords,unsigned nCount) { CString strVal; CString strFull; strFull = _T("0x["); unsigned nMaxDisplay = MAX_anValues/4; // Reduce number of words to display since each is 32b not 8b bool bExceedMaxDisplay; bExceedMaxDisplay = (nCount > nMaxDisplay); for (unsign...
112,431,136,251,238,870,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,325
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::PrepareSignatureSingle(bool bRotate) { CStringA strTmp; CStringA strSet; CStringA strHashIn; unsigned char pHashIn[2000]; CStringA strDqt; MD5_CTX sMd5; unsigned nLenHashIn; unsigned nInd; ASSERT(m_eImgLandscape!=ENUM_LANDSCAPE_UNSET); // --------------------...
47,554,334,473,294,130,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,326
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::DecodeIccHeader(unsigned nPos) { CString strTmp,strTmp1; // Profile header unsigned nProfSz; unsigned nPrefCmmType; unsigned nProfVer; unsigned nProfDevClass; unsigned nDataColorSpace; unsigned nPcs; unsigned anDateTimeCreated[3]; unsigned nProfFileSig; unsigned nPrimPlatS...
318,064,394,335,325,980,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,327
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::ImgSrcChanged() { m_pImgSrcDirty = true; }
299,644,257,696,952,500,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,328
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::DecodeApp2Flashpix() { CString strTmp; unsigned nFpxVer; unsigned nFpxSegType; unsigned nFpxInteropCnt; unsigned nFpxEntitySz; unsigned nFpxDefault; bool bFpxStorage; CString strFpxStorageClsStr; unsigned nFpxStIndexCont; unsigned nFpxStOffset; unsigned nFpxStWByte...
305,499,521,751,142,400,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,329
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::DecodeEmbeddedThumb() { CString strTmp; CString strMarker; unsigned nPosSaved; unsigned nPosSaved_sof; unsigned nPosEnd; bool bDone; unsigned nCode; bool bRet; CString strFull; unsigned nDqtPrecision_Pq; unsigned nDqtQuantDestId_Tq; unsigned nImgPrecision; unsigned nL...
75,158,464,155,585,200,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,330
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::DecodeValGPS(unsigned nPos,CString &strCoord) { float fCoord1,fCoord2,fCoord3; bool bRet; bRet = true; if (bRet) { bRet = DecodeValRational(nPos,fCoord1); nPos += 8; } if (bRet) { bRet = DecodeValRational(nPos,fCoord2); nPos += 8; } if (bRet) { bRet = DecodeValRational(nPos,fCoord3); ...
161,906,073,428,922,600,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,331
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::PrepareSignature() { // Set m_strHash PrepareSignatureSingle(false); // Set m_strHashRot PrepareSignatureSingle(true); }
15,785,278,478,685,078,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,332
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::ByteSwap4(unsigned nByte0,unsigned nByte1, unsigned nByte2, unsigned nByte3) { unsigned nVal; if (m_nImgExifEndian == 0) { // Little endian, byte swap required nVal = (nByte3<<24) + (nByte2<<16) + (nByte1<<8) + nByte0; } else { // Big endian, no swap required nVal = (nByte0<<2...
275,930,206,073,565,200,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,333
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::ReadBe4(unsigned nPos) { // Big endian, no swap required return (Buf(nPos)<<24) + (Buf(nPos+1)<<16) + (Buf(nPos+2)<<8) + Buf(nPos+3); }
317,078,634,966,404,550,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,334
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::ExportJpegDoRange(CString strFileIn, CString strFileOut, unsigned long nStart, unsigned long nEnd) { CFile* pFileOutput; CString strTmp = _T(""); strTmp.Format(_T(" Exporting range to: [%s]"),(LPCTSTR)strFileOut); m_pLog->AddLine(strTmp); if (strFileIn == strFileOut) { strT...
147,023,861,373,572,950,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,335
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::DecodeApp13Ps() { // Photoshop APP13 marker definition doesn't appear to have a // well-defined length, so I will read until I encounter a // non-"8BIM" entry, then we reset the position counter // and move on to the next marker. // FIXME: This does not appear to be very robust CS...
285,351,377,232,631,000,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,336
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::Reset() { // File handling m_nPos = 0; m_nPosSos = 0; m_nPosEoi = 0; m_nPosEmbedStart = 0; m_nPosEmbedEnd = 0; m_nPosFileEnd = 0; // SOS / SOF handling m_nSofNumLines_Y = 0; m_nSofSampsPerLine_X = 0; m_nSofNumComps_Nf = 0; // Quantization tables ClearDQT(); ...
218,553,450,455,849,270,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,337
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::ExpectMarkerEnd(unsigned long nMarkerStart,unsigned nMarkerLen) { CString strTmp; unsigned long nMarkerEnd = nMarkerStart + nMarkerLen; unsigned long nMarkerExtra = nMarkerEnd - m_nPos; if (m_nPos < nMarkerEnd) { // The length indicates that there is more data than we processed strTmp...
2,680,638,861,032,718,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,338
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::GetMarkerName(unsigned nCode,CString &markerStr) { bool bDone = false; bool bFound = false; unsigned nInd=0; while (!bDone) { if (m_pMarkerNames[nInd].nCode==0) { bDone = true; } else if (m_pMarkerNames[nInd].nCode==nCode) { bDone = true; bFound = true; markerStr =...
301,068,566,964,159,880,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,339
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::PrepareSignatureThumbSingle(bool bRotate) { CStringA strTmp; CStringA strSet; CStringA strHashIn; unsigned char pHashIn[2000]; CStringA strDqt; MD5_CTX sMd5; unsigned nLenHashIn; unsigned nInd; // ----------------------------------------------------------- // C...
29,363,139,673,369,010,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,340
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::ExportJpegDo(CString strFileIn, CString strFileOut, unsigned long nFileLen, bool bOverlayEn,bool bDhtAviInsert,bool bForceSoi,bool bForceEoi) { CFile* pFileOutput; CString strTmp = _T(""); strTmp.Format(_T(" Exporting to: [%s]"),(LPCTSTR)strFileOut); m_pLog->AddLine(strTmp); i...
281,810,965,422,454,100,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,341
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::GenLookupHuffMask() { unsigned int mask; for (unsigned len=0;len<32;len++) { mask = (1 << (len))-1; mask <<= 32-len; m_anMaskLookup[len] = mask; } }
315,395,872,619,893,300,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,342
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::ReadSwap2(unsigned nPos) { return ByteSwap2(Buf(nPos+0),Buf(nPos+1)); }
257,393,170,037,152,500,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,343
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::DbgAddLine(LPCTSTR strLine) { if (m_bVerbose) { m_pLog->AddLine(strLine); } }
200,874,755,721,167,000,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,344
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::DecodeAvi() { CString strTmp; unsigned nPosSaved; m_bAvi = false; m_bAviMjpeg = false; // Perhaps start from file position 0? nPosSaved = m_nPos; // Start from file position 0 m_nPos = 0; bool bSwap = true; CString strRiff; unsigned nRiffLen; CString strForm; ...
331,039,288,925,908,900,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,345
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::SetAviMode(bool bIsAvi,bool bIsMjpeg) { m_bAvi = bIsAvi; m_bAviMjpeg = bIsMjpeg; }
118,920,502,928,369,660,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,346
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::PrepareSendSubmit(CString strQual,teSource eUserSource,CString strUserSoftware,CString strUserNotes) { // Generate the DQT arrays suitable for posting CString strTmp1; CString asDqt[4]; unsigned nMatrixInd; ASSERT(m_strHash != _T("NONE")); ASSERT(m_eImgLandscape!=ENUM_LANDSCAPE_UNSET)...
339,437,585,282,772,800,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,347
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::OutputSpecial() { CString strTmp; CString strFull; ASSERT(m_eImgLandscape!=ENUM_LANDSCAPE_UNSET); // This mode of operation is currently only used // to import the local signature database into a MySQL database // backend. It simply reports the MySQL commands which can be input // i...
326,995,780,107,225,960,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,348
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::ByteSwap2(unsigned nByte0,unsigned nByte1) { unsigned nVal; if (m_nImgExifEndian == 0) { // Little endian, byte swap required nVal = (nByte1<<8) + nByte0; } else { // Big endian, no swap required nVal = (nByte0<<8) + nByte1; } return nVal; }
256,276,989,792,237,460,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,349
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::DecodeValRational(unsigned nPos,float &nVal) { int nValNumer; int nValDenom; nVal = 0; nValNumer = ByteSwap4(Buf(nPos+0),Buf(nPos+1),Buf(nPos+2),Buf(nPos+3)); nValDenom = ByteSwap4(Buf(nPos+4),Buf(nPos+5),Buf(nPos+6),Buf(nPos+7)); if (nValDenom == 0) { // Divide by zero! return ...
75,118,814,840,092,790,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,350
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::DecodeApp2IccProfile(unsigned nLen) { CString strTmp; unsigned nMarkerSeqNum; // Byte unsigned nNumMarkers; // Byte unsigned nPayloadLen; // Len of this ICC marker payload unsigned nMarkerPosStart; nMarkerSeqNum = Buf(m_nPos++); nNumMarkers = Buf(m_nPos++); nPayloadLen = nLen...
56,495,151,982,543,520,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,351
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::ValidateValue(unsigned &nVal,unsigned nMin,unsigned nMax,CString strName,bool bOverride,unsigned nOverrideVal) { CString strErr; if ((nVal >= nMin) && (nVal <= nMax)) { // Value is within range return true; } else { if (nVal < nMin) { strErr.Format(_T(" ERROR: %s value too small ...
257,945,583,564,171,570,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,352
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::AddHeader(unsigned nCode) { CString strTmp; switch(nCode) { case JFIF_SOI: m_pLog->AddLineHdr(_T("*** Marker: SOI (xFFD8) ***")); break; case JFIF_APP0: m_pLog->AddLineHdr(_T("*** Marker: APP0 (xFFE0) ***")); break; case JFIF_APP1: m_pLog->AddLineHdr(_T("*** Marker: APP1 (xFFE1) ***")...
141,848,007,630,024,830,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,353
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::DecodeMakerSubType() { CString strTmp; m_nImgExifMakeSubtype = 0; if (m_strImgExifMake == _T("NIKON")) { strTmp = _T(""); for (unsigned nInd=0;nInd<5;nInd++) { strTmp += (char)Buf(m_nPos+nInd); } if (strTmp == _T("Nikon")) { if (Buf(m_nPos+6) == 1) { // Type 1 ...
2,719,354,767,918,258,600,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,354
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::PrintValGPS(unsigned nCount, float fCoord1, float fCoord2, float fCoord3,CString &strCoord) { float fTemp; unsigned nCoordDeg; unsigned nCoordMin; float fCoordSec; // TODO: Extend to support 1 & 2 coordinate GPS entries if (nCount == 3) { nCoordDeg = unsigned(fCoord1); nCoordMin...
248,035,497,360,943,730,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,355
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned CjfifDecode::DecodeExifIfd(CString strIfd,unsigned nPosExifStart,unsigned nStartIfdPtr) { // Temp variables bool bRet; CString strTmp; CStr2 strRetVal; CString strValTmp; float fValReal; CString strMaker; // Display output variables CString strFull; CString strValOut; B...
55,821,926,450,809,610,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,356
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::SendSubmit(CString strExifMake, CString strExifModel, CString strQual, CString strDqt0, CString strDqt1, CString strDqt2, CString strDqt3, CString strCss, CString strSig, CString strSigRot, CString strSigThumb, CString strSigThumbRot, float fQFact0, float fQFact1, uns...
142,045,427,173,518,440,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,357
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::ProcessFile(CFile* inFile) { CString strTmp; // Reset the JFIF decoder state as we may be redoing another file Reset(); // Reset the IMG Decoder state if (m_pImgSrcDirty) { m_pImgDec->ResetState(); } // Set the statusbar text to Processing... // Ensure the status bar has ...
16,195,180,785,705,383,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,358
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
bool CjfifDecode::GetDecodeStatus() { return m_bImgOK; }
197,085,485,126,013,100,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,359
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
CString CjfifDecode::DecodeValFraction(unsigned nPos) { CString strTmp; int nValNumer = ReadSwap4(nPos+0); int nValDenom = ReadSwap4(nPos+4); strTmp.Format(_T("%d/%d"),nValNumer,nValDenom); return strTmp; }
293,353,693,691,601,660,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,360
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::SetStatusBar(CStatusBar* pStatBar) { m_pStatBar = pStatBar; }
221,586,032,934,676,680,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,361
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::SetDQTQuick(unsigned anDqt0[64],unsigned anDqt1[64]) { m_eImgLandscape = ENUM_LANDSCAPE_YES; for (unsigned ind=0;ind<MAX_DQT_COEFF;ind++) { m_anImgDqtTbl[0][ind] = anDqt0[ind]; m_anImgDqtTbl[1][ind] = anDqt1[ind]; } m_abImgDqtSet[0] = true; m_abImgDqtSet[1] = true; m_strImgQuantCs...
117,824,539,717,759,580,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,362
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
void CjfifDecode::DecodeDHT(bool bInject) { unsigned nLength; unsigned nTmpVal; CString strTmp,strFull; unsigned nPosEnd; unsigned nPosSaved; bool bRet; if (bInject) { // Redirect Buf() to DHT table in MJPGDHTSeg[] // ... so change mode that Buf() call uses m_bBufFakeDHT = true; // ...
151,718,475,297,868,630,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,363
JPEGsnoop
b4e458612d4294e0cfe01dbf1c0b09a07a8133a4
https://github.com/ImpulseAdventure/JPEGsnoop
https://github.com/ImpulseAdventure/JPEGsnoop/commit/b4e458612d4294e0cfe01dbf1c0b09a07a8133a4#diff-cf9182aecc9d630e8db2e0e35f1eec65
Fixed div0 vulnerability in SampFact
0
unsigned long CjfifDecode::GetPosEmbedEnd() { return m_nPosEmbedEnd; }
265,393,626,192,156,000,000,000,000,000,000,000,000
None
null
[ "CWE-369" ]
CVE-2017-1000414
ImpulseAdventure JPEGsnoop version 1.7.5 is vulnerable to a division by zero in the JFIF decode handling resulting denial of service.
https://nvd.nist.gov/vuln/detail/CVE-2017-1000414
518,531
libofx
a70934eea95c76a7737b83773bffe8738935082d
https://github.com/libofx/libofx
https://github.com/libofx/libofx/commit/a70934eea95c76a7737b83773bffe8738935082d
Fix a buffer overflow. This is only the minimum workaround to prevent buffer overflow: Stop iterating once the (fixed!) size of the output buffers is reached. In response to https://www.talosintelligence.com/vulnerability_reports/TALOS-2017-0317 However, this code is a huge mess anyway and is in no way anything like ...
0
std::string find_dtd(LibofxContextPtr ctx, const std::string& dtd_filename) { string dtd_path_filename; char *env_dtd_path; dtd_path_filename = reinterpret_cast<const LibofxContext*>(ctx)->dtdDir(); if (!dtd_path_filename.empty()) { dtd_path_filename.append(dtd_filename); ifstream dtd_file(dtd_path_f...
139,577,194,403,386,570,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-2920
An memory corruption vulnerability exists in the .SVG parsing functionality of Computerinsel Photoline 20.02. A specially crafted .SVG file can cause a vulnerability resulting in memory corruption, which can potentially lead to arbitrary code execution. An attacker can send a specific .SVG file to trigger this vulnerab...
https://nvd.nist.gov/vuln/detail/CVE-2017-2920
518,532
libofx
a70934eea95c76a7737b83773bffe8738935082d
https://github.com/libofx/libofx
https://github.com/libofx/libofx/commit/a70934eea95c76a7737b83773bffe8738935082d
Fix a buffer overflow. This is only the minimum workaround to prevent buffer overflow: Stop iterating once the (fixed!) size of the output buffers is reached. In response to https://www.talosintelligence.com/vulnerability_reports/TALOS-2017-0317 However, this code is a huge mess anyway and is in no way anything like ...
0
int ofx_proc_file(LibofxContextPtr ctx, const char * p_filename) { LibofxContext *libofx_context; bool ofx_start = false; bool ofx_end = false; bool file_is_xml = false; ifstream input_file; ofstream tmp_file; char buffer[READ_BUFFER_SIZE]; char *iconv_buffer; string s_buffer; char *filenames[3]; ...
214,449,983,044,679,520,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-2920
An memory corruption vulnerability exists in the .SVG parsing functionality of Computerinsel Photoline 20.02. A specially crafted .SVG file can cause a vulnerability resulting in memory corruption, which can potentially lead to arbitrary code execution. An attacker can send a specific .SVG file to trigger this vulnerab...
https://nvd.nist.gov/vuln/detail/CVE-2017-2920
518,533
libofx
a70934eea95c76a7737b83773bffe8738935082d
https://github.com/libofx/libofx
https://github.com/libofx/libofx/commit/a70934eea95c76a7737b83773bffe8738935082d
Fix a buffer overflow. This is only the minimum workaround to prevent buffer overflow: Stop iterating once the (fixed!) size of the output buffers is reached. In response to https://www.talosintelligence.com/vulnerability_reports/TALOS-2017-0317 However, this code is a huge mess anyway and is in no way anything like ...
0
string sanitize_proprietary_tags(string input_string) { unsigned int i; bool strip = false; bool tag_open = false; int tag_open_idx = 0; //Are we within < > ? bool closing_tag_open = false; //Are we within </ > ? int orig_tag_open_idx = 0; bool proprietary_tag = false; //Are we within a proprietary elemen...
296,383,376,717,599,540,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-2920
An memory corruption vulnerability exists in the .SVG parsing functionality of Computerinsel Photoline 20.02. A specially crafted .SVG file can cause a vulnerability resulting in memory corruption, which can potentially lead to arbitrary code execution. An attacker can send a specific .SVG file to trigger this vulnerab...
https://nvd.nist.gov/vuln/detail/CVE-2017-2920
518,534
libofx
a70934eea95c76a7737b83773bffe8738935082d
https://github.com/libofx/libofx
https://github.com/libofx/libofx/commit/a70934eea95c76a7737b83773bffe8738935082d
Fix a buffer overflow. This is only the minimum workaround to prevent buffer overflow: Stop iterating once the (fixed!) size of the output buffers is reached. In response to https://www.talosintelligence.com/vulnerability_reports/TALOS-2017-0317 However, this code is a huge mess anyway and is in no way anything like ...
0
static std::string get_dtd_installation_directory() { // Partial implementation of // http://developer.gnome.org/doc/API/2.0/glib/glib-Windows-Compatibility-Functions.html#g-win32-get-package-installation-directory char ch_fn[MAX_PATH], *p; std::string str_fn; if (!GetModuleFileName(NULL, ch_fn, MAX_PATH)) r...
243,592,607,778,148,230,000,000,000,000,000,000,000
None
null
[ "CWE-119" ]
CVE-2017-2920
An memory corruption vulnerability exists in the .SVG parsing functionality of Computerinsel Photoline 20.02. A specially crafted .SVG file can cause a vulnerability resulting in memory corruption, which can potentially lead to arbitrary code execution. An attacker can send a specific .SVG file to trigger this vulnerab...
https://nvd.nist.gov/vuln/detail/CVE-2017-2920
519,002
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_Linefeed( void ) { int i; // mark time for transparent overlay if ( con.current >= 0 ) { con.times[con.current % NUM_CON_TIMES] = cls.realtime; } con.x = 0; if ( con.display == con.current ) { con.display++; } con.current++; for ( i = 0; i < con.linewidth; i++ ) con.text[( con.current % con.to...
195,989,859,646,788,850,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,004
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_Clear_f( void ) { int i; for ( i = 0 ; i < CON_TEXTSIZE ; i++ ) { con.text[i] = ( ColorIndex( COLNSOLE_COLOR ) << 8 ) | ' '; } Con_Bottom(); // go to end }
337,635,684,891,987,400,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,006
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void CL_ConsolePrint( char *txt ) { int y, l; unsigned char c; unsigned short color; qboolean skipnotify = qfalse; // NERVE - SMF int prev; // NERVE - SMF // NERVE - SMF - work around for text that shows up in console but not in notify if ( !Q_strncmp( txt, "[skipnotify]", 12 ) )...
19,173,176,091,578,082,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,007
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void CL_ConsolePrint( char *txt ) { int y, l; unsigned char c; unsigned short color; // for some demos we don't want to ever show anything on the console if ( cl_noprint && cl_noprint->integer ) { return; } if ( !con.initialized ) { con.color[0] = con.color[1] = con.color[2] = con.color[3] = 1....
564,542,480,644,374,840,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,010
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_Shutdown(void) { Cmd_RemoveCommand("toggleconsole"); Cmd_RemoveCommand("togglemenu"); Cmd_RemoveCommand("messagemode"); Cmd_RemoveCommand("messagemode2"); Cmd_RemoveCommand("messagemode3"); Cmd_RemoveCommand("messagemode4"); Cmd_RemoveCommand("startLimboMode"); Cmd_RemoveCommand("stopLimboMode"); Cmd_...
146,997,678,551,476,750,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,011
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_Init( void ) { int i; con_notifytime = Cvar_Get( "con_notifytime", "7", 0 ); // JPW NERVE increased per id req for obits con_conspeed = Cvar_Get( "scr_conspeed", "3", 0 ); con_debug = Cvar_Get( "con_debug", "0", CVAR_ARCHIVE ); //----(SA) added con_restricted = Cvar_Get( "con_restricted", "0", CVAR_INIT ...
230,297,241,547,161,460,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,013
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_CheckResize( void ) { int i, j, width, oldwidth, oldtotallines, numlines, numchars; short tbuf[CON_TEXTSIZE]; width = ( SCREEN_WIDTH / SMALLCHAR_WIDTH ) - 2; if ( width == con.linewidth ) { return; } if ( width < 1 ) { // video hasn't been initialized yet width = DEFAULT_CONSOLE_WIDTH; co...
45,164,764,261,496,510,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,016
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_DrawNotify( void ) { int x, v; short *text; int i; int time; int skip; int currentColor; // NERVE - SMF - we dont want draw notify in limbo mode if ( Cvar_VariableIntegerValue( "ui_limboMode" ) ) { return; } currentColor = 7; re.SetColor( g_color_table[currentColor] ); v = 0; for ( i = con....
165,728,053,435,389,180,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,017
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_DrawSolidConsole( float frac ) { int i, x, y; int rows; short *text; int row; int lines; int currentColor; vec4_t color; lines = cls.glconfig.vidHeight * frac; if ( lines <= 0 ) { return; } if ( lines > cls.glconfig.vidHeight ) { lines = cls.glconfig.vidHeight; } // on wide screen...
83,828,157,660,956,100,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,018
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_StartLimboMode_f( void ) { chat_limbo = qtrue; }
57,505,734,126,760,040,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,019
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_DrawConsole( void ) { // check for console width changes from a vid mode change Con_CheckResize(); // if disconnected, render console full screen switch ( clc.state ) { case CA_UNINITIALIZED: case CA_CONNECTING: // sending request packets to the server case CA_CHALLENGING: // sending cha...
142,463,785,254,624,830,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,020
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_DrawNotify( void ) { int x, v; short *text; int i; int time; int skip; int currentColor; currentColor = 7; re.SetColor( g_color_table[currentColor] ); v = 0; for ( i = con.current - NUM_CON_TIMES + 1 ; i <= con.current ; i++ ) { if ( i < 0 ) { continue; } time = con.times[i % NUM_CON_TI...
282,604,643,082,091,260,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,021
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_Init( void ) { int i; con_notifytime = Cvar_Get( "con_notifytime", "3", 0 ); con_conspeed = Cvar_Get( "scr_conspeed", "3", 0 ); con_debug = Cvar_Get( "con_debug", "0", CVAR_ARCHIVE ); //----(SA) added Field_Clear( &g_consoleField ); g_consoleField.widthInChars = g_console_field_width; for ( i = 0 ; i ...
176,839,685,812,291,620,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,022
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_StopLimboMode_f( void ) { chat_limbo = qfalse; }
102,306,972,413,629,530,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,024
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_Linefeed( qboolean skipnotify ) { int i; // mark time for transparent overlay if ( con.current >= 0 ) { if ( skipnotify ) { con.times[con.current % NUM_CON_TIMES] = 0; } else { con.times[con.current % NUM_CON_TIMES] = cls.realtime; } } con.x = 0; if ( con.display == con.current ) { con.di...
310,835,037,847,496,100,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,025
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_Dump_f( void ) { int l, x, i; short *line; fileHandle_t f; int bufferlen; char *buffer; char filename[MAX_QPATH]; if ( Cmd_Argc() != 2 ) { Com_Printf( "usage: condump <filename>\n" ); return; } Q_strncpyz( filename, Cmd_Argv( 1 ), sizeof( filename ) ); COM_DefaultExtension( filename, sizeof(...
160,930,453,638,616,710,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,026
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_RunConsole( void ) { // decide on the destination height of the console if ( Key_GetCatcher( ) & KEYCATCH_CONSOLE ) { con.finalFrac = 0.5; // half screen } else { con.finalFrac = 0; // none visible } // scroll towards the destination height if ( con.finalFrac < con.displayFrac ) ...
170,316,773,415,064,170,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903
519,028
iortcw
11a83410153756ae350a82ed41b08d128ff7f998
https://github.com/iortcw/iortcw
https://github.com/iortcw/iortcw/commit/11a83410153756ae350a82ed41b08d128ff7f998
All: Merge some file writing extension checks
0
void Con_ToggleConsole_f( void ) { // Can't toggle the console when it's the only thing available if ( clc.state == CA_DISCONNECTED && Key_GetCatcher( ) == KEYCATCH_CONSOLE ) { CL_StartDemoLoop(); return; } if ( con_restricted->integer && ( !keys[K_CTRL].down || !keys[K_SHIFT].down ) ) { return; } Field_C...
278,179,922,587,061,760,000,000,000,000,000,000,000
None
null
[ "CWE-269" ]
CVE-2017-6903
In ioquake3 before 2017-03-14, the auto-downloading feature has insufficient content restrictions. This also affects Quake III Arena, OpenArena, OpenJK, iortcw, and other id Tech 3 (aka Quake 3 engine) forks. A malicious auto-downloaded file can trigger loading of crafted auto-downloaded files as native code DLLs. A ma...
https://nvd.nist.gov/vuln/detail/CVE-2017-6903