반응형

find ./ffcc_x86 -type f -perm /a+x -exec ldd {} \; \

| grep so \

| sed -e '/^[^\t]/ d' \

| sed -e 's/\t//' \

| sed -e 's/.*=..//' \

| sed -e 's/ (0.*)//' \

| sort \

| uniq -c \

| sort -n


또는 


objdump -p /usr/bin/python:


Dynamic Section:

  NEEDED               libpthread.so.0

  NEEDED               libdl.so.2

  NEEDED               libutil.so.1

  NEEDED               libssl.so.1.0.0

  NEEDED               libcrypto.so.1.0.0

  NEEDED               libz.so.1

  NEEDED               libm.so.6

  NEEDED               libc.so.6

  INIT                 0x0000000000416a98

  FINI                 0x000000000053c058

  GNU_HASH             0x0000000000400298

  STRTAB               0x000000000040c858

  SYMTAB               0x0000000000402aa8

  STRSZ                0x0000000000006cdb

  SYMENT               0x0000000000000018

  DEBUG                0x0000000000000000

  PLTGOT               0x0000000000832fe8

  PLTRELSZ             0x0000000000002688

  PLTREL               0x0000000000000007

  JMPREL               0x0000000000414410

  RELA                 0x0000000000414398

  RELASZ               0x0000000000000078

  RELAENT              0x0000000000000018

  VERNEED              0x0000000000414258

  VERNEEDNUM           0x0000000000000008

  VERSYM               0x0000000000413534


또는


lsof -P -T -p Application_PID


또는

ldd path/to/the/tool



반응형
Posted by Real_G