diff --git a/src/routes/admin/routes/domain.ts b/src/routes/admin/routes/domain.ts index 8aef59e..2f54f36 100644 --- a/src/routes/admin/routes/domain.ts +++ b/src/routes/admin/routes/domain.ts @@ -170,6 +170,7 @@ router.post( { indicator: `${report.domain.domain}`, type: "domain", + role: "phishing", }, ], }, diff --git a/src/routes/domain.ts b/src/routes/domain.ts index 2bdd7c8..df4374e 100644 --- a/src/routes/domain.ts +++ b/src/routes/domain.ts @@ -138,6 +138,7 @@ router.get("/check", authenticateToken, stripeMeter, async (req, res) => { { indicator: `${domain}`, type: "domain", + role: "phishing", }, ], }, @@ -194,6 +195,7 @@ router.get("/check", authenticateToken, stripeMeter, async (req, res) => { { indicator: `${domain}`, type: "domain", + role: "phishing", }, ], }, diff --git a/src/routes/email.ts b/src/routes/email.ts index bfbdef7..af4d530 100644 --- a/src/routes/email.ts +++ b/src/routes/email.ts @@ -70,6 +70,7 @@ router.get("/check/:email", async (req, res) => { { indicator: `${email}`, type: "email", + role: "phishing", }, ], },