List soal PWN untuk KSL Seleksi
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

36 lignes
1.4 KiB

il y a 5 ans
  1. #!/usr/bin/python
  2. import sys
  3. import os
  4. class Unbuffered(object):
  5. def __init__(self, stream):
  6. self.stream = stream
  7. def write(self, data):
  8. self.stream.write(data)
  9. self.stream.flush()
  10. def writelines(self, datas):
  11. self.stream.writelines(datas)
  12. self.stream.flush()
  13. def __getattr__(self, attr):
  14. return getattr(self.stream, attr)
  15. sys.stdout = Unbuffered(sys.stdout)
  16. print" /$$ /$$ /$$$$$$ /$$ /$$$$$$$ /$$ /$$ /$$ /$$"
  17. print" | $$ /$$/ /$$__ $$| $$ | $$__ $$| $$ /$ | $$| $$$ | $$"
  18. print" | $$ /$$/ | $$ \__/| $$ | $$ \ $$| $$ /$$$| $$| $$$$| $$"
  19. print" | $$$$$/ | $$$$$$ | $$ | $$$$$$$/| $$/$$ $$ $$| $$ $$ $$"
  20. print" | $$ $$ \____ $$| $$ | $$____/ | $$$$_ $$$$| $$ $$$$"
  21. print" | $$\ $$ /$$ \ $$| $$ | $$ | $$$/ \ $$$| $$\ $$$"
  22. print" | $$ \ $$| $$$$$$/| $$$$$$$$ | $$ | $$/ \ $$| $$ \ $$"
  23. print" |__/ \__/ \______/ |________/ |__/ |__/ \__/|__/ \__/"
  24. print" Author : Bagus Widhyasmara"
  25. print "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>"
  26. print" "
  27. name = raw_input("Masukan nama anda : ")
  28. print("Selamat datang "+name)
  29. perlin = raw_input("silahkan ketik perintah linux apapun! ")
  30. os.system(perlin)
  31. print("{flag=you_get_the_flag}")