|
@ -24,6 +24,7 @@ class gsquery: |
|
|
minecraftbequery=['minecraftbe'] |
|
|
minecraftbequery=['minecraftbe'] |
|
|
jc2mpquery=['jc2mp'] |
|
|
jc2mpquery=['jc2mp'] |
|
|
mumblequery=['mumbleping'] |
|
|
mumblequery=['mumbleping'] |
|
|
|
|
|
soldatquery=['soldat'] |
|
|
twquery=['teeworlds'] |
|
|
twquery=['teeworlds'] |
|
|
unrealquery=['protocol-gamespy1','unreal'] |
|
|
unrealquery=['protocol-gamespy1','unreal'] |
|
|
unreal2query=['protocol-unreal2','unreal2'] |
|
|
unreal2query=['protocol-unreal2','unreal2'] |
|
@ -41,12 +42,14 @@ class gsquery: |
|
|
self.query_prompt_string = b'\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\x00\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\x12\x34\x56\x78\x00\x00\x00\x00\x00\x00\x00\x00' |
|
|
self.query_prompt_string = b'\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\x00\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\x12\x34\x56\x78\x00\x00\x00\x00\x00\x00\x00\x00' |
|
|
elif self.option.engine in mumblequery: |
|
|
elif self.option.engine in mumblequery: |
|
|
self.query_prompt_string = b'\x00\x00\x00\x00\x01\x02\x03\x04\x05\x06\x07\x08' |
|
|
self.query_prompt_string = b'\x00\x00\x00\x00\x01\x02\x03\x04\x05\x06\x07\x08' |
|
|
|
|
|
elif self.option.engine in soldatquery: |
|
|
|
|
|
self.query_prompt_string = b'\x69\x00' |
|
|
|
|
|
elif self.option.engine in twquery: |
|
|
|
|
|
self.query_prompt_string = b"\x04\x00\x00\xff\xff\xff\xff\x05" + bytearray(511) |
|
|
elif self.option.engine in unrealquery: |
|
|
elif self.option.engine in unrealquery: |
|
|
self.query_prompt_string = b'\x5C\x69\x6E\x66\x6F\x5C' |
|
|
self.query_prompt_string = b'\x5C\x69\x6E\x66\x6F\x5C' |
|
|
elif self.option.engine in unreal2query: |
|
|
elif self.option.engine in unreal2query: |
|
|
self.query_prompt_string = b'\x79\x00\x00\x00\x00' |
|
|
self.query_prompt_string = b'\x79\x00\x00\x00\x00' |
|
|
elif self.option.engine in twquery: |
|
|
|
|
|
self.query_prompt_string = b"\x04\x00\x00\xff\xff\xff\xff\x05" + bytearray(511) |
|
|
|
|
|
|
|
|
|
|
|
self.connected = False |
|
|
self.connected = False |
|
|
self.response = None |
|
|
self.response = None |
|
@ -81,8 +84,8 @@ class gsquery: |
|
|
# Response. |
|
|
# Response. |
|
|
if self.response is None: |
|
|
if self.response is None: |
|
|
self.fatal_error('No response', 3) |
|
|
self.fatal_error('No response', 3) |
|
|
if len(self.response) < 10: |
|
|
if len(self.response) < 2: |
|
|
sys.exit('Short response.', 3) |
|
|
sys.exit('Short response.', 5) |
|
|
else: |
|
|
else: |
|
|
self.exit_success(str(self.response)) |
|
|
self.exit_success(str(self.response)) |
|
|
|
|
|
|
|
@ -116,7 +119,7 @@ if __name__ == '__main__': |
|
|
action='store', |
|
|
action='store', |
|
|
dest='engine', |
|
|
dest='engine', |
|
|
default=False, |
|
|
default=False, |
|
|
help='Engine type: protocol-valve protocol-quake3 protocol-quake3 protocol-gamespy1 protocol-unreal2 minecraft minecraftbe jc2mp mumbleping teeworlds' |
|
|
help='Engine type: protocol-valve protocol-quake3 protocol-quake3 protocol-gamespy1 protocol-unreal2 minecraft minecraftbe jc2mp mumbleping soldat teeworlds' |
|
|
) |
|
|
) |
|
|
parser.add_option( |
|
|
parser.add_option( |
|
|
'-v', '--verbose', |
|
|
'-v', '--verbose', |
|
|