Last active
May 27, 2021 05:45
-
-
Save tanaka-geek/77db654ca13771579bd0f17582073c86 to your computer and use it in GitHub Desktop.
4CTF 可愛い文字列達
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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