Lines Matching full:http
16 '': 'http://cpe.mitre.org/dictionary/2.0',
17 'cpe-23': 'http://scap.nist.gov/schema/cpe-extension/2.3',
18 'xml': 'http://www.w3.org/XML/1998/namespace'
30 ET.register_namespace('', 'http://cpe.mitre.org/dictionary/2.0')
32 cpes.set('xmlns:cpe-23', "http://scap.nist.gov/schema/cpe-extension/2.3")
33 cpes.set('xmlns:ns6', "http://scap.nist.gov/schema/scap-core/0.1")
34 cpes.set('xmlns:scap-core', "http://scap.nist.gov/schema/scap-core/0.3")
35 cpes.set('xmlns:config', "http://scap.nist.gov/schema/configuration/0.1")
36 cpes.set('xmlns:xsi', "http://www.w3.org/2001/XMLSchema-instance")
37 cpes.set('xmlns:meta', "http://scap.nist.gov/schema/cpe-dictionary-metadata/0.2")
38 cpes.set('xsi:schemaLocation', " ".join(["http://scap.nist.gov/schema/cpe-extension/2.3",
40 "http://cpe.mitre.org/dictionary/2.0",
42 … "http://scap.nist.gov/schema/cpe-dictionary-metadata/0.2",
44 "http://scap.nist.gov/schema/scap-core/0.3",
46 "http://scap.nist.gov/schema/configuration/0.1",
48 "http://scap.nist.gov/schema/scap-core/0.1",
120 for cpe in all_cpedb.findall(".//{http://cpe.mitre.org/dictionary/2.0}cpe-item"):
122 … for title in cpe.findall('.//{http://cpe.mitre.org/dictionary/2.0}title[@xml:lang="en-US"]', ns):
129 cpe_ref = cpe.find(".//{http://cpe.mitre.org/dictionary/2.0}references")
131 for ref in cpe_ref.findall(".//{http://cpe.mitre.org/dictionary/2.0}reference"):
139 … cpe_str = cpe.find(".//{http://scap.nist.gov/schema/cpe-extension/2.3}cpe23-item").get('name')