Whoami
Cybersecurity enthusiast
Root-Me (forum ?) admin
Pentester at Intrinsec
Teacher at Trackflaw
python3
Python 3.8.1 - [GCC 8.1.1] on linux - Type "help", "copyright", "credits" or "license" for more information
import platform
os = platform.system()
def whoami():
if os == "Windows":
print("Cool guy ! Windows it's a usefull tool in internal penetration test :)")
elif os == "Linux":
if "ARCH" in platform.uname()[2]:
print("Haha the best ! Yeah ArchLinux is the best distrib :D")
else:
print("Nice guy ! But why don't have a better distrib ? :)")
whoami()
Haha the best ! Yeah ArchLinux is the best distrib :D