gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
4.1 KiB
122 lines
4.1 KiB
#! /usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
# PythonGSQ
|
|
# Author: Anonymous & Daniel Gibbs
|
|
# Website: https://gameservermanagers.com
|
|
# Description: Allows querying of various game servers.
|
|
|
|
import optparse
|
|
import socket
|
|
import sys
|
|
|
|
class PythonGSQ:
|
|
def __init__(self, options, arguments):
|
|
self.option = options
|
|
self.argument = arguments
|
|
#
|
|
self.server_response_timeout = 5
|
|
self.default_buffer_length = 1024
|
|
#
|
|
sourcequery=[ 'avalanche3.0','madness','quakelive','realvirtuality','refractor','source','goldsource','spark','starbound','unity3d']
|
|
idtech2query=['idtech3','quake','iw3.0']
|
|
idtech3query=['idtech2','iw2.0']
|
|
if self.option.engine in sourcequery:
|
|
self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0'
|
|
elif self.option.engine in idtech2query:
|
|
self.query_prompt_string = b'\xff\xff\xff\xffstatus\x00'
|
|
elif self.option.engine in idtech3query:
|
|
self.query_prompt_string = b'\xff\xff\xff\xffgetstatus'
|
|
elif self.option.engine == 'avalanche2.0':
|
|
self.query_prompt_string = b'\xFE\xFD\x09\x10\x20\x30\x40'
|
|
elif self.option.engine == 'unreal':
|
|
self.query_prompt_string = b'\x5C\x69\x6E\x66\x6F\x5C'
|
|
elif self.option.engine == 'unreal2':
|
|
self.query_prompt_string = b'\x79\x00\x00\x00\x00'
|
|
self.connected = False
|
|
self.response = None
|
|
self.sanity_checks()
|
|
|
|
def fatal_error(self, error_message, error_code=1):
|
|
sys.stderr.write('ERROR: ' + str(error_message) + '\n')
|
|
sys.exit(error_code)
|
|
|
|
def exit_success(self, success_message=''):
|
|
sys.stdout.write('OK: ' + str(success_message) + '\n')
|
|
sys.exit(0)
|
|
|
|
def responding(self):
|
|
# Connect.
|
|
connection = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
connection.settimeout(self.server_response_timeout)
|
|
try:
|
|
self.connected = connection.connect((self.option.address, int(self.option.port)))
|
|
except socket.timeout:
|
|
self.fatal_error('Request timed out', 1)
|
|
except:
|
|
self.fatal_error('Unable to connect', 1)
|
|
# Send.
|
|
connection.send(self.query_prompt_string)
|
|
# Receive.
|
|
try:
|
|
self.response = connection.recv(self.default_buffer_length)
|
|
except socket.error:
|
|
self.fatal_error('Unable to receive', 2)
|
|
connection.close()
|
|
# Response.
|
|
if self.response is None:
|
|
self.fatal_error('No response', 3)
|
|
if len(self.response) < 10:
|
|
sys.exit('Short response.', 3)
|
|
else:
|
|
self.exit_success(str(self.response))
|
|
|
|
def sanity_checks(self):
|
|
if not self.option.address:
|
|
self.fatal_error('No IPv4 address supplied.', 4)
|
|
if not self.option.port:
|
|
self.fatal_error('No port supplied.', 4)
|
|
|
|
if __name__ == '__main__':
|
|
parser = optparse.OptionParser(
|
|
usage='usage: python %prog [options]',
|
|
version='%prog 0.0.1'
|
|
)
|
|
parser.add_option(
|
|
'-a', '--address',
|
|
action='store',
|
|
dest='address',
|
|
default=False,
|
|
help='The IPv4 address of the server.'
|
|
)
|
|
parser.add_option(
|
|
'-p', '--port',
|
|
action='store',
|
|
dest='port',
|
|
default=False,
|
|
help='The IPv4 port of the server.'
|
|
)
|
|
parser.add_option(
|
|
'-e', '--engine',
|
|
action='store',
|
|
dest='engine',
|
|
default=False,
|
|
help='Engine type: avalanche2.0, avalanche3.0, goldsource, idtech2, idtech3, iw2.0, iw3.0, realvirtuality, quake, quakelive, refractor, spark, source, unity3d, unreal, unreal2.'
|
|
)
|
|
parser.add_option(
|
|
'-v', '--verbose',
|
|
action='store_true',
|
|
dest='verbose',
|
|
default=False,
|
|
help='Display verbose output.'
|
|
)
|
|
parser.add_option(
|
|
'-d', '--debug',
|
|
action='store_true',
|
|
dest='debug',
|
|
default=False,
|
|
help='Display debugging output.'
|
|
)
|
|
options, arguments = parser.parse_args()
|
|
#
|
|
server = PythonGSQ(options, arguments)
|
|
server.responding()
|
|
|