Git Product home page Git Product logo

stop-the-phishing2's Introduction

Stop The Phishing

Stop The Phishing is a TypeScript npm package that allows you to check if a given string contains phishing URLs and count the number of phishing links within the string. It loads a list of known phishing domains from an external source and checks the input against these domains to detect phishing attempts.

Installation

You can install Stop Phishing using npm:

npm install stop-the-phishing

Usage

Here's how you can use the Stop The Phishing package in your TypeScript/JavaScript project:

import { PhishingChecker } from 'stop-the-phishing';

const checker = new PhishingChecker();
const inputText = 'This is a test string with a phishing link example.com';

if (checker.isPhishing(inputText)) {
  console.log('Contains phishing link');
} else {
  console.log('No phishing link detected');
}

const numberOfPhishingLinks = checker.getNumberOfPhishingLinks(inputText);
console.log(`Number of phishing links: ${numberOfPhishingLinks}`);

API

PhishingChecker Class

constructor()

  • Initializes a new instance of the PhishingChecker class and loads the list of phishing domains.

isPhishing(input: string): boolean

  • Checks if the given input string contains any phishing URLs.
  • Returns true if phishing URLs are found, otherwise false.

getNumberOfPhishingLinks(input: string): number

  • Counts the number of phishing links in the given input string.
  • Returns the count as an integer.

License

This project is licensed under the MIT License - see the LICENSE file for details.

stop-the-phishing2's People

Contributors

duckodas avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.