Skip to content

Commit aacebfd

Browse files
committed
add CVEs and refs to fix commits
1 parent d00d314 commit aacebfd

File tree

10 files changed

+41
-1
lines changed

10 files changed

+41
-1
lines changed

dot-prop/META.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
|CVE|Fix|
2+
| --- | --- |
3+
| CVE-2020-8116 | https://github.com/sindresorhus/dot-prop/commit/3039c8c07f6fdaa8b595ec869ae0895686a7a0f2 |

dot-prop/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Get, set, or delete a property from a nested object using a dot path
44

55
**Latest version:** `6.0.1`
66

7+
|CVE|Fix|
8+
| --- | --- |
9+
| CVE-2020-8116 | https://github.com/sindresorhus/dot-prop/commit/3039c8c07f6fdaa8b595ec869ae0895686a7a0f2 |
10+
711
## Exploits
812

913
```javascript

express-fileupload/META.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
|CVE|Fix|
2+
| --- | --- |
3+
| CVE-2020-7699 | https://github.com/richardgirges/express-fileupload/commit/9fca550f08a9dc07cc3500921f4fa7879cf88b8f, https://github.com/richardgirges/express-fileupload/pull/237/files |

express-fileupload/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Simple express file upload middleware that wraps around Busboy
44

55
**Latest version:** `1.2.1`
66

7+
|CVE|Fix|
8+
| --- | --- |
9+
| CVE-2020-7699 | https://github.com/richardgirges/express-fileupload/commit/9fca550f08a9dc07cc3500921f4fa7879cf88b8f, https://github.com/richardgirges/express-fileupload/pull/237/files |
10+
711
## Exploits
812

913
```javascript

extend/META.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
|CVE|Fix|
2+
| --- | --- |
3+
| CVE-2018-16492 | https://github.com/justmoon/node-extend/commit/0e68e71d93507fcc391e398bc84abd0666b28190 |

ini/META.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
|CVE|Fix|
2+
| --- | --- |
3+
| CVE-2020-7788 | https://github.com/npm/ini/commit/56d2805e07ccd94e2ba0984ac9240ff02d44b6f1 |

ini/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ An ini encoder/decoder for node
44

55
**Latest version:** `2.0.0`
66

7+
|CVE|Fix|
8+
| --- | --- |
9+
| CVE-2020-7788 | https://github.com/npm/ini/commit/56d2805e07ccd94e2ba0984ac9240ff02d44b6f1 |
10+
711
## Exploits
812

913
```javascript

make-md.sh

+8-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,14 @@ for PACKAGE_VERSION in $PACKAGE_VERSIONS; do
4141
done
4242
done
4343

44-
MARKDOWN_OUTPUT="# $PACKAGE_NAME$NL$NL$PACKAGE_DESCRIPTION$NL$NL**Latest version:** $ACCENT$PACKAGE_LATEST_VERSION$ACCENT$NL$NL## Exploits"
44+
MARKDOWN_OUTPUT="# $PACKAGE_NAME$NL$NL$PACKAGE_DESCRIPTION$NL$NL**Latest version:** $ACCENT$PACKAGE_LATEST_VERSION$ACCENT$NL$NL"
45+
46+
if [ -f "$PACKAGE_NAME/META.md" ]; then
47+
META=$(cat "$PACKAGE_NAME/META.md")
48+
MARKDOWN_OUTPUT="$MARKDOWN_OUTPUT$META$NL$NL"
49+
fi
50+
51+
MARKDOWN_OUTPUT="$MARKDOWN_OUTPUT## Exploits"
4552

4653
for EXPLOIT_MD_PATH in $(find "$PACKAGE_NAME" -name \*.js.tmd); do
4754
MARKDOWN_OUTPUT="$MARKDOWN_OUTPUT$NL$NL$(cat "$EXPLOIT_MD_PATH")"

merge/META.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
|CVE|Fix|
2+
| --- | --- |
3+
| CVE-2020-28499 | https://github.com/yeikos/js.merge/commit/7b0ddc2701d813f2ba289b32d6a4b9d4cc235fb4 |
4+
| CVE-2018-16469 | https://github.com/yeikos/js.merge/commit/6ad6035b901b3d680beac82de39ca83a93885246 |

merge/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
**Latest version:** `2.1.1`
66

7+
|CVE|Fix|
8+
| --- | --- |
9+
| CVE-2020-28499 | https://github.com/yeikos/js.merge/commit/7b0ddc2701d813f2ba289b32d6a4b9d4cc235fb4 |
10+
| CVE-2018-16469 | https://github.com/yeikos/js.merge/commit/6ad6035b901b3d680beac82de39ca83a93885246 |
11+
712
## Exploits
813

914
```javascript

0 commit comments

Comments
 (0)