-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchall.py
More file actions
27 lines (22 loc) · 1.42 KB
/
chall.py
File metadata and controls
27 lines (22 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from termcolor import colored
import codecs
BANNER = r"""
____ __
/\ _`\ /\ \
\ \ \/\ \ ___ ___\ \ \/'\ __ _ __
\ \ \ \ \ / __`\ /'___\ \ , < /'__`\/\`'__\
\ \ \_\ \/\ \L\ \/\ \__/\ \ \\`\ /\ __/\ \ \/
\ \____/\ \____/\ \____\\ \_\ \_\ \____\\ \_\
\/___/ \/___/ \/____/ \/_/\/_/\/____/ \/_/
______ __ __ __ ____
/\__ _\ /\ \/\ \ /\ \__ /\ _`\
\/_/\ \/ ____ \ \ `\\ \ ___\ \ ,_\ \ \ \L\_\__ __ ___
\ \ \ /',__\ \ \ , ` \ / __`\ \ \/ \ \ _\/\ \/\ \ /' _ `\
\_\ \__/\__, `\ \ \ \`\ \/\ \L\ \ \ \_ \ \ \/\ \ \_\ \/\ \/\ \
/\_____\/\____/ \ \_\ \_\ \____/\ \__\ \ \_\ \ \____/\ \_\ \_\
\/_____/\/___/ \/_/\/_/\/___/ \/__/ \/_/ \/___/ \/_/\/_/
"""
print(colored(BANNER, "yellow"))
print("\t\t\t\t\t\t\t\t\t\t\t - Bobby Smiles")
randomshi = input("Enter something: ")
print(codecs.encode(randomshi, "rot_13"))