This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from zipfile import ZipFile | |
from struct import Struct | |
class Deserializer: | |
u16 = Struct('<H') | |
u32 = Struct('<I') | |
def __init__(self, stream): | |
self.stream = stream |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
QSTAT_ARGS="-iourtm master.urbanterror.info:27900" | |
show_help () { | |
echo "Usage: $0 [[-]<keyword>...] [<var>=<val>...] [<var>=!<val>...]" | |
echo | |
echo "Examples:" | |
echo | |
echo " Show all public TS or CTF servers running either abbey or turnpike:" |
OlderNewer