Created
November 12, 2014 13:48
-
-
Save korovamilk/484fa40523abaecc43cd to your computer and use it in GitHub Desktop.
copy sharedlibs to chroot jail
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Use this script to copy shared (libs) files to Apache/Lighttpd chrooted | |
# jail server. | |
# ---------------------------------------------------------------------------- | |
# Written by nixCraft <http://www.cyberciti.biz/tips/> | |
# (c) 2006 nixCraft under GNU GPL v2.0+ | |
# + Added ld-linux support | |
# + Added error checking support | |
# ------------------------------------------------------------------------------ | |
# See url for usage: | |
# http://www.cyberciti.biz/tips/howto-setup-lighttpd-php-mysql-chrooted-jail.html | |
# ------------------------------------------------------------------------------- | |
# Set CHROOT directory name | |
BASE="/webroot" | |
if [ $# -eq 0 ]; then | |
echo "Syntax : $0 /path/to/executable" | |
echo "Example: $0 /usr/bin/php5-cgi" | |
exit 1 | |
fi | |
[ ! -d $BASE ] && mkdir -p $BASE || : | |
# iggy ld-linux* file as it is not shared one | |
FILES="$(ldd $1 | awk '{ print $3 }' |egrep -v ^'\(')" | |
echo "Copying shared files/libs to $BASE..." | |
for i in $FILES | |
do | |
d="$(dirname $i)" | |
[ ! -d $BASE$d ] && mkdir -p $BASE$d || : | |
/bin/cp $i $BASE$d | |
done | |
# copy /lib/ld-linux* or /lib64/ld-linux* to $BASE/$sldlsubdir | |
# get ld-linux full file location | |
sldl="$(ldd $1 | grep 'ld-linux' | awk '{ print $1}')" | |
# now get sub-dir | |
sldlsubdir="$(dirname $sldl)" | |
if [ ! -f $BASE$sldl ]; | |
then | |
echo "Copying $sldl $BASE$sldlsubdir..." | |
/bin/cp $sldl $BASE$sldlsubdir | |
else | |
: | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment