Skip to content

A python library that returns naughty strings from an offline database of Big List of Naughty Strings and emojis.

License

Notifications You must be signed in to change notification settings

shashikumarraja/naughty_string_validator_python

Repository files navigation

naughty_string_validator

image

image

image

image

Updates

image

image

A python library that returns naughty strings from an offline database of Big List of Naughty Strings and emojis. The db will be continuously growing with each release.

The Big List of Naughty Strings is an evolving list of strings which have a high probability of causing issues when used as user-input data.

This library can be inluded in the test automation framework for API, UI, or DB testing to validate them against naughty strings.

Installation

pip install naughty_string_validator

Usage

from naughty_string_validator import *
  • To get a random naughty string from the list
print(get_random_naughty_string())

#output
"<a href=\"\\xE2\\x80\\x88javascript…(1)\" id=\"fuzzelement1\">test</a>"
  • To get entire naughty string list
print(get_naughty_string_list())

#output
["", "undefined", "undef", "null", "NULL", "(null)", "nil", …]
  • To get a random emoji from the emoji list
print(get_random_emoji())

#output
"😃"
  • To get a entire emoji list
print(get_emoji_list())

#output
["😀", "😃", "😄", "😁", "😆", "😅", "😂", "🤣", "☺️", "😊", …]

Tests

  • To run tests

    py.test --cov=naughty_string_validator test/ --verbose

About

A python library that returns naughty strings from an offline database of Big List of Naughty Strings and emojis.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •