Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit e526fad

Browse files
committed
Adding support for windows 10
1 parent b1586cc commit e526fad

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

LICENSE.md

100644100755
File mode changed.

README.md

100644100755
File mode changed.

windows-exploit-suggester.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
#
33
# Windows Exploit Suggester
4-
# revision 2.7, 2015-07-30
4+
# revision 2.9, 2015-09-16
55
#
66
# author: Sam Bertram, Gotham Digital Science
77
@@ -158,6 +158,9 @@
158158
# TODO automatically install python module? xlrd.
159159
#
160160
# CHANGE LOG
161+
# v29 2015-09-16
162+
# - adding support for windows 10
163+
#
161164
# v28 2015-07-30
162165
# - added bulletin scraping for xlsx and xls files using regex. thanks to
163166
# edebernis for reporting the bug
@@ -317,7 +320,7 @@
317320

318321
# constants/globals
319322
MSSB_URL = 'http://www.microsoft.com/en-gb/download/confirmation.aspx?id=36982'
320-
VERSION = "25"
323+
VERSION = "2.9"
321324

322325
# global parser
323326
parser = argparse.ArgumentParser(description="search microsoft security bulletins for exploits based upon the patch level of the machine by feeding in systeminfo command")
@@ -908,7 +911,8 @@ def getname(ostext):
908911
[" 7","7"],
909912
[" 8","8"],
910913
["2012","2012"],
911-
["8.1","8.1"]]
914+
["8.1","8.1"],
915+
["10","10"]]
912916

913917
for needle in osnamearray:
914918
ostext = ostext.lower()

0 commit comments

Comments
 (0)