Home

Awesome

Big List of Naughty Strings (Now with more PHP!)

A PHP class to easily work with the Big List of Naughty Strings.

Installation

composer require mattsparks/blns-php

Usage

use MattSparks\BLNS\BLNS;

$blns = new BLNS;

foreach($blns->getList() as $string) {
    // Do your magic.
}

foreach($blns->getBase64List() as $string) {
    // Magic done here.
}

Contribute

Contributions are very welcome!

  1. Follow the PSR-2 Standard
  2. Send a pull request.