Skip to content

Commit 215bc81

Browse files
committed
✨ add 1.6.5-sec tests
1 parent 4685621 commit 215bc81

File tree

9 files changed

+18950
-0
lines changed

9 files changed

+18950
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ In a perfect world, at least every MAJOR EOL jQuery release line would have a se
4747
> [!NOTE]
4848
> The 3.x release line is currently supported by jQuery, so we have no need to provide patched versions of 3.x at this time. jQuery 3.5 introduced a breaking change, but it was necessary to fix CVE-2020-11022 and CVE-2020-11023. However, since these vulnerabilities are present in virtually all versions of jQuery, there would be no value in providing a patched version of 3.4 as it would need to include that breaking change anyway.
4949
50+
## Contributing
51+
52+
See [security/README.md](./security/README.md)
53+
5054
## Goals
5155

5256
Ultimately, our hope is that these patched versions can be approved and accepted by the official jQuery project/maintainers and deployed as official jQuery releases.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<title>jQuery Security Acceptance Tests</title>
8+
<link rel="stylesheet" href="styles.css" />
9+
<script src="jquery-1.6.4.js"></script>
10+
<script src="main.js"></script>
11+
</head>
12+
<body>
13+
<div id="grid">
14+
<div id="button-container">
15+
<button type="button" onclick="CVE_2012_6708();">CVE-2012-6708</button>
16+
<button type="button" onclick="CVE_2015_9251();">CVE-2015-9251</button>
17+
<button type="button" onclick="CVE_2019_11358();">CVE-2019-11358</button>
18+
<button type="button" onclick="CVE_2020_7656();">CVE-2020-7656</button>
19+
<button type="button" onclick="CVE_2020_11022();">CVE-2020-11022</button>
20+
<button type="button" onclick="CVE_2020_11023();">CVE-2020-11023</button>
21+
</div>
22+
<div id="log">
23+
24+
</div>
25+
</div>
26+
<div id="yee"></div>
27+
</body>
28+
</html>
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<title>jQuery Security Acceptance Tests</title>
8+
<link rel="stylesheet" href="styles.css" />
9+
<script src="jquery-1.6.5-sec.js"></script>
10+
<script src="main.js"></script>
11+
</head>
12+
<body>
13+
<div id="grid">
14+
<div id="button-container">
15+
<button type="button" onclick="CVE_2012_6708();">CVE-2012-6708</button>
16+
<button type="button" onclick="CVE_2015_9251();">CVE-2015-9251</button>
17+
<button type="button" onclick="CVE_2019_11358();">CVE-2019-11358</button>
18+
<button type="button" onclick="CVE_2020_7656();">CVE-2020-7656</button>
19+
<button type="button" onclick="CVE_2020_11022();">CVE-2020-11022</button>
20+
<button type="button" onclick="CVE_2020_11023();">CVE-2020-11023</button>
21+
</div>
22+
<div id="log">
23+
24+
</div>
25+
</div>
26+
<div id="yee"></div>
27+
</body>
28+
</html>

0 commit comments

Comments
 (0)