Skip to content

Instantly share code, notes, and snippets.

@thypon
Created August 24, 2015 12:07
Show Gist options
  • Select an option

  • Save thypon/126698a86cb8348b6b86 to your computer and use it in GitHub Desktop.

Select an option

Save thypon/126698a86cb8348b6b86 to your computer and use it in GitHub Desktop.
check security for all linked libraries
recursivechecksec() {
sudo LD_TRACE_LOADED_OBJECTS=1 LD_VERBOSE=1 /lib/ld-linux-x86-64.so.2 $1 | grep "=>" | sed 's|\s*||' | sed 's|(.*)||g' | awk '{print $3}' | sort | uniq | xargs -n1 ls -la | awk '{print $11}' | xargs -n1 echo /usr/lib/ | sed 's|\s*||g' | xargs -n1 checksec --file
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment