Skip to content

A NPM Package that has useful utilitis to stop the massive tokengrabber link spam on Discord

Notifications You must be signed in to change notification settings

adri326/stop-discord-phishing

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stop Discord Phishing

npm npm npm bundle size npm

A Package that works with the list of suspicious Domains which are used for phishing on Discord.

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

Feel free to contribute to this Project!

NPM Install

npm install stop-discord-phishing

How to use:

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

const message = 'this is a string that should be checked'

List all Domains:

async function list () {
  let links = await stopPhishing.listDomains()
  //Now you can something with Array with all the Domains in it
  console.log(links)
  return links
}

list()

Check if String contains a Phishing Link:

async function checkMessage (message) {
  let isGrabber = await stopPhishing.checkMessage(message)
  //Now you can something with the Boolean Value
  console.log(isGrabber)
  return isGrabber
}

checkMessage(message)

Amounts of Phishing Domains

Use Domains
stopPhishing.list() 870+

About

A NPM Package that has useful utilitis to stop the massive tokengrabber link spam on Discord

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%