Browse Source

feat(query-raw): add TCP/UDP query to game port (#2341)

pull/2348/head
Daniel Gibbs 6 years ago
committed by GitHub
parent
commit
ab48c0b7f0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 50
      lgsm/functions/command_dev_query_raw.sh

50
lgsm/functions/command_dev_query_raw.sh

@ -7,8 +7,10 @@
local commandname="QUERY-RAW" local commandname="QUERY-RAW"
local commandaction="Query Raw" local commandaction="Query Raw"
local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo ""
echo "=================================" echo "Query Port"
echo "=================================================================="
echo ""
echo "Gamedig Raw Output" echo "Gamedig Raw Output"
echo "=================================" echo "================================="
echo"" echo""
@ -33,7 +35,6 @@ echo "${gamedigcmd}"
echo"" echo""
echo "${gamedigraw}" | jq echo "${gamedigraw}" | jq
echo"" echo""
echo "================================="
echo "gsquery Raw Output" echo "gsquery Raw Output"
echo "=================================" echo "================================="
echo"" echo""
@ -44,29 +45,56 @@ fi
"${functionsdir}"/query_gsquery.py -a "${ip}" -p "${queryport}" -e "${engine}" "${functionsdir}"/query_gsquery.py -a "${ip}" -p "${queryport}" -e "${engine}"
echo"" echo""
echo "=================================" echo "TCP Raw Output"
echo "tcp Raw Output"
echo "=================================" echo "================================="
echo"" echo""
echo "bash -c 'exec 3<> /dev/tcp/'${ip}'/'${queryport}''" echo "bash -c 'exec 3<> /dev/tcp/'${ip}'/'${queryport}''"
bash -c 'exec 3<> /dev/tcp/'${ip}'/'${queryport}'' bash -c 'exec 3<> /dev/tcp/'${ip}'/'${queryport}''
querystatus="$?" querystatus="$?"
if [ "${querystatus}" == "0" ]; then if [ "${querystatus}" == "0" ]; then
echo "tcp query PASS" echo "TCP query PASS"
else else
echo "tcp query FAIL" echo "TCP query FAIL"
fi fi
echo"" echo""
echo "=================================" echo "UDP Raw Output"
echo "udp Raw Output"
echo "=================================" echo "================================="
echo"" echo""
echo "bash -c 'exec 3<> /dev/udp/'${ip}'/'${queryport}''" echo "bash -c 'exec 3<> /dev/udp/'${ip}'/'${queryport}''"
bash -c 'exec 3<> /dev/udp/'${ip}'/'${queryport}'' bash -c 'exec 3<> /dev/udp/'${ip}'/'${queryport}''
querystatus="$?" querystatus="$?"
if [ "${querystatus}" == "0" ]; then if [ "${querystatus}" == "0" ]; then
echo "udp query PASS" echo "UPD query PASS"
else
echo "UPD query FAIL"
fi
echo ""
echo "Game Port"
echo "=================================================================="
echo ""
echo""
echo "TCP Raw Output"
echo "================================="
echo""
echo "bash -c 'exec 3<> /dev/tcp/'${ip}'/'${port}''"
bash -c 'exec 3<> /dev/tcp/'${ip}'/'${port}''
querystatus="$?"
if [ "${querystatus}" == "0" ]; then
echo "TCP query PASS"
else
echo "TCP query FAIL"
fi
echo""
echo "UDP Raw Output"
echo "================================="
echo""
echo "bash -c 'exec 3<> /dev/udp/'${ip}'/'${port}''"
bash -c 'exec 3<> /dev/udp/'${ip}'/'${port}''
querystatus="$?"
if [ "${querystatus}" == "0" ]; then
echo "UDP query PASS"
else else
echo "udp query FAIL" echo "UDP query FAIL"
fi fi

Loading…
Cancel
Save