/usr/lib/radare/bin/signsrch is in radare-common 1:1.5.2-6.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/bin/sh
#
# Signature Search output conversor
#
# original source from:
# - http://aluigi.altervista.org/mytoolz/signsrch.zip
# download page:
# - http://aluigi.altervista.org/mytoolz.htm
#
FILE=$1
if [ -z "${FILE}" ]; then
echo "Usage: rsc signsrc <file>"
exit 1
fi
signsrch $FILE 2>/dev/null | grep 0000 | awk '{print "f "$3"_"$8" @ 0x"$1}' |sed -e 's,(,,g' -e 's,),,g'
|