메모리를 확인하는 루트 프로세스의 기능

메모리를 확인하는 루트 프로세스의 기능

Linux 시스템에서는 프로세스가 루트 권한을 얻을 수 있으면 일반적으로 액세스할 수 없는 파일 시스템의 일부에 액세스할 수 있다는 것을 알고 있습니다.

루트 Linux 프로세스가 시스템에 있는 다른 프로세스의 메모리를 확인할 수 있는지 묻고 싶습니다. 그렇다면 힙이나 스택에 비밀이 포함된 프로세스가 있는 경우 루트 프로세스가 해당 프로세스에 액세스할 수 있습니까? 그렇다면 어떻게 수행합니까?

(답변한 사람은 루트 쉘 프로세스도 고려할 수 있습니다. 저는 루트 액세스 권한이 있는 프로세스에만 관심이 있습니다.)

답변1

예, 예를 들어 이 답변을 볼 수 있습니다 https://stackoverflow.com/questions/12977179/reading-living-process-memory-without-interrupting-it

아니면 놀 /dev/<pid>/mem거나 /dev/kmem이런 식으로

예를 들어 이 코드를 사용하면,뿌리사용자는 호스트에 있는 모든 프로세스의 메모리를 읽을 수 있습니다.

#! /usr/bin/env python
import re
import sys

print(sys.argv[1] + ".dump")
maps_file = open("/proc/"+ sys.argv[1] + "/maps", 'r')
mem_file = open("/proc/" + sys.argv[1] + "/mem", 'rb', 0)
output_file = open(sys.argv[1] + ".dump", 'wb')
for line in maps_file.readlines():  # for each mapped region
    m = re.match(r'([0-9A-Fa-f]+)-([0-9A-Fa-f]+) ([-r])', line)
    if m.group(3) == 'r':  # if this is a readable region
        start = int(m.group(1), 16)
        end = int(m.group(2), 16)
        mem_file.seek(start)  # seek to region start
        chunk = mem_file.read(end - start)  # read region contents
        output_file.write(chunk)  # dump contents to standard output
maps_file.close()
mem_file.close()
output_file.close()

ptracegdb실시간으로 이 작업을 수행하도록 설계된 도구인 및 의 사용도 참조하세요 .

Bash 쉘 메모리 읽기

루트는 bash 쉘 메모리를 읽습니다.

답변2

예.

루트 기능이 손상되었습니다. 이제 프로세스는 하위 집합을 소유할 수 있습니다(그렇지 않은 루트 포함).

보기로함수 매뉴얼 페이지, 우리는 루트가 (보통) 무엇을 할 수 있는지 볼 수 있습니다.

나는 다음을 포함한다희귀한여기:

   CAP_DAC_OVERRIDE
          Bypass file read, write, and execute permission checks.  (DAC
          is an abbreviation of "discretionary access control".)

   CAP_KILL
          Bypass permission checks for sending signals (see kill(2)).
          This includes use of the ioctl(2) KDSIGACCEPT operation.

   CAP_NET_BIND_SERVICE
          Bind a socket to Internet domain privileged ports (port
          numbers less than 1024).

   CAP_SYS_MODULE
          * Load and unload kernel modules (see init_module(2) and
            delete_module(2));
          * in kernels before 2.6.25: drop capabilities from the system-
            wide capability bounding set.

   CAP_SYS_TIME
          Set system clock (settimeofday(2), stime(2), adjtimex(2)); set
          real-time (hardware) clock.

   CAP_SYS_RAWIO
          * Perform I/O port operations (iopl(2) and ioperm(2));
          * access /proc/kcore;
          * employ the FIBMAP ioctl(2) operation;
          * open devices for accessing x86 model-specific registers
            (MSRs, see msr(4));
          * update /proc/sys/vm/mmap_min_addr;
          * create memory mappings at addresses below the value
            specified by /proc/sys/vm/mmap_min_addr;
          * map files in /proc/bus/pci;
          * open /dev/mem and /dev/kmem;
          * perform various SCSI device commands;
          * perform certain operations on hpsa(4) and cciss(4) devices;
          * perform a range of device-specific operations on other
            devices.

여기에 표시된 모듈은 CAP_SYS_MODULE이를 수행할 수 있는 커널 모듈을 로드하는 데 사용할 수 CAP_SYS_RAWIO있습니다 /dev/mem.ptrace

관련 정보