Home > System Tutorial > LINUX > body text

chroot command on Linux: How to run and test applications in an isolated space

PHPz
Release: 2024-02-12 12:12:03
forward
942 people have browsed it

If you are a Linux enthusiast, you may often need to install or uninstall various applications or services on your system. But, did you know that every application or service depends on some shared object files provided by other software packages? If these object files are missing or damaged, your application or service may not work properly or even start. Therefore, knowing how to run and test applications or services in an isolated space is a very useful skill that can help you maintain and optimize your Linux system. This article will introduce a powerful command line tool called chroot, which allows you to create an independent environment on Linux and run and test applications or services in it.

What is chroot in Linux?

Let’s explore chroot in detail, understand its benefits, usage scenarios, how to set it up on a Linux system, and how to get out of (chroot) the environment if necessary.

chroot is change-root, arguably one of the simplest and oldest containerization software, which allows users to safely isolate applications and services. In computing terms, isolation is the confinement of a program into a restricted space, with predefined resources.

If you are familiar with Docker and how it works, you can think of chroot as a greatly simplified version of it. chroot provides an additional layer of isolation and security by changing the root directory of a program, limiting access and visibility.

Basically, you create a separate directory, copy all your program's dependencies into the new directory, and then run the chroot command. This allows programs to run normally while losing access to the underlying file system.

Setting up a program as a chroot environment is a good way to test its reliability in a safe space without changing the files of the actual system. In addition, in a chroot environment, you can reduce the security risks caused by compromised software packages, because in a chroot environment, compromised software packages will not be able to access and modify sensitive system files.

The program can only access and view files imported into the chroot directory, also known as "chroot jail". This prevents the program and its child processes from interfering with the operation of the underlying system.

What is a chroot jail?

A chroot jail is an isolated environment in which chroot programs run and execute. The term chroot jail originates from the concept that processes and their child processes within a chroot environment are unable to access or view the underlying file system and are restricted to the resources reserved for the chroot.

Now that you have a clear understanding of the concept of chroot, let’s get hands-on and learn how to create a chroot jail and execute programs within it.

How to create a chroot jail and execute programs in it

A chroot jail (chroot jail) is essentially a directory that contains all the resources, files, binaries and other dependencies required for the program to run properly.

However, unlike a regular Linux environment, the environment of a chroot jail is strictly restricted and the program cannot access external or additional files and system resources.

For example, to run a Bash shell in a chroot jail, you need to copy the Bash binary and all its dependencies into the chroot directory.

The following are the steps to create a chroot jail and generate a Bash shell:

1. To successfully run a program, you need to copy all its dependencies to the directory of the chroot jail. Let's use the which and ldd commands to find the location of the binary (Bash in this case) and all its dependencies:

┌──(linuxmi㉿linuxmi)-[~/www.linuxmi.com]
└─$ which bash
/usr/bin/bash
                                                                           
┌──(linuxmi㉿linuxmi)-[~/www.linuxmi.com]
└─$ ldd /usr/bin/bash
Copy after login
chroot command on Linux: How to run and test applications in an isolated space

2. Now that you know the location of the binaries and their dependencies, copy them to the directory you want to convert to a chroot jail. Use the mkdir command to create the necessary directories and the cp command to copy all files into the corresponding directories:

mkdir bin lib lib64 && cp -r /lib/ * ./lib && cp -r /lib64/* ./lib64/ && cp /bin/bash /bin/
Copy after login
chroot command on Linux: How to run and test applications in an isolated space

3、最后,当程序和它的依赖项复制完成后,你可以使用 sudo 前缀以提升的权限运行 chroot 命令,在所选择的目录中生成 chroot 环境。默认情况下,它将生成一个Bash shell。下面是要输入的命令:

linuxmi@linuxmi:~$ sudo chroot www.linuxmi.com
Copy after login
chroot command on Linux: How to run and test applications in an isolated space

这就是生成chroot监狱并在其中运行程序的所有步骤。

如何逃离chroot监狱

虽然 chroot 监狱对于测试不稳定的软件很有用,但在处理 SSH 连接时也很有用,因为将连接的用户设置为 chroot 环境是保护 SSH 服务器的众多方法之一。

另一方面,如果你是一名渗透测试人员,并且已登录到目标的 SSH 服务器,发现它是一个 chroot 环境,可能会感到沮丧,感觉走投无路。

然而,有很多方法可以逃离错误配置的 chroot 狱,有些方法需要 C 编程技巧,而其他方法可以使用工具自动化。一些简单的 chroot 逃逸方法包括:

  • 嵌套的 chroot 调用
  • 带有保存的文件描述符的嵌套 chroot 调用
  • 根目录挂载方法
  • procfs 逃逸
  • ptrace 逃逸

请注意,要使用这些方法之一进行 chroot 逃逸,你需要在系统中具有升级的特权。通过访问 chw00t 的 GitHub 存储库,你可以了解更多关于这些逃逸方法的信息,那是一个 chroot 逃逸自动化工具。

现在你应该对 Linux 中的 chroot 了如指掌了

通过本文的介绍,我们了解了chroot是什么、它是如何工作的以及如何实现它,我们还学习了如何创建chroot监狱并在其中执行应用程序或服务,以及如何逃离chroot监狱。chroot是一个简单而强大的工具,可以让你在安全和隔离的空间中运行和测试应用程序或服务。请记住,chroot并不是一个完美的安全解决方案,它有一些局限性和缺陷,因此你应该谨慎地使用它,并结合其他的沙盒或虚拟化技术来提高你的系统的安全性和稳定性。

The above is the detailed content of chroot command on Linux: How to run and test applications in an isolated space. For more information, please follow other related articles on the PHP Chinese website!

source:lxlinux.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!