lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <002d01c3216f$b960a130$0300a8c0@goliath> From: galiarept at phreaker.net (GaLiaRePt) Subject: Fw: bug in uml_net There is a vulnerability in uml_net. The latest version is vulnerable too. The problem is the lack of bounds checking in uml_net.c from uml_utilities, A possible attack could lead to root compromise on some systems since for example uml_net comes suided root in RH 8.0 by default. Suggested patch: - if(v > CURRENT_VERSION){ + if ((v > CURRENT_VERSION) || (v < 0)) { Contact: ktha@...hmail.com