0.2.0 • Published 2 years ago

okjirhtfbgiordewjs v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Stop Discord Phishing

npm npm npm

About this Package

stop-discord-phishing works with the list of suspicious Domains to detect Domains in Messages which are used for phishing on Discord.

This is the official Repository & NPM Package to provide a API to work with those Links.

If you like this Project consider giving it a ⭐ and also feel free to contribute to this Project!

Source

If you found a Domain that is not detected yet, contribute it to the discord-phishing-links Repository!

NPM Install

npm install stop-discord-phishing

How to use:

const stopPhishing = require('stop-discord-phishing')

const message =
  'this is a string with a domain definitivelynotascamdomain.ru that should be checked '

List all Domains:

async function listPhishingDomains () {
  let links = await stopPhishing.listDomains()
  //Now you can do something with Array with all the confirmed Phishing Domains in it
  console.log(links)
  return links
}
async function listSuspiciousDomains () {
  let links = await stopPhishing.listSuspicious()
  //Now you can do something with Array with all the suspicious Domains in it
  console.log(links)
  return links
}

listPhishingDomains()
listSuspiciousDomains()

Check if String contains a Phishing Link:

async function checkMessage (message) {
  //check string on confirmed Phishing Domains
  let isGrabber = await stopPhishing.checkMessage(message)
  //Now you can do something with the Boolean Value
  console.log(isGrabber)
  return isGrabber
}

async function checkMessageFull (message, true) {
  //check string on confirmed & not yet confirmed but suspicious Phishing Domains
  let isGrabber = await stopPhishing.checkMessage(message)
  //Now you can do something with the Boolean Value
  console.log(isGrabber)
  return isGrabber
}

checkMessage(message)
checkMessageFull(message)

Cache

To prevent to much requests & load, we added a Cache of 30 minutes!

Amounts of Phishing Domains

UseDomains
stopPhishing.listDomains()7500+
stopPhishing.listSuspicious()250+

Changelog

0.2.0 Current

  • Added better regex to detect exact domain matches
  • Updated ReadMe

0.1.0

  • Added suspicious Domains Support
  • Updated ReadMe

0.0.4

  • Added Chache Support and set Cache duration to 30min

0.0.3

  • Added better Project Structure

0.0.1

  • Initial (and Test) Upload