=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== bootpc-0.64/ChangeLog-10-DOMAIN field being unclear. This code attempts to guess the DOMAIN bootpc-0.64/ChangeLog:11:from the gethostbyaddr() lookup for the IP address by removing the bootpc-0.64/ChangeLog-12-leaf component. Also tidied up code a little, bumped version to 0.20. ############################################## bootpc-0.64/bootp.h-168-/* address to send router solicitation requests */ bootpc-0.64/bootp.h:169:#define TAG_IP_ROUTER_SOL_ADDR ((unsigned char) 32) bootpc-0.64/bootp.h-170-/* list of static routes to addresses (addr, router) pairs */ ############################################## bootpc-0.64/rc.bootp-36-# The first is used before the bootp the 2nd afterwards and is bootpc-0.64/rc.bootp:37:# expanded using `eval echo ${IFCONFOPTS2}` so will expand variables bootpc-0.64/rc.bootp-38-# then (when they are known) not now. ############################################## bootpc-0.64/rc.bootp-161-# Read in the values bootpc-0.64/rc.bootp:162: eval `cat ${TMPFILE}` bootpc-0.64/rc.bootp-163-# And delete the temporary file ############################################## bootpc-0.64/rc.bootp-186-# bootpc-0.64/rc.bootp:187: ${IFCONFIG} ${DEV} up ${IPADDR} broadcast ${BROADCAST} `eval echo ${IFCONFOPTS2}` bootpc-0.64/rc.bootp-188- ${ROUTE} -n add -net ${NETWORK} dev ${DEV} ############################################## bootpc-0.64/rc.bootp-190-# We will have NETMASK, BROADCAST, and NETWORK defined bootpc-0.64/rc.bootp:191: ${IFCONFIG} ${DEV} up ${IPADDR} broadcast ${BROADCAST} netmask ${NETMASK} `eval echo ${IFCONFOPTS2}` bootpc-0.64/rc.bootp-192- ${ROUTE} -n add -net ${NETWORK} dev ${DEV} ############################################## bootpc-0.64/rc.bootp-215- fakeresolv "${DNSSRVS}" bootpc-0.64/rc.bootp:216: eval `${BOOTPC} --in2host ${IPADDR}` bootpc-0.64/rc.bootp-217- unfakeresolv ############################################## bootpc-0.64/rc.bootp-249- if [ -z "${DONEIN2HOST}" ] ; then bootpc-0.64/rc.bootp:250: eval `${BOOTPC} --in2host ${IPADDR}` bootpc-0.64/rc.bootp-251- fi ############################################## bootpc-0.64/.pc/0001-Debian-specific-patches.patch/bootpc.c-78- serv_addr.sin_family = AF_INET; bootpc-0.64/.pc/0001-Debian-specific-patches.patch/bootpc.c:79: serv_addr.sin_addr.s_addr = inet_addr(server) ; bootpc-0.64/.pc/0001-Debian-specific-patches.patch/bootpc.c-80- serv_addr.sin_port = htons(IPPORT_BOOTPS); ############################################## bootpc-0.64/.pc/0001-Debian-specific-patches.patch/bootpc.c-691-/* convert to standard network form */ bootpc-0.64/.pc/0001-Debian-specific-patches.patch/bootpc.c:692: sin_addr.s_addr = inet_addr(address); bootpc-0.64/.pc/0001-Debian-specific-patches.patch/bootpc.c-693- ############################################## bootpc-0.64/.pc/0001-Debian-specific-patches.patch/bootpc.c-696- bootpc-0.64/.pc/0001-Debian-specific-patches.patch/bootpc.c:697: hp = gethostbyaddr((char *)&sin_addr, sizeof(sin_addr), AF_INET) ; bootpc-0.64/.pc/0001-Debian-specific-patches.patch/bootpc.c-698- ############################################## bootpc-0.64/bootpc.c-78- serv_addr.sin_family = AF_INET; bootpc-0.64/bootpc.c:79: serv_addr.sin_addr.s_addr = inet_addr(server) ; bootpc-0.64/bootpc.c-80- serv_addr.sin_port = htons(IPPORT_BOOTPS); ############################################## bootpc-0.64/bootpc.c-693-/* convert to standard network form */ bootpc-0.64/bootpc.c:694: sin_addr.s_addr = inet_addr(address); bootpc-0.64/bootpc.c-695- ############################################## bootpc-0.64/bootpc.c-698- bootpc-0.64/bootpc.c:699: hp = gethostbyaddr((char *)&sin_addr, sizeof(sin_addr), AF_INET) ; bootpc-0.64/bootpc.c-700-