From 03a051c1c63652c0a5a70e520402748533c7b056 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Mon, 12 Sep 2016 14:52:45 -0500 Subject: [PATCH] Adding more quotes around vars. --- lgsm/functions/command_postdetails.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_postdetails.sh b/lgsm/functions/command_postdetails.sh index bfe935f54..285831145 100644 --- a/lgsm/functions/command_postdetails.sh +++ b/lgsm/functions/command_postdetails.sh @@ -101,16 +101,16 @@ sed -i -r "s/[\x1B,\x0B]\[([0-9]{1,2}(;[0-9]{1,2})?)?[mGK]//g" "${tmpfile}" # If the gameserver uses anonymous steam credentials, leave them displayed # in the output. Otherwise, strip these out as well. -if ! grep -q "^steampass[= ]\"\"" ${tmpfile} ; then +if ! grep -q "^steampass[= ]\"\"" "${tmpfile}" ; then sed -i -e 's/steampass[= ]"[^"]*/steampass "--stripped--/' "${tmpfile}" fi -if ! grep -q "^steamuser[= ]\"anonymous\"" ${tmpfile} ; then +if ! grep -q "^steamuser[= ]\"anonymous\"" "${tmpfile}" ; then sed -i -e 's/steamuser[= ]"[^"]*/steamuser "--stripped--/' "${tmpfile}" fi if [ "${posttarget}" == "http://pastebin.com" ] ; then # grab the return from 'value' from an initial visit to pastebin. - csrftoken=$(curl -s ${posttarget} | + csrftoken=$(curl -s "${posttarget}" | sed -n 's/^.*input type="hidden" name="csrf_token_post" value="\(.*\)".*$/\1/p') # # Use the csrftoken to then post the content.