{"id": "EDB-ID:46726", "vendorId": null, "type": "exploitdb", "bulletinFamily": "exploit", "title": "Netwide Assembler (NASM) 2.14rc15 - NULL Pointer Dereference (PoC)", "description": "", "published": "2019-04-18T00:00:00", "modified": "2019-04-18T00:00:00", "cvss": {"score": 4.3, "vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P"}, "cvss2": {"cvssV2": {"version": "2.0", "vectorString": "AV:N/AC:M/Au:N/C:N/I:N/A:P", "accessVector": "NETWORK", "accessComplexity": "MEDIUM", "authentication": "NONE", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "PARTIAL", "baseScore": 4.3}, "severity": "MEDIUM", "exploitabilityScore": 8.6, "impactScore": 2.9, "acInsufInfo": false, "obtainAllPrivilege": false, "obtainUserPrivilege": false, "obtainOtherPrivilege": false, "userInteractionRequired": true}, "cvss3": {"cvssV3": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM"}, "exploitabilityScore": 1.8, "impactScore": 3.6}, "href": "https://www.exploit-db.com/exploits/46726", "reporter": "Fakhri Zulkifli", "references": [], "cvelist": ["2018-16517", "CVE-2018-16517"], "immutableFields": [], "lastseen": "2022-08-07T06:10:44", "viewCount": 16, "enchantments": {"dependencies": {"references": [{"type": "cve", "idList": ["CVE-2018-16517"]}, {"type": "debiancve", "idList": ["DEBIANCVE:CVE-2018-16517"]}, {"type": "exploitpack", "idList": ["EXPLOITPACK:2D505BD0F2C946690A3DAAFADCECB081"]}, {"type": "mageia", "idList": ["MGASA-2020-0303"]}, {"type": "nessus", "idList": ["OPENSUSE-2020-952.NASL", "OPENSUSE-2020-954.NASL", "SUSE_SU-2020-1843-1.NASL"]}, {"type": "packetstorm", "idList": ["PACKETSTORM:152566"]}, {"type": "redhatcve", "idList": ["RH:CVE-2018-16517"]}, {"type": "suse", "idList": ["OPENSUSE-SU-2020:0952-1", "OPENSUSE-SU-2020:0954-1"]}, {"type": "ubuntucve", "idList": ["UB:CVE-2018-16517"]}, {"type": "zdt", "idList": ["1337DAY-ID-32568"]}]}, "score": {"value": -0.0, "vector": "NONE"}, "backreferences": {"references": [{"type": "cve", "idList": ["CVE-2018-16517"]}, {"type": "debiancve", "idList": ["DEBIANCVE:CVE-2018-16517"]}, {"type": "exploitpack", "idList": ["EXPLOITPACK:2D505BD0F2C946690A3DAAFADCECB081"]}, {"type": "nessus", "idList": ["SUSE_SU-2020-1843-1.NASL"]}, {"type": "packetstorm", "idList": ["PACKETSTORM:152566"]}, {"type": "redhatcve", "idList": ["RH:CVE-2018-16517"]}, {"type": "suse", "idList": ["OPENSUSE-SU-2020:0952-1", "OPENSUSE-SU-2020:0954-1"]}, {"type": "ubuntucve", "idList": ["UB:CVE-2018-16517"]}, {"type": "zdt", "idList": ["1337DAY-ID-32568"]}]}, "exploitation": null, "vulnersScore": -0.0}, "_state": {"dependencies": 1659980328, "score": 1659869305}, "_internal": {"score_hash": "525a15c7f71a16d73337e9741e3a5f9d"}, "sourceHref": "https://www.exploit-db.com/download/46726", "sourceData": "# Exploit Title: Netwide Assembler (NASM) 2.14rc15 NULL Pointer Dereference (PoC)\r\n# Date: 2018-09-05\r\n# Exploit Author: Fakhri Zulkifli\r\n# Vendor Homepage: https://www.nasm.us/\r\n# Software Link: https://www.nasm.us/pub/nasm/releasebuilds/?C=M;O=D\r\n# Version: 2.14rc15 and earlier\r\n# Tested on: 2.14rc15\r\n# CVE : CVE-2018-16517\r\n\r\nasm/labels.c in Netwide Assembler (NASM) is prone to NULL Pointer Dereference, which allows the attacker to cause a denial of service via a crafted file.\r\n\r\nPoC:\r\n1. echo \"equ push rax\" > poc\r\n2. nasm -f elf poc\r\n\r\ninsn_is_label remains FALSE and therefore leaving result->label assigned to NULL which is then dereference in islocal().\r\n \r\n [...]\r\n \r\n if (i == TOKEN_ID || (insn_is_label && i == TOKEN_INSN)) { <-- not taken\r\n /* there's a label here */\r\n first = false;\r\n result->label = tokval.t_charptr;\r\n i = stdscan(NULL, &tokval);\r\n if (i == ':') { /* skip over the optional colon */\r\n i = stdscan(NULL, &tokval);\r\n } else if (i == 0) {\r\n nasm_error(ERR_WARNING | ERR_WARN_OL | ERR_PASS1,\r\n \"label alone on a line without a colon might be in error\");\r\n }\r\n if (i != TOKEN_INSN || tokval.t_integer != I_EQU) {\r\n /*\r\n * FIXME: location.segment could be NO_SEG, in which case\r\n * it is possible we should be passing 'absolute.segment'. Look into this.\r\n * Work out whether that is *really* what we should be doing.\r\n * Generally fix things. I think this is right as it is, but\r\n * am still not certain.\r\n */\r\n define_label(result->label,\r\n in_absolute ? absolute.segment : location.segment,\r\n location.offset, true);\r\n [...]\r\n\r\nstatic bool islocal(const char *l)\r\n{\r\n if (tasm_compatible_mode) {\r\n if (l[0] == '@' && l[1] == '@')\r\n return true;\r\n }\r\n return (l[0] == '.' && l[1] != '.'); <-- boom\r\n}", "osvdbidlist": [], "exploitType": "dos", "verified": false}
{"cve": [{"lastseen": "2022-03-23T14:08:54", "description": "asm/labels.c in Netwide Assembler (NASM) is prone to NULL Pointer Dereference, which allows the attacker to cause a denial of service via a crafted file.", "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "NONE", "privilegesRequired": "NONE", "baseScore": 5.5, "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 3.6}, "published": "2018-09-06T23:29:00", "type": "cve", "title": "CVE-2018-16517", "cwe": ["CWE-476"], "bulletinFamily": "NVD", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "NONE", "availabilityImpact": "PARTIAL", "integrityImpact": "NONE", "baseScore": 4.3, "vectorString": "AV:N/AC:M/Au:N/C:N/I:N/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 2.9, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2018-16517"], "modified": "2020-11-10T18:19:00", "cpe": ["cpe:/a:nasm:netwide_assembler:2.14.0", "cpe:/a:nasm:netwide_assembler:2.14", "cpe:/a:nasm:netwide_assembler:2.13.03"], "id": "CVE-2018-16517", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-16517", "cvss": {"score": 4.3, "vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P"}, "cpe23": ["cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc11:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc3:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc13:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc4:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14:rc15:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.13.03:*:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc2:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc5:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc6:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc9:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc10:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc7:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc14:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc1:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc12:*:*:*:*:*:*", "cpe:2.3:a:nasm:netwide_assembler:2.14.0:rc8:*:*:*:*:*:*"]}], "exploitpack": [{"lastseen": "2020-04-01T19:04:37", "description": "\nNetwide Assembler (NASM) 2.14rc15 - NULL Pointer Dereference (PoC)", "edition": 2, "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "NONE", "baseScore": 5.5, "privilegesRequired": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "userInteraction": "REQUIRED", "version": "3.1"}, "impactScore": 3.6}, "published": "2019-04-18T00:00:00", "title": "Netwide Assembler (NASM) 2.14rc15 - NULL Pointer Dereference (PoC)", "type": "exploitpack", "bulletinFamily": "exploit", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "NONE", "availabilityImpact": "PARTIAL", "integrityImpact": "NONE", "baseScore": 4.3, "vectorString": "AV:N/AC:M/Au:N/C:N/I:N/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "acInsufInfo": false, "impactScore": 2.9, "obtainUserPrivilege": false}, "cvelist": ["CVE-2018-16517"], "modified": "2019-04-18T00:00:00", "id": "EXPLOITPACK:2D505BD0F2C946690A3DAAFADCECB081", "href": "", "sourceData": "# Exploit Title: Netwide Assembler (NASM) 2.14rc15 NULL Pointer Dereference (PoC)\n# Date: 2018-09-05\n# Exploit Author: Fakhri Zulkifli\n# Vendor Homepage: https://www.nasm.us/\n# Software Link: https://www.nasm.us/pub/nasm/releasebuilds/?C=M;O=D\n# Version: 2.14rc15 and earlier\n# Tested on: 2.14rc15\n# CVE : CVE-2018-16517\n\nasm/labels.c in Netwide Assembler (NASM) is prone to NULL Pointer Dereference, which allows the attacker to cause a denial of service via a crafted file.\n\nPoC:\n1. echo \"equ push rax\" > poc\n2. nasm -f elf poc\n\ninsn_is_label remains FALSE and therefore leaving result->label assigned to NULL which is then dereference in islocal().\n \n [...]\n \n if (i == TOKEN_ID || (insn_is_label && i == TOKEN_INSN)) { <-- not taken\n /* there's a label here */\n first = false;\n result->label = tokval.t_charptr;\n i = stdscan(NULL, &tokval);\n if (i == ':') { /* skip over the optional colon */\n i = stdscan(NULL, &tokval);\n } else if (i == 0) {\n nasm_error(ERR_WARNING | ERR_WARN_OL | ERR_PASS1,\n \"label alone on a line without a colon might be in error\");\n }\n if (i != TOKEN_INSN || tokval.t_integer != I_EQU) {\n /*\n * FIXME: location.segment could be NO_SEG, in which case\n * it is possible we should be passing 'absolute.segment'. Look into this.\n * Work out whether that is *really* what we should be doing.\n * Generally fix things. I think this is right as it is, but\n * am still not certain.\n */\n define_label(result->label,\n in_absolute ? absolute.segment : location.segment,\n location.offset, true);\n [...]\n\nstatic bool islocal(const char *l)\n{\n if (tasm_compatible_mode) {\n if (l[0] == '@' && l[1] == '@')\n return true;\n }\n return (l[0] == '.' && l[1] != '.'); <-- boom\n}", "cvss": {"score": 4.3, "vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P"}}], "packetstorm": [{"lastseen": "2019-04-19T03:48:41", "description": "", "cvss3": {}, "published": "2019-04-18T00:00:00", "type": "packetstorm", "title": "Netwide Assembler (NASM) 2.14rc15 Null Pointer Dereference", "bulletinFamily": "exploit", "cvss2": {}, "cvelist": ["CVE-2018-16517"], "modified": "2019-04-18T00:00:00", "id": "PACKETSTORM:152566", "href": "https://packetstormsecurity.com/files/152566/Netwide-Assembler-NASM-2.14rc15-Null-Pointer-Dereference.html", "sourceData": "`# Exploit Title: Netwide Assembler (NASM) 2.14rc15 NULL Pointer Dereference (PoC) \n# Date: 2018-09-05 \n# Exploit Author: Fakhri Zulkifli \n# Vendor Homepage: https://www.nasm.us/ \n# Software Link: https://www.nasm.us/pub/nasm/releasebuilds/?C=M;O=D \n# Version: 2.14rc15 and earlier \n# Tested on: 2.14rc15 \n# CVE : CVE-2018-16517 \n \nasm/labels.c in Netwide Assembler (NASM) is prone to NULL Pointer Dereference, which allows the attacker to cause a denial of service via a crafted file. \n \nPoC: \n1. echo \"equ push rax\" > poc \n2. nasm -f elf poc \n \ninsn_is_label remains FALSE and therefore leaving result->label assigned to NULL which is then dereference in islocal(). \n \n[...] \n \nif (i == TOKEN_ID || (insn_is_label && i == TOKEN_INSN)) { <-- not taken \n/* there's a label here */ \nfirst = false; \nresult->label = tokval.t_charptr; \ni = stdscan(NULL, &tokval); \nif (i == ':') { /* skip over the optional colon */ \ni = stdscan(NULL, &tokval); \n} else if (i == 0) { \nnasm_error(ERR_WARNING | ERR_WARN_OL | ERR_PASS1, \n\"label alone on a line without a colon might be in error\"); \n} \nif (i != TOKEN_INSN || tokval.t_integer != I_EQU) { \n/* \n* FIXME: location.segment could be NO_SEG, in which case \n* it is possible we should be passing 'absolute.segment'. Look into this. \n* Work out whether that is *really* what we should be doing. \n* Generally fix things. I think this is right as it is, but \n* am still not certain. \n*/ \ndefine_label(result->label, \nin_absolute ? absolute.segment : location.segment, \nlocation.offset, true); \n[...] \n \nstatic bool islocal(const char *l) \n{ \nif (tasm_compatible_mode) { \nif (l[0] == '@' && l[1] == '@') \nreturn true; \n} \nreturn (l[0] == '.' && l[1] != '.'); <-- boom \n} \n`\n", "sourceHref": "https://packetstormsecurity.com/files/download/152566/netwideassembler214rc15-poc.txt", "cvss": {"score": 4.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:NONE/I:NONE/A:PARTIAL/"}}], "zdt": [{"lastseen": "2021-12-27T13:54:32", "description": "", "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "NONE", "baseScore": 5.5, "privilegesRequired": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "userInteraction": "REQUIRED", "version": "3.1"}, "impactScore": 3.6}, "published": "2019-04-18T00:00:00", "type": "zdt", "title": "Netwide Assembler (NASM) 2.14rc15 - NULL Pointer Dereference Exploit", "bulletinFamily": "exploit", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "NONE", "availabilityImpact": "PARTIAL", "integrityImpact": "NONE", "baseScore": 4.3, "vectorString": "AV:N/AC:M/Au:N/C:N/I:N/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "acInsufInfo": false, "impactScore": 2.9, "obtainUserPrivilege": false}, "cvelist": ["CVE-2018-16517"], "modified": "2019-04-18T00:00:00", "id": "1337DAY-ID-32568", "href": "https://0day.today/exploit/description/32568", "sourceData": "# Exploit Title: Netwide Assembler (NASM) 2.14rc15 NULL Pointer Dereference (PoC)\n# Exploit Author: Fakhri Zulkifli\n# Vendor Homepage: https://www.nasm.us/\n# Software Link: https://www.nasm.us/pub/nasm/releasebuilds/?C=M;O=D\n# Version: 2.14rc15 and earlier\n# Tested on: 2.14rc15\n# CVE : CVE-2018-16517\n\nasm/labels.c in Netwide Assembler (NASM) is prone to NULL Pointer Dereference, which allows the attacker to cause a denial of service via a crafted file.\n\nPoC:\n1. echo \"equ push rax\" > poc\n2. nasm -f elf poc\n\ninsn_is_label remains FALSE and therefore leaving result->label assigned to NULL which is then dereference in islocal().\n \n [...]\n \n if (i == TOKEN_ID || (insn_is_label && i == TOKEN_INSN)) { <-- not taken\n /* there's a label here */\n first = false;\n result->label = tokval.t_charptr;\n i = stdscan(NULL, &tokval);\n if (i == ':') { /* skip over the optional colon */\n i = stdscan(NULL, &tokval);\n } else if (i == 0) {\n nasm_error(ERR_WARNING | ERR_WARN_OL | ERR_PASS1,\n \"label alone on a line without a colon might be in error\");\n }\n if (i != TOKEN_INSN || tokval.t_integer != I_EQU) {\n /*\n * FIXME: location.segment could be NO_SEG, in which case\n * it is possible we should be passing 'absolute.segment'. Look into this.\n * Work out whether that is *really* what we should be doing.\n * Generally fix things. I think this is right as it is, but\n * am still not certain.\n */\n define_label(result->label,\n in_absolute ? absolute.segment : location.segment,\n location.offset, true);\n [...]\n\nstatic bool islocal(const char *l)\n{\n if (tasm_compatible_mode) {\n if (l[0] == '@' && l[1] == '@')\n return true;\n }\n return (l[0] == '.' && l[1] != '.'); <-- boom\n}\n", "sourceHref": "https://0day.today/exploit/32568", "cvss": {"score": 4.3, "vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P"}}], "redhatcve": [{"lastseen": "2022-07-07T11:09:38", "description": "asm/labels.c in Netwide Assembler (NASM) is prone to NULL Pointer Dereference, which allows the attacker to cause a denial of service via a crafted file.\n", "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "NONE", "privilegesRequired": "NONE", "baseScore": 5.5, "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 3.6}, "published": "2018-09-14T14:49:18", "type": "redhatcve", "title": "CVE-2018-16517", "bulletinFamily": "info", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "NONE", "availabilityImpact": "PARTIAL", "integrityImpact": "NONE", "baseScore": 4.3, "vectorString": "AV:N/AC:M/Au:N/C:N/I:N/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 2.9, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2018-16517"], "modified": "2022-07-07T10:37:23", "id": "RH:CVE-2018-16517", "href": "https://access.redhat.com/security/cve/cve-2018-16517", "cvss": {"score": 4.3, "vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P"}}], "ubuntucve": [{"lastseen": "2022-08-04T13:46:33", "description": "asm/labels.c in Netwide Assembler (NASM) is prone to NULL Pointer\nDereference, which allows the attacker to cause a denial of service via a\ncrafted file.\n\n#### Bugs\n\n * <https://bugzilla.nasm.us/show_bug.cgi?id=3392513>\n * <https://fakhrizulkifli.github.io/CVE-2018-16517.html>\n", "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "NONE", "privilegesRequired": "NONE", "baseScore": 5.5, "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 3.6}, "published": "2018-09-06T00:00:00", "type": "ubuntucve", "title": "CVE-2018-16517", "bulletinFamily": "info", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "NONE", "availabilityImpact": "PARTIAL", "integrityImpact": "NONE", "baseScore": 4.3, "vectorString": "AV:N/AC:M/Au:N/C:N/I:N/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 2.9, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2018-16517"], "modified": "2018-09-06T00:00:00", "id": "UB:CVE-2018-16517", "href": "https://ubuntu.com/security/CVE-2018-16517", "cvss": {"score": 4.3, "vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P"}}], "debiancve": [{"lastseen": "2022-07-04T06:01:05", "description": "asm/labels.c in Netwide Assembler (NASM) is prone to NULL Pointer Dereference, which allows the attacker to cause a denial of service via a crafted file.", "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "NONE", "privilegesRequired": "NONE", "baseScore": 5.5, "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 3.6}, "published": "2018-09-06T23:29:00", "type": "debiancve", "title": "CVE-2018-16517", "bulletinFamily": "info", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "NONE", "availabilityImpact": "PARTIAL", "integrityImpact": "NONE", "baseScore": 4.3, "vectorString": "AV:N/AC:M/Au:N/C:N/I:N/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 2.9, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2018-16517"], "modified": "2018-09-06T23:29:00", "id": "DEBIANCVE:CVE-2018-16517", "href": "https://security-tracker.debian.org/tracker/CVE-2018-16517", "cvss": {"score": 4.3, "vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P"}}], "mageia": [{"lastseen": "2022-04-18T11:19:34", "description": "Netwide Assembler (NASM) 2.13 has a stack-based buffer over-read in the disasm function of the disasm/disasm.c file. Remote attackers could leverage this vulnerability to cause a denial of service or possibly have unspecified other impact via a crafted ELF file (CVE-2018-10254). Netwide Assembler (NASM) 2.14rc0 has an endless while loop in the assemble_file function of asm/nasm.c because of a globallineno integer overflow (CVE-2018-10316). Netwide Assembler (NASM) 2.14rc15 has a buffer over-read in x86/regflags.c (CVE-2018-16382). NASM nasm-2.13.03 nasm- 2.14rc15 version 2.14rc15 and earlier contains a memory corruption (crashed) of nasm when handling a crafted file due to function assemble_file(inname, depend_ptr) at asm/nasm.c:482. vulnerability in function assemble_file(inname, depend_ptr) at asm/nasm.c:482. that can result in aborting/crash nasm program. This attack appear to be exploitable via a specially crafted asm file (CVE-2018-1000667). asm/labels.c in Netwide Assembler (NASM) is prone to NULL Pointer Dereference, which allows the attacker to cause a denial of service via a crafted file (CVE-2018-16517). Netwide Assembler (NASM) 2.14rc15 has an invalid memory write (segmentation fault) in expand_smacro in preproc.c, which allows attackers to cause a denial of service via a crafted input file (CVE-2018-16999). Netwide Assembler (NASM) 2.14rc16 has a heap-based buffer over-read in expand_mmac_params in asm/preproc.c for the special cases of the % and $ and ! characters (CVE-2018-19215). Netwide Assembler (NASM) 2.14rc15 has a heap-based buffer over-read in expand_mmac_params in asm/preproc.c for insufficient input (CVE-2018-19214). \n", "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.8, "vectorString": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.0", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2020-07-31T23:25:42", "type": "mageia", "title": "Updated nasm packages fix security vulnerability\n", "bulletinFamily": "unix", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "PARTIAL", "availabilityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "baseScore": 6.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 6.4, "obtainUserPrivilege": false}, "cvelist": ["CVE-2018-1000667", "CVE-2018-10016", "CVE-2018-10254", "CVE-2018-10316", "CVE-2018-16382", "CVE-2018-16517", "CVE-2018-16999", "CVE-2018-19214", "CVE-2018-19215"], "modified": "2020-07-31T23:25:42", "id": "MGASA-2020-0303", "href": "https://advisories.mageia.org/MGASA-2020-0303.html", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}], "nessus": [{"lastseen": "2022-05-15T13:54:15", "description": "This update for nasm fixes the following issues :\n\nnasm was updated to version 2.14.02.\n\nThis allows building of Mozilla Firefox 78ESR and also contains lots of bugfixes, security fixes and improvements.\n\n - Fix crash due to multiple errors or warnings during the code generation pass if a list file is specified.\n\n - Create all system-defined macros defore processing command-line given preprocessing directives (-p, -d, -u,\n --pragma, --before).\n\n - If debugging is enabled, define a __DEBUG_FORMAT__ predefined macro. See section 4.11.7.\n\n - Fix an assert for the case in the obj format when a SEG operator refers to an EXTERN symbol declared further down in the code.\n\n - Fix a corner case in the floating-point code where a binary, octal or hexadecimal floating-point having at least 32, 11, or 8 mantissa digits could produce slightly incorrect results under very specific conditions.\n\n - Support -MD without a filename, for gcc compatibility.\n -MF can be used to set the dependencies output filename.\n See section 2.1.7.\n\n - Fix -E in combination with -MD. See section 2.1.21.\n\n - Fix missing errors on redefined labels; would cause convergence failure instead which is very slow and not easy to debug.\n\n - Duplicate definitions of the same label with the same value is now explicitly permitted (2.14 would allow it in some circumstances.)\n\n - Add the option --no-line to ignore %line directives in the source. See section 2.1.33 and section 4.10.1.\n\n - Changed -I option semantics by adding a trailing path separator unconditionally.\n\n - Fixed null dereference in corrupted invalid single line macros.\n\n - Fixed division by zero which may happen if source code is malformed.\n\n - Fixed out of bound access in processing of malformed segment override.\n\n - Fixed out of bound access in certain EQU parsing.\n\n - Fixed buffer underflow in float parsing.\n\n - Added SGX (Intel Software Guard Extensions) instructions.\n\n - Added +n syntax for multiple contiguous registers.\n\n - Fixed subsections_via_symbols for macho object format.\n\n - Added the --gprefix, --gpostfix, --lprefix, and\n --lpostfix command line options, to allow command line base symbol renaming. See section 2.1.28.\n\n - Allow label renaming to be specified by %pragma in addition to from the command line. See section 6.9.\n\n - Supported generic %pragma namespaces, output and debug.\n See section 6.10.\n\n - Added the --pragma command line option to inject a %pragma directive. See section 2.1.29.\n\n - Added the --before command line option to accept preprocess statement before input. See section 2.1.30.\n\n - Added AVX512 VBMI2 (Additional Bit Manipulation), VNNI (Vector Neural Network), BITALG (Bit Algorithm), and GFNI (Galois Field New Instruction) instructions.\n\n - Added the STATIC directive for local symbols that should be renamed using global-symbol rules. See section 6.8.\n\n - Allow a symbol to be defined as EXTERN and then later overridden as GLOBAL or COMMON. Furthermore, a symbol declared EXTERN and then defined will be treated as GLOBAL. See section 6.5.\n\n - The GLOBAL directive no longer is required to precede the definition of the symbol.\n\n - Support private_extern as macho specific extension to the GLOBAL directive. See section 7.8.5.\n\n - Updated UD0 encoding to match with the specification\n\n - Added the --limit-X command line option to set execution limits. See section 2.1.31.\n\n - Updated the Codeview version number to be aligned with MASM.\n\n - Added the --keep-all command line option to preserve output files. See section 2.1.32.\n\n - Added the --include command line option, an alias to -P (section 2.1.18).\n\n - Added the --help command line option as an alias to -h (section 3.1).\n\n - Added -W, -D, and -Q suffix aliases for RET instructions so the operand sizes of these instructions can be encoded without using o16, o32 or o64.\n\nNew upstream version 2.13.03 :\n\n - Add flags: AES, VAES, VPCLMULQDQ\n\n - Add VPCLMULQDQ instruction\n\n - elf: Add missing dwarf loc section\n\n - documentation updates This update was imported from the SUSE:SLE-15:Update update project.", "cvss3": {"score": 7.8, "vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"}, "published": "2020-07-20T00:00:00", "type": "nessus", "title": "openSUSE Security Update : nasm (openSUSE-2020-952)", "bulletinFamily": "scanner", "cvss2": {}, "cvelist": ["CVE-2018-1000667", "CVE-2018-10016", "CVE-2018-10254", "CVE-2018-10316", "CVE-2018-16382", "CVE-2018-16517", "CVE-2018-16999", "CVE-2018-19214", "CVE-2018-19215", "CVE-2018-19216", "CVE-2018-8881", "CVE-2018-8882", "CVE-2018-8883"], "modified": "2022-05-13T00:00:00", "cpe": ["p-cpe:/a:novell:opensuse:nasm", "p-cpe:/a:novell:opensuse:nasm-debuginfo", "p-cpe:/a:novell:opensuse:nasm-debugsource", "cpe:/o:novell:opensuse:15.1"], "id": "OPENSUSE-2020-952.NASL", "href": "https://www.tenable.com/plugins/nessus/138733", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were\n# extracted from openSUSE Security Update openSUSE-2020-952.\n#\n# The text description of this plugin is (C) SUSE LLC.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(138733);\n script_version(\"1.4\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2022/05/13\");\n\n script_cve_id(\"CVE-2018-1000667\", \"CVE-2018-10016\", \"CVE-2018-10254\", \"CVE-2018-10316\", \"CVE-2018-16382\", \"CVE-2018-16517\", \"CVE-2018-16999\", \"CVE-2018-19214\", \"CVE-2018-19215\", \"CVE-2018-19216\", \"CVE-2018-8881\", \"CVE-2018-8882\", \"CVE-2018-8883\");\n\n script_name(english:\"openSUSE Security Update : nasm (openSUSE-2020-952)\");\n script_summary(english:\"Check for the openSUSE-2020-952 patch\");\n\n script_set_attribute(\n attribute:\"synopsis\",\n value:\"The remote openSUSE host is missing a security update.\"\n );\n script_set_attribute(\n attribute:\"description\",\n value:\n\"This update for nasm fixes the following issues :\n\nnasm was updated to version 2.14.02.\n\nThis allows building of Mozilla Firefox 78ESR and also contains lots\nof bugfixes, security fixes and improvements.\n\n - Fix crash due to multiple errors or warnings during the\n code generation pass if a list file is specified.\n\n - Create all system-defined macros defore processing\n command-line given preprocessing directives (-p, -d, -u,\n --pragma, --before).\n\n - If debugging is enabled, define a __DEBUG_FORMAT__\n predefined macro. See section 4.11.7.\n\n - Fix an assert for the case in the obj format when a SEG\n operator refers to an EXTERN symbol declared further\n down in the code.\n\n - Fix a corner case in the floating-point code where a\n binary, octal or hexadecimal floating-point having at\n least 32, 11, or 8 mantissa digits could produce\n slightly incorrect results under very specific\n conditions.\n\n - Support -MD without a filename, for gcc compatibility.\n -MF can be used to set the dependencies output filename.\n See section 2.1.7.\n\n - Fix -E in combination with -MD. See section 2.1.21.\n\n - Fix missing errors on redefined labels; would cause\n convergence failure instead which is very slow and not\n easy to debug.\n\n - Duplicate definitions of the same label with the same\n value is now explicitly permitted (2.14 would allow it\n in some circumstances.)\n\n - Add the option --no-line to ignore %line directives in\n the source. See section 2.1.33 and section 4.10.1.\n\n - Changed -I option semantics by adding a trailing path\n separator unconditionally.\n\n - Fixed null dereference in corrupted invalid single line\n macros.\n\n - Fixed division by zero which may happen if source code\n is malformed.\n\n - Fixed out of bound access in processing of malformed\n segment override.\n\n - Fixed out of bound access in certain EQU parsing.\n\n - Fixed buffer underflow in float parsing.\n\n - Added SGX (Intel Software Guard Extensions)\n instructions.\n\n - Added +n syntax for multiple contiguous registers.\n\n - Fixed subsections_via_symbols for macho object format.\n\n - Added the --gprefix, --gpostfix, --lprefix, and\n --lpostfix command line options, to allow command line\n base symbol renaming. See section 2.1.28.\n\n - Allow label renaming to be specified by %pragma in\n addition to from the command line. See section 6.9.\n\n - Supported generic %pragma namespaces, output and debug.\n See section 6.10.\n\n - Added the --pragma command line option to inject a\n %pragma directive. See section 2.1.29.\n\n - Added the --before command line option to accept\n preprocess statement before input. See section 2.1.30.\n\n - Added AVX512 VBMI2 (Additional Bit Manipulation), VNNI\n (Vector Neural Network), BITALG (Bit Algorithm), and\n GFNI (Galois Field New Instruction) instructions.\n\n - Added the STATIC directive for local symbols that should\n be renamed using global-symbol rules. See section 6.8.\n\n - Allow a symbol to be defined as EXTERN and then later\n overridden as GLOBAL or COMMON. Furthermore, a symbol\n declared EXTERN and then defined will be treated as\n GLOBAL. See section 6.5.\n\n - The GLOBAL directive no longer is required to precede\n the definition of the symbol.\n\n - Support private_extern as macho specific extension to\n the GLOBAL directive. See section 7.8.5.\n\n - Updated UD0 encoding to match with the specification\n\n - Added the --limit-X command line option to set execution\n limits. See section 2.1.31.\n\n - Updated the Codeview version number to be aligned with\n MASM.\n\n - Added the --keep-all command line option to preserve\n output files. See section 2.1.32.\n\n - Added the --include command line option, an alias to -P\n (section 2.1.18).\n\n - Added the --help command line option as an alias to -h\n (section 3.1).\n\n - Added -W, -D, and -Q suffix aliases for RET instructions\n so the operand sizes of these instructions can be\n encoded without using o16, o32 or o64.\n\nNew upstream version 2.13.03 :\n\n - Add flags: AES, VAES, VPCLMULQDQ\n\n - Add VPCLMULQDQ instruction\n\n - elf: Add missing dwarf loc section\n\n - documentation updates This update was imported from the\n SUSE:SLE-15:Update update project.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1084631\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1086186\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1086227\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1086228\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1090519\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1090840\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1106878\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1107592\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1107594\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1108404\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1115758\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1115774\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1115795\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1173538\"\n );\n script_set_attribute(attribute:\"solution\", value:\"Update the affected nasm packages.\");\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:P/I:P/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:POC/RL:OF/RC:C\");\n script_set_cvss3_base_vector(\"CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H\");\n script_set_cvss3_temporal_vector(\"CVSS:3.0/E:P/RL:O/RC:C\");\n script_set_attribute(attribute:\"cvss_score_source\", value:\"CVE-2018-8881\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:nasm\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:nasm-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:nasm-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:opensuse:15.1\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/03/20\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2020/07/13\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2020/07/20\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2020-2022 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"SuSE Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/SuSE/release\", \"Host/SuSE/rpm-list\", \"Host/cpu\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"rpm.inc\");\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nrelease = get_kb_item(\"Host/SuSE/release\");\nif (isnull(release) || release =~ \"^(SLED|SLES)\") audit(AUDIT_OS_NOT, \"openSUSE\");\nif (release !~ \"^(SUSE15\\.1)$\") audit(AUDIT_OS_RELEASE_NOT, \"openSUSE\", \"15.1\", release);\nif (!get_kb_item(\"Host/SuSE/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\nourarch = get_kb_item(\"Host/cpu\");\nif (!ourarch) audit(AUDIT_UNKNOWN_ARCH);\nif (ourarch !~ \"^(i586|i686|x86_64)$\") audit(AUDIT_ARCH_NOT, \"i586 / i686 / x86_64\", ourarch);\n\nflag = 0;\n\nif ( rpm_check(release:\"SUSE15.1\", reference:\"nasm-2.14.02-lp151.3.3.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.1\", reference:\"nasm-debuginfo-2.14.02-lp151.3.3.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.1\", reference:\"nasm-debugsource-2.14.02-lp151.3.3.1\") ) flag++;\n\nif (flag)\n{\n if (report_verbosity > 0) security_warning(port:0, extra:rpm_report_get());\n else security_warning(0);\n exit(0);\n}\nelse\n{\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"nasm / nasm-debuginfo / nasm-debugsource\");\n}\n", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2022-05-15T13:55:00", "description": "This update for nasm fixes the following issues :\n\nnasm was updated to version 2.14.02.\n\nThis allows building of Mozilla Firefox 78ESR and also contains lots of bugfixes, security fixes and improvements.\n\n - Fix crash due to multiple errors or warnings during the code generation pass if a list file is specified.\n\n - Create all system-defined macros defore processing command-line given preprocessing directives (-p, -d, -u,\n --pragma, --before).\n\n - If debugging is enabled, define a __DEBUG_FORMAT__ predefined macro. See section 4.11.7.\n\n - Fix an assert for the case in the obj format when a SEG operator refers to an EXTERN symbol declared further down in the code.\n\n - Fix a corner case in the floating-point code where a binary, octal or hexadecimal floating-point having at least 32, 11, or 8 mantissa digits could produce slightly incorrect results under very specific conditions.\n\n - Support -MD without a filename, for gcc compatibility.\n -MF can be used to set the dependencies output filename.\n See section 2.1.7.\n\n - Fix -E in combination with -MD. See section 2.1.21.\n\n - Fix missing errors on redefined labels; would cause convergence failure instead which is very slow and not easy to debug.\n\n - Duplicate definitions of the same label with the same value is now explicitly permitted (2.14 would allow it in some circumstances.)\n\n - Add the option --no-line to ignore %line directives in the source. See section 2.1.33 and section 4.10.1.\n\n - Changed -I option semantics by adding a trailing path separator unconditionally.\n\n - Fixed null dereference in corrupted invalid single line macros.\n\n - Fixed division by zero which may happen if source code is malformed.\n\n - Fixed out of bound access in processing of malformed segment override.\n\n - Fixed out of bound access in certain EQU parsing.\n\n - Fixed buffer underflow in float parsing.\n\n - Added SGX (Intel Software Guard Extensions) instructions.\n\n - Added +n syntax for multiple contiguous registers.\n\n - Fixed subsections_via_symbols for macho object format.\n\n - Added the --gprefix, --gpostfix, --lprefix, and\n --lpostfix command line options, to allow command line base symbol renaming. See section 2.1.28.\n\n - Allow label renaming to be specified by %pragma in addition to from the command line. See section 6.9.\n\n - Supported generic %pragma namespaces, output and debug.\n See section 6.10.\n\n - Added the --pragma command line option to inject a %pragma directive. See section 2.1.29.\n\n - Added the --before command line option to accept preprocess statement before input. See section 2.1.30.\n\n - Added AVX512 VBMI2 (Additional Bit Manipulation), VNNI (Vector Neural Network), BITALG (Bit Algorithm), and GFNI (Galois Field New Instruction) instructions.\n\n - Added the STATIC directive for local symbols that should be renamed using global-symbol rules. See section 6.8.\n\n - Allow a symbol to be defined as EXTERN and then later overridden as GLOBAL or COMMON. Furthermore, a symbol declared EXTERN and then defined will be treated as GLOBAL. See section 6.5.\n\n - The GLOBAL directive no longer is required to precede the definition of the symbol.\n\n - Support private_extern as macho specific extension to the GLOBAL directive. See section 7.8.5.\n\n - Updated UD0 encoding to match with the specification\n\n - Added the --limit-X command line option to set execution limits. See section 2.1.31.\n\n - Updated the Codeview version number to be aligned with MASM.\n\n - Added the --keep-all command line option to preserve output files. See section 2.1.32.\n\n - Added the --include command line option, an alias to -P (section 2.1.18).\n\n - Added the --help command line option as an alias to -h (section 3.1).\n\n - Added -W, -D, and -Q suffix aliases for RET instructions so the operand sizes of these instructions can be encoded without using o16, o32 or o64.\n\nNew upstream version 2.13.03 :\n\n - Add flags: AES, VAES, VPCLMULQDQ\n\n - Add VPCLMULQDQ instruction\n\n - elf: Add missing dwarf loc section\n\n - documentation updates This update was imported from the SUSE:SLE-15:Update update project.", "cvss3": {"score": 7.8, "vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"}, "published": "2020-07-20T00:00:00", "type": "nessus", "title": "openSUSE Security Update : nasm (openSUSE-2020-954)", "bulletinFamily": "scanner", "cvss2": {}, "cvelist": ["CVE-2018-1000667", "CVE-2018-10016", "CVE-2018-10254", "CVE-2018-10316", "CVE-2018-16382", "CVE-2018-16517", "CVE-2018-16999", "CVE-2018-19214", "CVE-2018-19215", "CVE-2018-19216", "CVE-2018-8881", "CVE-2018-8882", "CVE-2018-8883"], "modified": "2022-05-13T00:00:00", "cpe": ["p-cpe:/a:novell:opensuse:nasm", "p-cpe:/a:novell:opensuse:nasm-debuginfo", "p-cpe:/a:novell:opensuse:nasm-debugsource", "cpe:/o:novell:opensuse:15.2"], "id": "OPENSUSE-2020-954.NASL", "href": "https://www.tenable.com/plugins/nessus/138735", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were\n# extracted from openSUSE Security Update openSUSE-2020-954.\n#\n# The text description of this plugin is (C) SUSE LLC.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(138735);\n script_version(\"1.4\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2022/05/13\");\n\n script_cve_id(\"CVE-2018-1000667\", \"CVE-2018-10016\", \"CVE-2018-10254\", \"CVE-2018-10316\", \"CVE-2018-16382\", \"CVE-2018-16517\", \"CVE-2018-16999\", \"CVE-2018-19214\", \"CVE-2018-19215\", \"CVE-2018-19216\", \"CVE-2018-8881\", \"CVE-2018-8882\", \"CVE-2018-8883\");\n\n script_name(english:\"openSUSE Security Update : nasm (openSUSE-2020-954)\");\n script_summary(english:\"Check for the openSUSE-2020-954 patch\");\n\n script_set_attribute(\n attribute:\"synopsis\",\n value:\"The remote openSUSE host is missing a security update.\"\n );\n script_set_attribute(\n attribute:\"description\",\n value:\n\"This update for nasm fixes the following issues :\n\nnasm was updated to version 2.14.02.\n\nThis allows building of Mozilla Firefox 78ESR and also contains lots\nof bugfixes, security fixes and improvements.\n\n - Fix crash due to multiple errors or warnings during the\n code generation pass if a list file is specified.\n\n - Create all system-defined macros defore processing\n command-line given preprocessing directives (-p, -d, -u,\n --pragma, --before).\n\n - If debugging is enabled, define a __DEBUG_FORMAT__\n predefined macro. See section 4.11.7.\n\n - Fix an assert for the case in the obj format when a SEG\n operator refers to an EXTERN symbol declared further\n down in the code.\n\n - Fix a corner case in the floating-point code where a\n binary, octal or hexadecimal floating-point having at\n least 32, 11, or 8 mantissa digits could produce\n slightly incorrect results under very specific\n conditions.\n\n - Support -MD without a filename, for gcc compatibility.\n -MF can be used to set the dependencies output filename.\n See section 2.1.7.\n\n - Fix -E in combination with -MD. See section 2.1.21.\n\n - Fix missing errors on redefined labels; would cause\n convergence failure instead which is very slow and not\n easy to debug.\n\n - Duplicate definitions of the same label with the same\n value is now explicitly permitted (2.14 would allow it\n in some circumstances.)\n\n - Add the option --no-line to ignore %line directives in\n the source. See section 2.1.33 and section 4.10.1.\n\n - Changed -I option semantics by adding a trailing path\n separator unconditionally.\n\n - Fixed null dereference in corrupted invalid single line\n macros.\n\n - Fixed division by zero which may happen if source code\n is malformed.\n\n - Fixed out of bound access in processing of malformed\n segment override.\n\n - Fixed out of bound access in certain EQU parsing.\n\n - Fixed buffer underflow in float parsing.\n\n - Added SGX (Intel Software Guard Extensions)\n instructions.\n\n - Added +n syntax for multiple contiguous registers.\n\n - Fixed subsections_via_symbols for macho object format.\n\n - Added the --gprefix, --gpostfix, --lprefix, and\n --lpostfix command line options, to allow command line\n base symbol renaming. See section 2.1.28.\n\n - Allow label renaming to be specified by %pragma in\n addition to from the command line. See section 6.9.\n\n - Supported generic %pragma namespaces, output and debug.\n See section 6.10.\n\n - Added the --pragma command line option to inject a\n %pragma directive. See section 2.1.29.\n\n - Added the --before command line option to accept\n preprocess statement before input. See section 2.1.30.\n\n - Added AVX512 VBMI2 (Additional Bit Manipulation), VNNI\n (Vector Neural Network), BITALG (Bit Algorithm), and\n GFNI (Galois Field New Instruction) instructions.\n\n - Added the STATIC directive for local symbols that should\n be renamed using global-symbol rules. See section 6.8.\n\n - Allow a symbol to be defined as EXTERN and then later\n overridden as GLOBAL or COMMON. Furthermore, a symbol\n declared EXTERN and then defined will be treated as\n GLOBAL. See section 6.5.\n\n - The GLOBAL directive no longer is required to precede\n the definition of the symbol.\n\n - Support private_extern as macho specific extension to\n the GLOBAL directive. See section 7.8.5.\n\n - Updated UD0 encoding to match with the specification\n\n - Added the --limit-X command line option to set execution\n limits. See section 2.1.31.\n\n - Updated the Codeview version number to be aligned with\n MASM.\n\n - Added the --keep-all command line option to preserve\n output files. See section 2.1.32.\n\n - Added the --include command line option, an alias to -P\n (section 2.1.18).\n\n - Added the --help command line option as an alias to -h\n (section 3.1).\n\n - Added -W, -D, and -Q suffix aliases for RET instructions\n so the operand sizes of these instructions can be\n encoded without using o16, o32 or o64.\n\nNew upstream version 2.13.03 :\n\n - Add flags: AES, VAES, VPCLMULQDQ\n\n - Add VPCLMULQDQ instruction\n\n - elf: Add missing dwarf loc section\n\n - documentation updates This update was imported from the\n SUSE:SLE-15:Update update project.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1084631\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1086186\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1086227\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1086228\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1090519\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1090840\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1106878\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1107592\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1107594\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1108404\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1115758\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1115774\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1115795\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1173538\"\n );\n script_set_attribute(attribute:\"solution\", value:\"Update the affected nasm packages.\");\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:P/I:P/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:POC/RL:OF/RC:C\");\n script_set_cvss3_base_vector(\"CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H\");\n script_set_cvss3_temporal_vector(\"CVSS:3.0/E:P/RL:O/RC:C\");\n script_set_attribute(attribute:\"cvss_score_source\", value:\"CVE-2018-8881\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:nasm\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:nasm-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:nasm-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:opensuse:15.2\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/03/20\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2020/07/13\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2020/07/20\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2020-2022 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"SuSE Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/SuSE/release\", \"Host/SuSE/rpm-list\", \"Host/cpu\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"rpm.inc\");\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nrelease = get_kb_item(\"Host/SuSE/release\");\nif (isnull(release) || release =~ \"^(SLED|SLES)\") audit(AUDIT_OS_NOT, \"openSUSE\");\nif (release !~ \"^(SUSE15\\.2)$\") audit(AUDIT_OS_RELEASE_NOT, \"openSUSE\", \"15.2\", release);\nif (!get_kb_item(\"Host/SuSE/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\nourarch = get_kb_item(\"Host/cpu\");\nif (!ourarch) audit(AUDIT_UNKNOWN_ARCH);\nif (ourarch !~ \"^(i586|i686|x86_64)$\") audit(AUDIT_ARCH_NOT, \"i586 / i686 / x86_64\", ourarch);\n\nflag = 0;\n\nif ( rpm_check(release:\"SUSE15.2\", reference:\"nasm-2.14.02-lp152.4.3.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.2\", reference:\"nasm-debuginfo-2.14.02-lp152.4.3.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.2\", reference:\"nasm-debugsource-2.14.02-lp152.4.3.1\") ) flag++;\n\nif (flag)\n{\n if (report_verbosity > 0) security_warning(port:0, extra:rpm_report_get());\n else security_warning(0);\n exit(0);\n}\nelse\n{\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"nasm / nasm-debuginfo / nasm-debugsource\");\n}\n", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2022-05-15T13:56:53", "description": "This update for nasm fixes the following issues :\n\nnasm was updated to version 2.14.02.\n\nThis allows building of Mozilla Firefox 78ESR and also contains lots of bugfixes, security fixes and improvements.\n\nFix crash due to multiple errors or warnings during the code generation pass if a list file is specified.\n\nCreate all system-defined macros defore processing command-line given preprocessing directives (-p, -d, -u, --pragma, --before).\n\nIf debugging is enabled, define a __DEBUG_FORMAT__ predefined macro.\nSee section 4.11.7.\n\nFix an assert for the case in the obj format when a SEG operator refers to an EXTERN symbol declared further down in the code.\n\nFix a corner case in the floating-point code where a binary, octal or hexadecimal floating-point having at least 32, 11, or 8 mantissa digits could produce slightly incorrect results under very specific conditions.\n\nSupport -MD without a filename, for gcc compatibility. -MF can be used to set the dependencies output filename. See section 2.1.7.\n\nFix -E in combination with -MD. See section 2.1.21.\n\nFix missing errors on redefined labels; would cause convergence failure instead which is very slow and not easy to debug.\n\nDuplicate definitions of the same label with the same value is now explicitly permitted (2.14 would allow it in some circumstances.)\n\nAdd the option --no-line to ignore %line directives in the source. See section 2.1.33 and section 4.10.1.\n\nChanged -I option semantics by adding a trailing path separator unconditionally.\n\nFixed null dereference in corrupted invalid single line macros.\n\nFixed division by zero which may happen if source code is malformed.\n\nFixed out of bound access in processing of malformed segment override.\n\nFixed out of bound access in certain EQU parsing.\n\nFixed buffer underflow in float parsing.\n\nAdded SGX (Intel Software Guard Extensions) instructions.\n\nAdded +n syntax for multiple contiguous registers.\n\nFixed subsections_via_symbols for macho object format.\n\nAdded the --gprefix, --gpostfix, --lprefix, and --lpostfix command line options, to allow command line base symbol renaming. See section 2.1.28.\n\nAllow label renaming to be specified by %pragma in addition to from the command line. See section 6.9.\n\nSupported generic %pragma namespaces, output and debug. See section 6.10.\n\nAdded the --pragma command line option to inject a %pragma directive.\nSee section 2.1.29.\n\nAdded the --before command line option to accept preprocess statement before input. See section 2.1.30.\n\nAdded AVX512 VBMI2 (Additional Bit Manipulation), VNNI (Vector Neural Network), BITALG (Bit Algorithm), and GFNI (Galois Field New Instruction) instructions.\n\nAdded the STATIC directive for local symbols that should be renamed using global-symbol rules. See section 6.8.\n\nAllow a symbol to be defined as EXTERN and then later overridden as GLOBAL or COMMON. Furthermore, a symbol declared EXTERN and then defined will be treated as GLOBAL. See section 6.5.\n\nThe GLOBAL directive no longer is required to precede the definition of the symbol.\n\nSupport private_extern as macho specific extension to the GLOBAL directive. See section 7.8.5.\n\nUpdated UD0 encoding to match with the specification\n\nAdded the --limit-X command line option to set execution limits. See section 2.1.31.\n\nUpdated the Codeview version number to be aligned with MASM.\n\nAdded the --keep-all command line option to preserve output files. See section 2.1.32.\n\nAdded the --include command line option, an alias to -P (section 2.1.18).\n\nAdded the --help command line option as an alias to -h (section 3.1).\n\nAdded -W, -D, and -Q suffix aliases for RET instructions so the operand sizes of these instructions can be encoded without using o16, o32 or o64.\n\nNew upstream version 2.13.03 :\n\nAdd flags: AES, VAES, VPCLMULQDQ\n\nAdd VPCLMULQDQ instruction\n\nelf: Add missing dwarf loc section\n\ndocumentation updates\n\nNote that Tenable Network Security has extracted the preceding description block directly from the SUSE security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.", "cvss3": {"score": 7.8, "vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"}, "published": "2020-07-09T00:00:00", "type": "nessus", "title": "SUSE SLED15 / SLES15 Security Update : nasm (SUSE-SU-2020:1843-1)", "bulletinFamily": "scanner", "cvss2": {}, "cvelist": ["CVE-2018-1000667", "CVE-2018-10016", "CVE-2018-10254", "CVE-2018-10316", "CVE-2018-16382", "CVE-2018-16517", "CVE-2018-16999", "CVE-2018-19214", "CVE-2018-19215", "CVE-2018-19216", "CVE-2018-8881", "CVE-2018-8882", "CVE-2018-8883"], "modified": "2022-05-12T00:00:00", "cpe": ["p-cpe:/a:novell:suse_linux:nasm", "p-cpe:/a:novell:suse_linux:nasm-debuginfo", "p-cpe:/a:novell:suse_linux:nasm-debugsource", "cpe:/o:novell:suse_linux:15"], "id": "SUSE_SU-2020-1843-1.NASL", "href": "https://www.tenable.com/plugins/nessus/138316", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were\n# extracted from SUSE update advisory SUSE-SU-2020:1843-1.\n# The text itself is copyright (C) SUSE.\n#\n\ninclude('compat.inc');\n\nif (description)\n{\n script_id(138316);\n script_version(\"1.4\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2022/05/12\");\n\n script_cve_id(\n \"CVE-2018-8881\",\n \"CVE-2018-8882\",\n \"CVE-2018-8883\",\n \"CVE-2018-10016\",\n \"CVE-2018-10254\",\n \"CVE-2018-10316\",\n \"CVE-2018-16382\",\n \"CVE-2018-16517\",\n \"CVE-2018-16999\",\n \"CVE-2018-19214\",\n \"CVE-2018-19215\",\n \"CVE-2018-19216\",\n \"CVE-2018-1000667\"\n );\n\n script_name(english:\"SUSE SLED15 / SLES15 Security Update : nasm (SUSE-SU-2020:1843-1)\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"The remote SUSE host is missing one or more security updates.\");\n script_set_attribute(attribute:\"description\", value:\n\"This update for nasm fixes the following issues :\n\nnasm was updated to version 2.14.02.\n\nThis allows building of Mozilla Firefox 78ESR and also contains lots\nof bugfixes, security fixes and improvements.\n\nFix crash due to multiple errors or warnings during the code\ngeneration pass if a list file is specified.\n\nCreate all system-defined macros defore processing command-line given\npreprocessing directives (-p, -d, -u, --pragma, --before).\n\nIf debugging is enabled, define a __DEBUG_FORMAT__ predefined macro.\nSee section 4.11.7.\n\nFix an assert for the case in the obj format when a SEG operator\nrefers to an EXTERN symbol declared further down in the code.\n\nFix a corner case in the floating-point code where a binary, octal or\nhexadecimal floating-point having at least 32, 11, or 8 mantissa\ndigits could produce slightly incorrect results under very specific\nconditions.\n\nSupport -MD without a filename, for gcc compatibility. -MF can be used\nto set the dependencies output filename. See section 2.1.7.\n\nFix -E in combination with -MD. See section 2.1.21.\n\nFix missing errors on redefined labels; would cause convergence\nfailure instead which is very slow and not easy to debug.\n\nDuplicate definitions of the same label with the same value is now\nexplicitly permitted (2.14 would allow it in some circumstances.)\n\nAdd the option --no-line to ignore %line directives in the source. See\nsection 2.1.33 and section 4.10.1.\n\nChanged -I option semantics by adding a trailing path separator\nunconditionally.\n\nFixed null dereference in corrupted invalid single line macros.\n\nFixed division by zero which may happen if source code is malformed.\n\nFixed out of bound access in processing of malformed segment override.\n\nFixed out of bound access in certain EQU parsing.\n\nFixed buffer underflow in float parsing.\n\nAdded SGX (Intel Software Guard Extensions) instructions.\n\nAdded +n syntax for multiple contiguous registers.\n\nFixed subsections_via_symbols for macho object format.\n\nAdded the --gprefix, --gpostfix, --lprefix, and --lpostfix command\nline options, to allow command line base symbol renaming. See section\n2.1.28.\n\nAllow label renaming to be specified by %pragma in addition to from\nthe command line. See section 6.9.\n\nSupported generic %pragma namespaces, output and debug. See section\n6.10.\n\nAdded the --pragma command line option to inject a %pragma directive.\nSee section 2.1.29.\n\nAdded the --before command line option to accept preprocess statement\nbefore input. See section 2.1.30.\n\nAdded AVX512 VBMI2 (Additional Bit Manipulation), VNNI (Vector Neural\nNetwork), BITALG (Bit Algorithm), and GFNI (Galois Field New\nInstruction) instructions.\n\nAdded the STATIC directive for local symbols that should be renamed\nusing global-symbol rules. See section 6.8.\n\nAllow a symbol to be defined as EXTERN and then later overridden as\nGLOBAL or COMMON. Furthermore, a symbol declared EXTERN and then\ndefined will be treated as GLOBAL. See section 6.5.\n\nThe GLOBAL directive no longer is required to precede the definition\nof the symbol.\n\nSupport private_extern as macho specific extension to the GLOBAL\ndirective. See section 7.8.5.\n\nUpdated UD0 encoding to match with the specification\n\nAdded the --limit-X command line option to set execution limits. See\nsection 2.1.31.\n\nUpdated the Codeview version number to be aligned with MASM.\n\nAdded the --keep-all command line option to preserve output files. See\nsection 2.1.32.\n\nAdded the --include command line option, an alias to -P (section\n2.1.18).\n\nAdded the --help command line option as an alias to -h (section 3.1).\n\nAdded -W, -D, and -Q suffix aliases for RET instructions so the\noperand sizes of these instructions can be encoded without using o16,\no32 or o64.\n\nNew upstream version 2.13.03 :\n\nAdd flags: AES, VAES, VPCLMULQDQ\n\nAdd VPCLMULQDQ instruction\n\nelf: Add missing dwarf loc section\n\ndocumentation updates\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the SUSE security advisory. Tenable\nhas attempted to automatically clean and format it as much as possible\nwithout introducing additional issues.\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1084631\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1086186\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1086227\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1086228\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1090519\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1090840\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1106878\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1107592\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1107594\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1108404\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1115758\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1115774\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1115795\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.suse.com/show_bug.cgi?id=1173538\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-1000667/\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-10016/\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-10254/\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-10316/\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-16382/\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-16517/\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-16999/\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-19214/\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-19215/\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-19216/\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-8881/\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-8882/\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.suse.com/security/cve/CVE-2018-8883/\");\n # https://www.suse.com/support/update/announcement/2020/suse-su-20201843-1\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?892c4a93\");\n script_set_attribute(attribute:\"solution\", value:\n\"To install this SUSE Security Update use the SUSE recommended\ninstallation methods like YaST online_update or 'zypper patch'.\n\nAlternatively you can run the command listed for your product :\n\nSUSE Linux Enterprise Module for Development Tools 15-SP2 :\n\nzypper in -t patch\nSUSE-SLE-Module-Development-Tools-15-SP2-2020-1843=1\n\nSUSE Linux Enterprise Module for Development Tools 15-SP1 :\n\nzypper in -t patch\nSUSE-SLE-Module-Development-Tools-15-SP1-2020-1843=1\");\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:P/I:P/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:POC/RL:OF/RC:C\");\n script_set_cvss3_base_vector(\"CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H\");\n script_set_cvss3_temporal_vector(\"CVSS:3.0/E:P/RL:O/RC:C\");\n script_set_attribute(attribute:\"cvss_score_source\", value:\"CVE-2018-8881\");\n script_set_attribute(attribute:\"cvss3_score_source\", value:\"CVE-2018-8883\");\n\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/03/20\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2020/07/06\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2020/07/09\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:nasm\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:nasm-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:nasm-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:suse_linux:15\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"SuSE Local Security Checks\");\n\n script_copyright(english:\"This script is Copyright (C) 2020-2022 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/cpu\", \"Host/SuSE/release\", \"Host/SuSE/rpm-list\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"rpm.inc\");\n\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nrelease = get_kb_item(\"Host/SuSE/release\");\nif (isnull(release) || release !~ \"^(SLED|SLES)\") audit(AUDIT_OS_NOT, \"SUSE\");\nos_ver = pregmatch(pattern: \"^(SLE(S|D)\\d+)\", string:release);\nif (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, \"SUSE\");\nos_ver = os_ver[1];\nif (! preg(pattern:\"^(SLED15|SLES15)$\", string:os_ver)) audit(AUDIT_OS_NOT, \"SUSE SLED15 / SLES15\", \"SUSE \" + os_ver);\n\nif (!get_kb_item(\"Host/SuSE/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\ncpu = get_kb_item(\"Host/cpu\");\nif (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);\nif (cpu !~ \"^i[3-6]86$\" && \"x86_64\" >!< cpu && \"s390x\" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, \"SUSE \" + os_ver, cpu);\n\nsp = get_kb_item(\"Host/SuSE/patchlevel\");\nif (isnull(sp)) sp = \"0\";\nif (os_ver == \"SLES15\" && (! preg(pattern:\"^(1|2)$\", string:sp))) audit(AUDIT_OS_NOT, \"SLES15 SP1/2\", os_ver + \" SP\" + sp);\nif (os_ver == \"SLED15\" && (! preg(pattern:\"^(1|2)$\", string:sp))) audit(AUDIT_OS_NOT, \"SLED15 SP1/2\", os_ver + \" SP\" + sp);\n\n\nflag = 0;\nif (rpm_check(release:\"SLES15\", sp:\"1\", reference:\"nasm-2.14.02-3.4.1\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"1\", reference:\"nasm-debuginfo-2.14.02-3.4.1\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"1\", reference:\"nasm-debugsource-2.14.02-3.4.1\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"2\", reference:\"nasm-2.14.02-3.4.1\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"2\", reference:\"nasm-debuginfo-2.14.02-3.4.1\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"2\", reference:\"nasm-debugsource-2.14.02-3.4.1\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"1\", reference:\"nasm-2.14.02-3.4.1\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"1\", reference:\"nasm-debuginfo-2.14.02-3.4.1\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"1\", reference:\"nasm-debugsource-2.14.02-3.4.1\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"2\", reference:\"nasm-2.14.02-3.4.1\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"2\", reference:\"nasm-debuginfo-2.14.02-3.4.1\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"2\", reference:\"nasm-debugsource-2.14.02-3.4.1\")) flag++;\n\n\nif (flag)\n{\n if (report_verbosity > 0) security_warning(port:0, extra:rpm_report_get());\n else security_warning(0);\n exit(0);\n}\nelse\n{\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"nasm\");\n}\n", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}], "suse": [{"lastseen": "2022-04-21T22:48:21", "description": "An update that solves 13 vulnerabilities and has one errata\n is now available.\n\nDescription:\n\n\n This update for nasm fixes the following issues:\n\n nasm was updated to version 2.14.02.\n\n This allows building of Mozilla Firefox 78ESR and also contains lots of\n bugfixes, security fixes and improvements.\n\n * Fix crash due to multiple errors or warnings during the code generation\n pass if a list file is specified.\n * Create all system-defined macros defore processing command-line given\n preprocessing directives (-p, -d, -u, --pragma, --before).\n * If debugging is enabled, define a __DEBUG_FORMAT__ predefined macro. See\n section 4.11.7.\n * Fix an assert for the case in the obj format when a SEG operator refers\n to an EXTERN symbol declared further down in the code.\n * Fix a corner case in the floating-point code where a binary, octal or\n hexadecimal floating-point having at least 32, 11, or 8 mantissa digits\n could produce slightly incorrect results under very specific conditions.\n * Support -MD without a filename, for gcc compatibility. -MF can be used\n to set the dependencies output filename. See section 2.1.7.\n * Fix -E in combination with -MD. See section 2.1.21.\n * Fix missing errors on redefined labels; would cause convergence failure\n instead which is very slow and not easy to debug.\n * Duplicate definitions of the same label with the same value is now\n explicitly permitted (2.14 would allow it in some circumstances.)\n * Add the option --no-line to ignore %line directives in the source. See\n section 2.1.33 and section 4.10.1.\n * Changed -I option semantics by adding a trailing path separator\n unconditionally.\n * Fixed null dereference in corrupted invalid single line macros.\n * Fixed division by zero which may happen if source code is malformed.\n * Fixed out of bound access in processing of malformed segment override.\n * Fixed out of bound access in certain EQU parsing.\n * Fixed buffer underflow in float parsing.\n * Added SGX (Intel Software Guard Extensions) instructions.\n * Added +n syntax for multiple contiguous registers.\n * Fixed subsections_via_symbols for macho object format.\n * Added the --gprefix, --gpostfix, --lprefix, and --lpostfix command line\n options, to allow command line base symbol renaming. See section 2.1.28.\n * Allow label renaming to be specified by %pragma in addition to from the\n command line. See section 6.9.\n * Supported generic %pragma namespaces, output and debug. See section 6.10.\n * Added the --pragma command line option to inject a %pragma directive.\n See section 2.1.29.\n * Added the --before command line option to accept preprocess statement\n before input. See section 2.1.30.\n * Added AVX512 VBMI2 (Additional Bit Manipulation), VNNI (Vector Neural\n Network), BITALG (Bit Algorithm), and GFNI (Galois Field New\n Instruction) instructions.\n * Added the STATIC directive for local symbols that should be renamed\n using global-symbol rules. See section 6.8.\n * Allow a symbol to be defined as EXTERN and then later overridden as\n GLOBAL or COMMON. Furthermore, a symbol declared EXTERN and then defined\n will be treated as GLOBAL. See section 6.5.\n * The GLOBAL directive no longer is required to precede the definition of\n the symbol.\n * Support private_extern as macho specific extension to the GLOBAL\n directive. See section 7.8.5.\n * Updated UD0 encoding to match with the specification\n * Added the --limit-X command line option to set execution limits. See\n section 2.1.31.\n * Updated the Codeview version number to be aligned with MASM.\n * Added the --keep-all command line option to preserve output files. See\n section 2.1.32.\n * Added the --include command line option, an alias to -P (section 2.1.18).\n * Added the --help command line option as an alias to -h (section 3.1).\n * Added -W, -D, and -Q suffix aliases for RET instructions so the operand\n sizes of these instructions can be encoded without using o16, o32 or o64.\n\n New upstream version 2.13.03:\n\n * Add flags: AES, VAES, VPCLMULQDQ\n * Add VPCLMULQDQ instruction\n * elf: Add missing dwarf loc section\n * documentation updates\n\n This update was imported from the SUSE:SLE-15:Update update project.\n\n\nPatch Instructions:\n\n To install this openSUSE Security Update use the SUSE recommended installation methods\n like YaST online_update or \"zypper patch\".\n\n Alternatively you can run the command listed for your product:\n\n - openSUSE Leap 15.2:\n\n zypper in -t patch openSUSE-2020-954=1", "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.8, "vectorString": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.0", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2020-07-13T00:00:00", "type": "suse", "title": "Security update for nasm (moderate)", "bulletinFamily": "unix", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "PARTIAL", "availabilityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "baseScore": 6.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 6.4, "obtainUserPrivilege": false}, "cvelist": ["CVE-2018-1000667", "CVE-2018-10016", "CVE-2018-10254", "CVE-2018-10316", "CVE-2018-16382", "CVE-2018-16517", "CVE-2018-16999", "CVE-2018-19214", "CVE-2018-19215", "CVE-2018-19216", "CVE-2018-8881", "CVE-2018-8882", "CVE-2018-8883"], "modified": "2020-07-13T00:00:00", "id": "OPENSUSE-SU-2020:0954-1", "href": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/W7JG7QO2J6GPYXBPONYRKYBTFH2XDJZJ/", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2022-04-21T22:48:21", "description": "An update that solves 13 vulnerabilities and has one errata\n is now available.\n\nDescription:\n\n\n This update for nasm fixes the following issues:\n\n nasm was updated to version 2.14.02.\n\n This allows building of Mozilla Firefox 78ESR and also contains lots of\n bugfixes, security fixes and improvements.\n\n * Fix crash due to multiple errors or warnings during the code generation\n pass if a list file is specified.\n * Create all system-defined macros defore processing command-line given\n preprocessing directives (-p, -d, -u, --pragma, --before).\n * If debugging is enabled, define a __DEBUG_FORMAT__ predefined macro. See\n section 4.11.7.\n * Fix an assert for the case in the obj format when a SEG operator refers\n to an EXTERN symbol declared further down in the code.\n * Fix a corner case in the floating-point code where a binary, octal or\n hexadecimal floating-point having at least 32, 11, or 8 mantissa digits\n could produce slightly incorrect results under very specific conditions.\n * Support -MD without a filename, for gcc compatibility. -MF can be used\n to set the dependencies output filename. See section 2.1.7.\n * Fix -E in combination with -MD. See section 2.1.21.\n * Fix missing errors on redefined labels; would cause convergence failure\n instead which is very slow and not easy to debug.\n * Duplicate definitions of the same label with the same value is now\n explicitly permitted (2.14 would allow it in some circumstances.)\n * Add the option --no-line to ignore %line directives in the source. See\n section 2.1.33 and section 4.10.1.\n * Changed -I option semantics by adding a trailing path separator\n unconditionally.\n * Fixed null dereference in corrupted invalid single line macros.\n * Fixed division by zero which may happen if source code is malformed.\n * Fixed out of bound access in processing of malformed segment override.\n * Fixed out of bound access in certain EQU parsing.\n * Fixed buffer underflow in float parsing.\n * Added SGX (Intel Software Guard Extensions) instructions.\n * Added +n syntax for multiple contiguous registers.\n * Fixed subsections_via_symbols for macho object format.\n * Added the --gprefix, --gpostfix, --lprefix, and --lpostfix command line\n options, to allow command line base symbol renaming. See section 2.1.28.\n * Allow label renaming to be specified by %pragma in addition to from the\n command line. See section 6.9.\n * Supported generic %pragma namespaces, output and debug. See section 6.10.\n * Added the --pragma command line option to inject a %pragma directive.\n See section 2.1.29.\n * Added the --before command line option to accept preprocess statement\n before input. See section 2.1.30.\n * Added AVX512 VBMI2 (Additional Bit Manipulation), VNNI (Vector Neural\n Network), BITALG (Bit Algorithm), and GFNI (Galois Field New\n Instruction) instructions.\n * Added the STATIC directive for local symbols that should be renamed\n using global-symbol rules. See section 6.8.\n * Allow a symbol to be defined as EXTERN and then later overridden as\n GLOBAL or COMMON. Furthermore, a symbol declared EXTERN and then defined\n will be treated as GLOBAL. See section 6.5.\n * The GLOBAL directive no longer is required to precede the definition of\n the symbol.\n * Support private_extern as macho specific extension to the GLOBAL\n directive. See section 7.8.5.\n * Updated UD0 encoding to match with the specification\n * Added the --limit-X command line option to set execution limits. See\n section 2.1.31.\n * Updated the Codeview version number to be aligned with MASM.\n * Added the --keep-all command line option to preserve output files. See\n section 2.1.32.\n * Added the --include command line option, an alias to -P (section 2.1.18).\n * Added the --help command line option as an alias to -h (section 3.1).\n * Added -W, -D, and -Q suffix aliases for RET instructions so the operand\n sizes of these instructions can be encoded without using o16, o32 or o64.\n\n New upstream version 2.13.03:\n\n * Add flags: AES, VAES, VPCLMULQDQ\n * Add VPCLMULQDQ instruction\n * elf: Add missing dwarf loc section\n * documentation updates\n\n This update was imported from the SUSE:SLE-15:Update update project.\n\n\nPatch Instructions:\n\n To install this openSUSE Security Update use the SUSE recommended installation methods\n like YaST online_update or \"zypper patch\".\n\n Alternatively you can run the command listed for your product:\n\n - openSUSE Leap 15.1:\n\n zypper in -t patch openSUSE-2020-952=1", "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.8, "vectorString": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.0", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2020-07-13T00:00:00", "type": "suse", "title": "Security update for nasm (moderate)", "bulletinFamily": "unix", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "PARTIAL", "availabilityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "baseScore": 6.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 6.4, "obtainUserPrivilege": false}, "cvelist": ["CVE-2018-1000667", "CVE-2018-10016", "CVE-2018-10254", "CVE-2018-10316", "CVE-2018-16382", "CVE-2018-16517", "CVE-2018-16999", "CVE-2018-19214", "CVE-2018-19215", "CVE-2018-19216", "CVE-2018-8881", "CVE-2018-8882", "CVE-2018-8883"], "modified": "2020-07-13T00:00:00", "id": "OPENSUSE-SU-2020:0952-1", "href": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/DOJ3G66H5CLZFCUKGB4363DLYQJJULTG/", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}]}