From faeff51fa1b9d3fa2dfdedfeb5a3285729130761 Mon Sep 17 00:00:00 2001 From: Brendan O'Leary Date: Sat, 4 Mar 2023 15:22:36 -0500 Subject: [PATCH] Add 8 new OSINT templates --- osint/cal.yaml | 25 +++++++++++++++++++++++++ osint/ctflearn.yaml | 29 +++++++++++++++++++++++++++++ osint/npmjs.yaml | 24 ++++++++++++++++++++++++ osint/polywork.yaml | 29 +++++++++++++++++++++++++++++ osint/postnews.yaml | 30 ++++++++++++++++++++++++++++++ osint/skillshare.yaml | 24 ++++++++++++++++++++++++ osint/tmdb.yaml | 24 ++++++++++++++++++++++++ osint/tryhackme.yaml | 24 ++++++++++++++++++++++++ 8 files changed, 209 insertions(+) create mode 100644 osint/cal.yaml create mode 100644 osint/ctflearn.yaml create mode 100644 osint/npmjs.yaml create mode 100644 osint/polywork.yaml create mode 100644 osint/postnews.yaml create mode 100644 osint/skillshare.yaml create mode 100644 osint/tmdb.yaml create mode 100644 osint/tryhackme.yaml diff --git a/osint/cal.yaml b/osint/cal.yaml new file mode 100644 index 0000000000..a31e53ef3b --- /dev/null +++ b/osint/cal.yaml @@ -0,0 +1,25 @@ +id: cal + +info: + name: cal + author: olearycrew + description: This OSINT template looks for information about a user name. + severity: info + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N + cvss-score: 0.0 + cwe-id: CWE-200 + tags: osint,osint-tech,cal,caldotcom + +self-contained: true +requests: + - method: GET + path: + - "https://cal.com/{{user}}" + redirects: true + + matchers-condition: and + matchers: + - type: status + status: + - 200 \ No newline at end of file diff --git a/osint/ctflearn.yaml b/osint/ctflearn.yaml new file mode 100644 index 0000000000..90f935b937 --- /dev/null +++ b/osint/ctflearn.yaml @@ -0,0 +1,29 @@ +id: CTFLearn + +info: + name: ctflearn + author: olearycrew + description: This OSINT template looks for information about a user name. + severity: info + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N + cvss-score: 0.0 + cwe-id: CWE-200 + tags: osint,osint-tech,ctflearn + +self-contained: true +requests: + - method: GET + path: + - "https://ctflearn.com/user/{{user}}" + redirects: true + + matchers-condition: and + matchers: + - type: status + status: + - 200 + - type: word + part: body + words: + - "Profile - CTFlearn" diff --git a/osint/npmjs.yaml b/osint/npmjs.yaml new file mode 100644 index 0000000000..8ff3085aa6 --- /dev/null +++ b/osint/npmjs.yaml @@ -0,0 +1,24 @@ +id: npmjs + +info: + name: npmjs + author: olearycrew + description: This OSINT template looks for information about a user name. + severity: info + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N + cvss-score: 0.0 + cwe-id: CWE-200 + tags: osint,osint-tech,npmjs + +self-contained: true +requests: + - method: GET + path: + - "https://www.npmjs.com/~{{user}}" + redirects: true + + matchers: + - type: status + status: + - 200 diff --git a/osint/polywork.yaml b/osint/polywork.yaml new file mode 100644 index 0000000000..a2346579a8 --- /dev/null +++ b/osint/polywork.yaml @@ -0,0 +1,29 @@ +id: polywork + +info: + name: Polywork + author: olearycrew + description: This OSINT template looks for information about a user name. + severity: info + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N + cvss-score: 0.0 + cwe-id: CWE-200 + tags: osint,osint-tech,polywork + +self-contained: true +requests: + - method: GET + path: + - "https://polywork.com/{{user}}" + redirects: true + + matchers-condition: and + matchers: + - type: status + status: + - 200 + - type: word + part: body + words: + - "profile on Polywork" diff --git a/osint/postnews.yaml b/osint/postnews.yaml new file mode 100644 index 0000000000..38475a1fc4 --- /dev/null +++ b/osint/postnews.yaml @@ -0,0 +1,30 @@ +id: postnews + +info: + name: Postnews + author: olearycrew + description: This OSINT template looks for information about a user name. + severity: info + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N + cvss-score: 0.0 + cwe-id: CWE-200 + tags: osint,osint-tech,postnews + +self-contained: true +requests: + - method: GET + path: + - "https://post.news/@/{{user}}" + redirects: true + + matchers-condition: and + matchers: + - type: status + status: + - 200 + - type: word + part: body + negative: true + words: + - "Profile Not Found" diff --git a/osint/skillshare.yaml b/osint/skillshare.yaml new file mode 100644 index 0000000000..f379adf0ab --- /dev/null +++ b/osint/skillshare.yaml @@ -0,0 +1,24 @@ +id: skillshare + +info: + name: skillshare + author: olearycrew + description: This OSINT template looks for information about a user name. + severity: info + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N + cvss-score: 0.0 + cwe-id: CWE-200 + tags: osint,osint-tech,skillshare + +self-contained: true +requests: + - method: GET + path: + - "https://www.skillshare.com/en/user/{{user}}" + redirects: true + + matchers: + - type: status + status: + - 200 \ No newline at end of file diff --git a/osint/tmdb.yaml b/osint/tmdb.yaml new file mode 100644 index 0000000000..c34a7b1640 --- /dev/null +++ b/osint/tmdb.yaml @@ -0,0 +1,24 @@ +id: tmdb + +info: + name: TMDB + author: olearycrew + description: This OSINT template looks for information about a user name. + severity: info + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N + cvss-score: 0.0 + cwe-id: CWE-200 + tags: osint,osint-tech,tmdb + +self-contained: true +requests: + - method: GET + path: + - "https://www.themoviedb.org/u/{{user}}" + redirects: true + + matchers: + - type: status + status: + - 200 diff --git a/osint/tryhackme.yaml b/osint/tryhackme.yaml new file mode 100644 index 0000000000..4b5b9ae0b2 --- /dev/null +++ b/osint/tryhackme.yaml @@ -0,0 +1,24 @@ +id: tryhackme + +info: + name: Tryhackme + author: olearycrew + description: This OSINT template looks for information about a user name. + severity: info + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N + cvss-score: 0.0 + cwe-id: CWE-200 + tags: osint,osint-tech,tryhackme + +self-contained: true +requests: + - method: GET + path: + - "https://tryhackme.com/p/{{user}}" + redirects: true + + matchers: + - type: status + status: + - 200