Whoami
Cybersecurity enthusiast
CEO at Trackflaw
New blog at blog.trackflaw.com
python3
Python 3.11.6 (main, Nov 14 2023, 09:36:21) [GCC 13.2.1 20230801] on linux
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