Page cover image

🚓Prisoner

Author: @JohnHammond#6971

What should we do?

Have you ever broken out of jail? Maybe it is easier than you think!

What did we do!

press ctrl + d

'#!/usr/bin/env python3
import pty
print("""  _________________________
     ||   ||     ||   ||
     ||   ||, , ,||   ||
     ||  (||/|/(\||/  ||
     ||  ||| _'_`|||  ||
     ||   || o o ||   ||
     ||  (||  - `||)  ||
     ||   ||  =  ||   ||
     ||   ||\___/||   ||
     ||___||) , (||___||
    /||---||-\_/-||---||\
   / ||--_||_____||_--|| \
  (_(||)-| SP1337 |-(||)_)
          --------""")
          
print("Hello prisoner, welcome to jail.")
print("Don\'t get any ideas, there is no easy way out!")
while True:
    try:
       input(": ")
    except KeyboardInterrupt:
       print()   
       continue

Last updated