Skip to content

Instantly share code, notes, and snippets.

@bjoern-r
Last active April 9, 2019 06:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoern-r/ea3f912ce3975f8db4ecd42daecb4bcd to your computer and use it in GitHub Desktop.
Save bjoern-r/ea3f912ce3975f8db4ecd42daecb4bcd to your computer and use it in GitHub Desktop.
busybox static chroot

create user

usermod -G chrootlogin joe

add to sshd_config

change file /etc/ssh/sshd_config

Subsystem     sftp   internal-sftp
Match Group sftp
    ChrootDirectory %h
    ForceCommand internal-sftp
    AllowTcpForwarding 

match Group chrootlogin
	ChrootDirectory /opt/chroot

Prepare chroot

mkdir /opt/chroot
cd /opt/chroot
mkdir {bin,dev,lib}
cp -p /bin/busybox bin/
#cp -p /lib/{ld-linux.so.2,libc.so.6,libdl.so.2,libtermcap.so.2} lib/
mknod dev/null c 1 3
mknod dev/zero c 1 5
chmod 0666 dev/{null,zero}
chroot /opt/chroot /bin/busybox --install -s /bin
chmod +s /opt/chroot/bin/busybox
mkdir -p /opt/chroot/home/joe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment