Skip to content

Instantly share code, notes, and snippets.

@tanaka-geek
Last active May 27, 2021 05:45
Show Gist options
  • Save tanaka-geek/77db654ca13771579bd0f17582073c86 to your computer and use it in GitHub Desktop.
Save tanaka-geek/77db654ca13771579bd0f17582073c86 to your computer and use it in GitHub Desktop.
4CTF 可愛い文字列達
common = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~'
ascii_letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'
ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
digits = '0123456789'
hexdigits = '0123456789abcdefABCDEF'
octdigits = '01234567'
printable = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~ \t\n\r\x0b\x0c'
punctuation = '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~'
whitespace = ' \t\n\r\x0b\x0c'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment