ファイルを安全に抽出する技術は何ですか?

ファイルを安全に抽出する技術は何ですか?

昨日いくつかの実験をしましたスリターズ。複数のinitrd.imgを使用してファイル/変更を保存します。

initrd.gz画像(cpioアーカイブ)の1つをフォルダに抽出して編集/削除してから、再パッケージ化したいと思います。

私は次のコードを使用しました。

cat rootfs.img | cpio -idvm

その後、すべてのファイルがルートファイルシステムに抽出されます。全体のオペレーティングシステムが破損しています。 (これはどれほど恥ずかしいシーンなのか…)

安全で簡単にするにはどうすればよいですか?つまらない塊? LXC? (VirtualBoxは最後の手段です)

答え1

相対パスを使用してアーカイブ

ルートレベルでは、これらのコマンドを実行しないことをお勧めします/。それは問題を要求しています。私はいつもcpio -idvm私のディレクトリから関連コマンドを実行し、必要な場所にファイルを使用するか手動で入れますmvcp

他のU&L Q&Aで説明されている方法を使用することもできます。SliTaz LinuxにTazPkgをインストールする方法、これも利用されますcpio

絶対パスを使用してアーカイブ

絶対パスを使用してアーカイブを構築した場合は、スイッチをcpio使用して--no-absolute-filenamesアーカイブが/

$ mkdir /tmp/cpio-root
$ cd /tmp/cpio-root
$ cat rootfs.img | cpio -idvm --no-absolute-filenames

引用する

答え2

このunpユーティリティを使用してこれを実行できます。

unpさまざまな形式の圧縮を解くためのユーティリティです。その機能(-Uパラメータ)の1つは、アーカイブを表示して複数のルート要素があるかどうかを確認する機能です。その場合は、ディレクトリに抽出します。

たとえば、

$ echo $RANDOM > a
$ echo $RANDOM > b
$ tar -cf archive.tar a b
$ rm a b
$ unp -U archive.tar
$ ls -l a b archive
ls: cannot access a: No such file or directory
ls: cannot access b: No such file or directory
archive:
total 8
-rw-r--r-- 1 root root 5 Jun 15 03:16 a
-rw-r--r-- 1 root root 6 Jun 15 03:16 b

unpさまざまな形式で提供されます(含まれていますcpio)。アーカイブを処理するために適切なユーティリティを呼び出します。

# unp -s
Known archive formats and tools:
7z:           p7zip or p7zip-full
ace:          unace
ar,deb:       binutils
arj:          arj
bz2:          bzip2
cab:          cabextract
chm:          libchm-bin or archmage
cpio,afio:    cpio or afio
dat:          tnef
dms:          xdms
exe:          maybe orange or unzip or unrar or unarj or lha 
gz:           gzip
hqx:          macutils
lha,lzh:      lha
lz:           lzip
lzma:         xz-utils or lzma
lzo:          lzop
lzx:          unlzx
mbox:         formail and mpack
pmd:          ppmd
rar:          rar or unrar or unrar-free
rpm:          rpm2cpio and cpio
sea,sea.bin:  macutils
shar:         sharutils
tar:          tar
tar.bz2,tbz2: tar with bzip2
tar.lzip:     tar with lzip
tar.lzop,tzo: tar with lzop
tar.xz,txz:   tar with xz-utils
tar.z:        tar with compress
tgz,tar.gz:   tar with gzip
uu:           sharutils
xz:           xz-utils
zip,cbz,cbr,jar,war,ear,xpi,adf: unzip
zoo:          zoo

出力には、--help実行できるアクションが表示されます。

# unp --help

USAGE:
   /usr/bin/unp [ options ] file [ files... ]
   file: compressed file(s) to expand/extract

   Use -- [ ARGUMENTS ] to pass arguments to external programs, eg. some tar options:
   unp fastgl.tgz xmnt.tgz -- -C /tmp

   Options:
   -f Continue even if program availability checks fail or directory collision occurs
   -u Special helper mode.
      For most archive types:
      - create directory <filename without suffix>/
      - extract contents there
      For Debian/Ubuntu packages:
      - extract data.tar.gz after each operation in local directory
      - extract control.tar.gz into control/<package_version_arch>/
   -U Smart mode, acts like -u (see above) if archive contains multiple
      elements but if there is only one file/directory element then it's stored 
      in the current directory.
   -s Show the list of supported formats
   -v More verbosity
   -h Show this help

関連情報