=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== patchage-1.0.0~dfsg0/osx/bundleify.sh-17-# Copy libraries depended on by the executable to bundle patchage-1.0.0~dfsg0/osx/bundleify.sh:18:libs="`otool -L $exe | grep '\.dylib\|\.so' | grep '/User\|/opt/local\|/usr/local' | sed 's/(.*//'`" patchage-1.0.0~dfsg0/osx/bundleify.sh-19-for l in $libs; do ############################################## patchage-1.0.0~dfsg0/osx/bundleify.sh-23-# Add libraries depended on by those libraries patchage-1.0.0~dfsg0/osx/bundleify.sh:24:reclibs="`otool -L $bundle/Contents/lib/* $bundle/Contents/lib/engines/* $bundle/Contents/lib/modules/* | grep '\.dylib\|\.so' | grep '/User\|/opt/local\|/usr/local' | sed 's/(.*//'`" patchage-1.0.0~dfsg0/osx/bundleify.sh-25-for l in $reclibs; do ############################################## patchage-1.0.0~dfsg0/osx/bundleify.sh-29-# ... and libraries depended on by those libraries (yes, this should be done more sanely) patchage-1.0.0~dfsg0/osx/bundleify.sh:30:recreclibs="`otool -L $bundle/Contents/lib/* $bundle/Contents/lib/engines/* $bundle/Contents/lib/modules/* | grep '\.dylib\|\.so' | grep '/User\|/opt/local\|/usr/local' | sed 's/(.*//'`" patchage-1.0.0~dfsg0/osx/bundleify.sh-31-for l in $recreclibs; do ############################################## patchage-1.0.0~dfsg0/osx/bundleify.sh-35-for l in $libs $reclibs $recreclibs; do patchage-1.0.0~dfsg0/osx/bundleify.sh:36: lname=`echo $l | sed 's/.*\///'` patchage-1.0.0~dfsg0/osx/bundleify.sh-37- lid="@executable_path/lib/$lname" ############################################## patchage-1.0.0~dfsg0/osx/bundleify.sh-40- install_name_tool -change $l $lid $exe patchage-1.0.0~dfsg0/osx/bundleify.sh:41: for j in `find $bundle -name '*.so' -or -name '*.dylib'`; do patchage-1.0.0~dfsg0/osx/bundleify.sh-42- install_name_tool -change $l $lid $j ############################################## patchage-1.0.0~dfsg0/osx/bundleify.sh-46-echo "External library references:" patchage-1.0.0~dfsg0/osx/bundleify.sh:47:otool -L $exe `find $bundle -name '*.so' -or -name '*.dylib'` | grep -v ':' | grep -v '@executable_path' | sort | uniq ############################################## patchage-1.0.0~dfsg0/src/AlsaDriver.hpp-59- patchage-1.0.0~dfsg0/src/AlsaDriver.hpp:60: void print_addr(snd_seq_addr_t addr); patchage-1.0.0~dfsg0/src/AlsaDriver.hpp-61- ############################################## patchage-1.0.0~dfsg0/src/binary_location.h-32- Dl_info dli; patchage-1.0.0~dfsg0/src/binary_location.h:33: const int ret = dladdr((void*)&binary_location, &dli); patchage-1.0.0~dfsg0/src/binary_location.h-34- if (ret) { ############################################## patchage-1.0.0~dfsg0/src/AlsaDriver.cpp-129- while (snd_seq_query_next_port(_seq, pinfo) >= 0) { patchage-1.0.0~dfsg0/src/AlsaDriver.cpp:130: const snd_seq_addr_t& addr = *snd_seq_port_info_get_addr(pinfo); patchage-1.0.0~dfsg0/src/AlsaDriver.cpp-131- if (ignore(addr)) { ############################################## patchage-1.0.0~dfsg0/src/AlsaDriver.cpp-144- while (snd_seq_query_next_port(_seq, pinfo) >= 0) { patchage-1.0.0~dfsg0/src/AlsaDriver.cpp:145: const snd_seq_addr_t* addr = snd_seq_port_info_get_addr(pinfo); patchage-1.0.0~dfsg0/src/AlsaDriver.cpp-146- if (ignore(*addr)) { ############################################## patchage-1.0.0~dfsg0/src/AlsaDriver.cpp-159- while (!snd_seq_query_port_subscribers(_seq, subsinfo)) { patchage-1.0.0~dfsg0/src/AlsaDriver.cpp:160: const snd_seq_addr_t* addr2 = snd_seq_query_subscribe_get_addr(subsinfo); patchage-1.0.0~dfsg0/src/AlsaDriver.cpp-161- if (addr2) {