Skip to content
Snippets Groups Projects
example_exploit.py 177 B
Newer Older
Ruben Anthony Gonzalez's avatar
Ruben Anthony Gonzalez committed
#!/usr/bin/env python3
import sys
from random import randint

team_id = sys.argv[1]
team_ip = sys.argv[2]
print("flag{%s_%s_%d}" % (team_id, team_ip, randint(0, 133713371337)))