=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== performous-1.1+git20181118/game/screen_intro.cc-206- if(m_ipaddr.empty()) { performous-1.1+git20181118/game/screen_intro.cc:207: m_ipaddr = getIPaddr(); performous-1.1+git20181118/game/screen_intro.cc-208- } ############################################## performous-1.1+git20181118/game/screen_intro.cc-214- performous-1.1+git20181118/game/screen_intro.cc:215:std::string ScreenIntro::getIPaddr() { performous-1.1+git20181118/game/screen_intro.cc-216- try { ############################################## performous-1.1+git20181118/game/screen_intro.hh-30- void populateMenu(); performous-1.1+git20181118/game/screen_intro.hh:31: std::string getIPaddr(); performous-1.1+git20181118/game/screen_intro.hh-32- SvgTxtTheme& getTextObject(std::string const& txt); ############################################## performous-1.1+git20181118/game/webserver.cc-18- std::string portToUse = fallbackPortInUse ? std::to_string(config["game/webserver_fallback_port"].i()) : std::to_string(config["game/webserver_port"].i()); performous-1.1+git20181118/game/webserver.cc:19: std::string addr(""); performous-1.1+git20181118/game/webserver.cc-20- if(config["game/webserver_access"].i() == 1) { ############################################## performous-1.1+git20181118/tools/scripts/usdb.sh-17- echo " >>> " performous-1.1+git20181118/tools/scripts/usdb.sh:18: echo " >>> usage: "`basename $0`" [songfile.txt]" performous-1.1+git20181118/tools/scripts/usdb.sh-19- echo " >>> " ############################################## performous-1.1+git20181118/tools/scripts/usdb.sh-48- performous-1.1+git20181118/tools/scripts/usdb.sh:49:WORK_DIR=`dirname "$1"` performous-1.1+git20181118/tools/scripts/usdb.sh-50- performous-1.1+git20181118/tools/scripts/usdb.sh-51-cd "$WORK_DIR" performous-1.1+git20181118/tools/scripts/usdb.sh:52:TXT=`basename "$1"` performous-1.1+git20181118/tools/scripts/usdb.sh-53- ############################################## performous-1.1+git20181118/tools/scripts/usdb.sh-55-if echo "$TXT" | grep -q \\\\ ; then performous-1.1+git20181118/tools/scripts/usdb.sh:56: NEWTXT=`echo "$TXT" | sed -e s:\\\\\\\\::g` performous-1.1+git20181118/tools/scripts/usdb.sh-57- echo " >>> removing backslash from filename..." ############################################## performous-1.1+git20181118/tools/scripts/usdb.sh-61- performous-1.1+git20181118/tools/scripts/usdb.sh:62:PREFIX=`basename "$TXT" ".txt"` performous-1.1+git20181118/tools/scripts/usdb.sh-63-TMP="${PREFIX}.old" ############################################## performous-1.1+git20181118/tools/scripts/usdb.sh-86- performous-1.1+git20181118/tools/scripts/usdb.sh:87:ARTIST=`grep "#ARTIST:" "$TXT" | cut -d : -f 2` performous-1.1+git20181118/tools/scripts/usdb.sh:88:TITLE=`grep "#TITLE:" "$TXT" | cut -d : -f 2` performous-1.1+git20181118/tools/scripts/usdb.sh:89:MP3=`grep "#MP3:" "$TXT" | cut -d : -f 2` performous-1.1+git20181118/tools/scripts/usdb.sh:90:BPM=`grep "#BPM:" "$TXT" | cut -d : -f 2` performous-1.1+git20181118/tools/scripts/usdb.sh:91:VIDEO=`grep "#VIDEO:" "$TXT" | cut -d : -f 2` performous-1.1+git20181118/tools/scripts/usdb.sh:92:COVER=`grep "#COVER:" "$TXT" | cut -d : -f 2` performous-1.1+git20181118/tools/scripts/usdb.sh:93:BACKGROUND=`grep "#BACKGROUND:" "$TXT" | cut -d : -f 2` performous-1.1+git20181118/tools/scripts/usdb.sh-94- ############################################## performous-1.1+git20181118/tools/scripts/usdb.sh-129- # download video performous-1.1+git20181118/tools/scripts/usdb.sh:130: ESCAPED=`escape "\"$ARTIST\" \"$TITLE\""` performous-1.1+git20181118/tools/scripts/usdb.sh-131- URL="http://www.youtube.com/results?search_query=$ESCAPED" ############################################## performous-1.1+git20181118/tools/scripts/usdb.sh-164- # download image performous-1.1+git20181118/tools/scripts/usdb.sh:165: ESCAPED=`escape "\"$ARTIST\" \"$TITLE\" cover"` performous-1.1+git20181118/tools/scripts/usdb.sh-166- URL="http://images.google.com/images?q=$ESCAPED" ############################################## performous-1.1+git20181118/tools/scripts/usdb.sh-199- # download image performous-1.1+git20181118/tools/scripts/usdb.sh:200: ESCAPED=`escape "\"$ARTIST\" \"live performance\""` performous-1.1+git20181118/tools/scripts/usdb.sh-201- URL="http://images.google.com/images?q=$ESCAPED" ############################################## performous-1.1+git20181118/tools/scripts/usdb.sh-221-# calculate first note offset performous-1.1+git20181118/tools/scripts/usdb.sh:222:FIRST=`grep -E '[\\:F\\*] [0-9]+ [0-9]+ [0-9]+ ' "$TXT" | head -n 1 | cut -d " " -f 2` performous-1.1+git20181118/tools/scripts/usdb.sh:223:BPM=`echo $BPM | sed -e s/,/./g` performous-1.1+git20181118/tools/scripts/usdb.sh:224:SUBSTRACT=`echo "$FIRST / $BPM / 4 * 60000" | bc -l | cut -d . -f 1` performous-1.1+git20181118/tools/scripts/usdb.sh-225- ############################################## performous-1.1+git20181118/tools/scripts/usdb.sh-230-while read LINE ;do performous-1.1+git20181118/tools/scripts/usdb.sh:231: TIME=`echo "$LINE" | grep -E '[\\:F\\*\\-] [0-9]+' | cut -d " " -f 2` performous-1.1+git20181118/tools/scripts/usdb.sh-232- if [ -n "$TIME" ] ; then ############################################## performous-1.1+git20181118/tools/scripts/fix-songfiles.sh-27- txt=`find ./ | grep - | grep .txt | grep -v .txt.` performous-1.1+git20181118/tools/scripts/fix-songfiles.sh:28: mp3name=`cat "$txt" | grep MP3 | sed -e s/#MP3:// -e s/"\r"//g` performous-1.1+git20181118/tools/scripts/fix-songfiles.sh-29- oldfile=`find ./ | grep - | grep -i .mp3` ############################################## performous-1.1+git20181118/tools/scripts/create-archive.sh-6- performous-1.1+git20181118/tools/scripts/create-archive.sh:7:cd `dirname $0`/../.. performous-1.1+git20181118/tools/scripts/create-archive.sh-8- ############################################## performous-1.1+git20181118/tools/ppa/ppa.sh-26- performous-1.1+git20181118/tools/ppa/ppa.sh:27:TEMPDIR=`mktemp -dt $PKG-ppa.XXXXXXXXXX` performous-1.1+git20181118/tools/ppa/ppa.sh-28-SOURCEDIR="$TEMPDIR/git" ############################################## performous-1.1+git20181118/data/shaders/stereo3d.geom-26- performous-1.1+git20181118/data/shaders/stereo3d.geom:27:void passthru(int vp, int i) { performous-1.1+git20181118/data/shaders/stereo3d.geom-28- gl_ViewportIndex = (sepFactor == 0.0) ? 0 : vp; ############################################## performous-1.1+git20181118/data/shaders/stereo3d.geom-37- for (int i=0; i < gl_in.length(); i++) { performous-1.1+git20181118/data/shaders/stereo3d.geom:38: passthru(1, i); performous-1.1+git20181118/data/shaders/stereo3d.geom-39- gl_Position = gl_in[i].gl_Position; ############################################## performous-1.1+git20181118/data/shaders/stereo3d.geom-46- for (int i=0; i < gl_in.length(); i++) { performous-1.1+git20181118/data/shaders/stereo3d.geom:47: passthru(2, i); performous-1.1+git20181118/data/shaders/stereo3d.geom-48- gl_Position = gl_in[i].gl_Position; ############################################## performous-1.1+git20181118/cmake/Modules/GetGitRevisionDescription.cmake-76- @ONLY) performous-1.1+git20181118/cmake/Modules/GetGitRevisionDescription.cmake:77: include("${GIT_DATA}/grabRef.cmake") performous-1.1+git20181118/cmake/Modules/GetGitRevisionDescription.cmake-78- ############################################## performous-1.1+git20181118/cmake/Modules/FindICU.cmake-209- DOC "ICU ${component} library (debug)") performous-1.1+git20181118/cmake/Modules/FindICU.cmake:210: include(${CMAKE_CURRENT_LIST_DIR}/SelectLibraryConfigurations.cmake) performous-1.1+git20181118/cmake/Modules/FindICU.cmake-211- select_library_configurations(ICU_${component_upcase}) ############################################## performous-1.1+git20181118/cmake/Modules/FindICU.cmake-263- performous-1.1+git20181118/cmake/Modules/FindICU.cmake:264:include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake) performous-1.1+git20181118/cmake/Modules/FindICU.cmake-265-FIND_PACKAGE_HANDLE_STANDARD_ARGS(ICU ############################################## performous-1.1+git20181118/cmake/Modules/FindPackageHandleStandardArgs.cmake-131- performous-1.1+git20181118/cmake/Modules/FindPackageHandleStandardArgs.cmake:132:include(${CMAKE_CURRENT_LIST_DIR}/FindPackageMessage.cmake) performous-1.1+git20181118/cmake/Modules/FindPackageHandleStandardArgs.cmake-133-