bug fixes and added cve-2014-0196

This commit is contained in:
Andrew Davies 2014-05-19 00:18:10 +01:00
commit 9db2f5a2af

View file

@ -60,7 +60,7 @@ sub get_kernel {
# partial kernels might be provided by the user,
# such as '2.4' or '2.6.'
my $is_partial = $khost =~ /^\d+\.\d+\.\d/ ? 0 : 1;
my $is_partial = $khost =~ /^\d+\.\d+\.?\d?/ ? 0 : 1;
if ( $is_partial and substr($khost,-1) ne '.' ) {
$khost .= '.';
}
@ -466,11 +466,22 @@ sub get_exploits {
},
'timeoutpwn' => {
vuln => [
'3.4','3.5','3.6','3.7','3.8','3.9','3.10',
'3.4', '3.5', '3.6', '3.7', '3.8', '3.8.9', '3.9', '3.10',
'3.11', '3.12', '3.13', '3.4.0', '3.5.0', '3.6.0', '3.7.0',
'3.8.0','3.8.5', '3.8.6', '3.8.9', '3.9.0', '3.9.6',
'3.10.0','3.10.6', '3.11.0','3.12.0','3.13.0','3.13.1'
],
cve => '2014-0038',
mil => 'http://www.exploit-db.com/exploits/31346/',
},
'rawmodePTY' => {
vuln => [
'2.6.31', '2.6.32', '2.6.33', '2.6.34', '2.6.35', '2.6.36', '2.6.37',
'2.6.38', '2.6.39', '3.14', '3.15'
],
cve => '2014-0196',
mil => 'http://packetstormsecurity.com/files/download/126603/cve-2014-0196-md.c',
},
);
}
@ -499,6 +510,8 @@ Andy (c) 10-07-2009
Thanks to Brian for bugfixes, and sploit additions.
=head1 CHANGELOG
19-04-2014 added cve-2014-0196 and bug fixes (Andy)
05-09-2013 code cleanup/optimizations and partial kernel feature (garu)
28-08-2013 added msr driver (Andy)