-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathall_exploits.py
92 lines (90 loc) · 2.99 KB
/
all_exploits.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
from exploits.linux.CVE20177308 import CVE20177308
from exploits.linux.CVE20171000379 import CVE20171000379
from exploits.linux.CVE20030961 import CVE20030961
from exploits.linux.CVE20091185 import CVE20091185
from exploits.linux.CVE20102959 import CVE20102959
from exploits.linux.CVE20104347 import CVE20104347
from exploits.linux.CVE20132094_32 import CVE20132094_32
from exploits.linux.CVE20132094_64 import CVE20132094_64
from exploits.linux.CVE20132094_semtex import CVE20132094_semtex
from exploits.linux.CVE20140038 import CVE20140038
from exploits.linux.CVE20140038_2 import CVE20140038_2
from exploits.linux.CVE20140196 import CVE20140196
from exploits.linux.CVE20143153 import CVE20143153
from exploits.linux.CVE20144014 import CVE20144014
from exploits.linux.CVE20144699 import CVE20144699
from exploits.linux.CVE20151328_32 import CVE20151328_32
from exploits.linux.CVE20151328_64 import CVE20151328_64
from exploits.linux.CVE20160728 import CVE20160728
from exploits.linux.CVE20162384 import CVE20162384
from exploits.linux.CVE20165195_32 import CVE20165195_32
from exploits.linux.CVE20165195_32_poke import CVE20165195_32_poke
from exploits.linux.CVE20165195_64 import CVE20165195_64
from exploits.linux.CVE20165195_64_poke import CVE20165195_64_poke
from exploits.linux.CVE20173630 import CVE20173630
from exploits.linux.CVE20175123 import CVE20175123
from exploits.linux.CVE20176074 import CVE20176074
from exploits.linux.CVE201716996 import CVE201716996
from exploits.linux.CVE20171000112 import CVE20171000112
from exploits.linux.CVE20171000367 import CVE20171000367
from exploits.linux.CVE20171000370 import CVE20171000370
from exploits.linux.CVE20171000371 import CVE20171000371
from exploits.linux.CVE20171000372 import CVE20171000372
from exploits.linux.CVE20171000373 import CVE20171000373
from exploits.linux.CVE20040077 import CVE20040077
from exploits.linux.CVE20041235 import CVE20041235
from exploits.linux.CVE20050736 import CVE20050736
from exploits.linux.CVE20062451 import CVE20062451
from exploits.linux.CVE20063626 import CVE20063626
from exploits.linux.CVE20080600 import CVE20080600
from exploits.linux.CVE20080900 import CVE20080900
from exploits.linux.CVE20084210 import CVE20084210
from exploits.mac.CVE20164656 import CVE20164656
from exploits.mac.CVE20155889 import CVE20155889
from exploits.mac.NULLROOT import NULLROOT
all_exploits = [
CVE20040077,
CVE20041235,
CVE20050736,
CVE20062451,
CVE20063626,
CVE20080600,
CVE20080900,
CVE20084210,
CVE20177308,
CVE20171000379,
CVE20030961,
CVE20091185,
CVE20102959,
CVE20104347,
CVE20132094_32,
CVE20132094_64,
CVE20132094_semtex,
CVE20140038,
CVE20140038_2,
CVE20140196,
CVE20143153,
CVE20144014,
CVE20144699,
CVE20151328_32,
CVE20151328_64,
CVE20160728,
CVE20162384,
CVE20165195_32,
CVE20165195_32_poke,
CVE20165195_64,
CVE20165195_64_poke,
CVE20173630,
CVE20175123,
CVE20176074,
CVE201716996,
CVE20171000112,
CVE20171000367,
CVE20171000370,
CVE20171000371,
CVE20171000372,
CVE20171000373,
CVE20164656,
CVE20155889,
NULLROOT,
]