Changeset 1480
- Timestamp:
- 12/04/07 22:34:13 (9 months ago)
- Files:
-
- phoneyc/trunk/ActiveX.py (modified) (2 diffs)
- phoneyc/trunk/modules/jscript/VLC.js (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
phoneyc/trunk/ActiveX.py
r1459 r1480 27 27 self.clsid['FDC7A535-4070-4B92-A0EA-D9994BCC0DC5'] = RealPlayer() 28 28 self.clsid['5D86DDB5-BDF9-441B-9E9E-D4730F4EE499'] = BitDefender() 29 self.clsid['E23FE9C6-778E-49D4-B537-38FCDE4887D8'] = VLC() 29 30 30 31 self.clsname = {} … … 190 191 self.classname = 'BitDefender' 191 192 self.cve_id = ('CVE-2007-5775', ) 192 self.descriptin = 'BitDefender Online Scanner ActiveX Control' 193 self.description = 'BitDefender Online Scanner ActiveX Control' 194 195 class VLC(ActiveX): 196 def __init__(self): 197 self.js_src = self.load_js_src('VLC.js') 198 self.classname = 'VLC' 199 self.cve_id = ('CVE-NOMATCH', ) 200 self.description = 'VLC ActiveX Control'
