| Reporter | Title | Published | Views | Family All 33 |
|---|---|---|---|---|
| F5 BIG-IP 11.6 SSL Virtual Server - Ticketbleed Memory Disclosure Exploit | 12 Apr 201800:00 | – | zdt | |
| CVE-2016-9244 | 15 Feb 202400:48 | – | circl | |
| F5 TicketBleed Vulnerability in BIG-IP Devices | 9 Feb 201700:00 | – | cnvd | |
| F5 Big-IP TLS Information Disclosure (Ticketbleed; CVE-2016-9244) | 16 Feb 201700:00 | – | checkpoint_advisories | |
| CVE-2016-9244 | 9 Feb 201715:00 | – | cve | |
| CVE-2016-9244 | 9 Feb 201715:00 | – | cvelist | |
| F5 BIG-IP SSL Virtual Server - 'Ticketbleed' Memory Disclosure | 10 Feb 201700:00 | – | exploitdb | |
| F5 BIG-IP 11.6 SSL Virtual Server - 'Ticketbleed' Memory Disclosure | 14 Feb 201700:00 | – | exploitdb | |
| F5 BIG-IP 11.6 SSL Virtual Server - Ticketbleed Memory Disclosure | 14 Feb 201700:00 | – | exploitpack | |
| F5 BIG-IP SSL Virtual Server - Ticketbleed Memory Disclosure | 10 Feb 201700:00 | – | exploitpack |
package main
import (
"crypto/tls"
"fmt"
"log"
"strings"
)
var Target = "example.com:443"
func main() {
conf := &tls.Config{
InsecureSkipVerify: true,
ClientSessionCache: tls.NewLRUClientSessionCache(32),
}
conn, err := tls.Dial("tcp", Target, conf)
if err != nil {
log.Fatalln("Failed to connect:", err)
}
conn.Close()
conn, err = tls.Dial("tcp", Target, conf)
if err != nil && strings.Contains(err.Error(), "unexpected message") {
fmt.Println(Target, "is vulnerable to Ticketbleed")
} else if err != nil {
log.Fatalln("Failed to reconnect:", err)
} else {
fmt.Println(Target, "does NOT appear to be vulnerable")
conn.Close()
}
}
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation