├── .dockerignore ├── .envrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report-🐞.md │ ├── feature-suggestion-💡.md │ └── format-suggestion-📦.md ├── actions │ ├── setup-dependencies │ │ └── action.yml │ └── setup-git-lfs │ │ └── action.yml ├── codeql │ └── codeql-config.yml └── workflows │ ├── CI.yml │ ├── build-nix.yml │ ├── check-mergeable.yml │ ├── codeql-analysis.yml │ └── documentation.yml ├── .gitignore ├── .just └── doc.just ├── .pre-commit-config.yaml ├── .taplo.toml ├── CODE_OF_CONDUCT.md ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── default.nix ├── docs ├── ArtegraSans-Regular.ttf ├── CNAME ├── api.md ├── demo.svg ├── development.md ├── extra.css ├── extractors.md ├── favicon.png ├── formats.md ├── glossary.md ├── guide.md ├── handlers.md ├── index.md ├── installation.md ├── logo.svg ├── privacy.md ├── publications.md ├── support.md └── unblob_architecture.webp ├── flake.lock ├── flake.nix ├── fuzzing └── search_chunks_fuzzer.py ├── install-deps.sh ├── justfile ├── mkdocs.yml ├── overlay.nix ├── package.nix ├── pyproject.toml ├── python └── unblob │ ├── __init__.py │ ├── _rust │ ├── __init__.pyi │ ├── math_tools.pyi │ └── sandbox.pyi │ ├── cli.py │ ├── cli_options.py │ ├── dependencies.py │ ├── doc.py │ ├── extractor.py │ ├── extractors │ ├── README.md │ ├── __init__.py │ └── command.py │ ├── file_utils.py │ ├── finder.py │ ├── handlers │ ├── __init__.py │ ├── archive │ │ ├── __init__.py │ │ ├── _safe_tarfile.py │ │ ├── ar.py │ │ ├── arc.py │ │ ├── arj.py │ │ ├── autel │ │ │ └── ecc.py │ │ ├── cab.py │ │ ├── cpio.py │ │ ├── dlink │ │ │ ├── encrpted_img.py │ │ │ └── shrs.py │ │ ├── dmg.py │ │ ├── engeniustech │ │ │ └── engenius.py │ │ ├── hp │ │ │ ├── bdl.py │ │ │ └── ipkg.py │ │ ├── instar │ │ │ ├── bneg.py │ │ │ └── instar_hd.py │ │ ├── netgear │ │ │ ├── chk.py │ │ │ └── trx.py │ │ ├── partclone.py │ │ ├── qnap │ │ │ └── qnap_nas.py │ │ ├── rar.py │ │ ├── sevenzip.py │ │ ├── stuffit.py │ │ ├── tar.py │ │ ├── xiaomi │ │ │ └── hdr.py │ │ └── zip.py │ ├── compression │ │ ├── __init__.py │ │ ├── _gzip_reader.py │ │ ├── bzip2.py │ │ ├── compress.py │ │ ├── gzip.py │ │ ├── lz4.py │ │ ├── lzh.py │ │ ├── lzip.py │ │ ├── lzma.py │ │ ├── lzo.py │ │ ├── uzip.py │ │ ├── xz.py │ │ ├── zlib.py │ │ └── zstd.py │ ├── executable │ │ ├── __init__.py │ │ └── elf.py │ └── filesystem │ │ ├── __init__.py │ │ ├── android │ │ ├── __init__.py │ │ ├── erofs.py │ │ └── sparse.py │ │ ├── cramfs.py │ │ ├── extfs.py │ │ ├── fat.py │ │ ├── iso9660.py │ │ ├── jffs2.py │ │ ├── ntfs.py │ │ ├── romfs.py │ │ ├── squashfs.py │ │ ├── ubi.py │ │ └── yaffs.py │ ├── hookspecs.py │ ├── identifiers.py │ ├── iter_utils.py │ ├── logging.py │ ├── models.py │ ├── parser.py │ ├── plugins.py │ ├── pool.py │ ├── processing.py │ ├── py.typed │ ├── report.py │ ├── sandbox.py │ ├── testing.py │ └── ui.py ├── renovate.json ├── rust ├── Cargo.toml ├── benches │ └── benches_main.rs └── src │ ├── lib.rs │ ├── math_tools.rs │ └── sandbox │ ├── linux.rs │ ├── mod.rs │ └── unsupported.rs ├── shell.nix ├── tests ├── conftest.py ├── extractors │ └── test_command.py ├── files │ └── suffixes │ │ ├── __input__ │ │ ├── chunks │ │ └── collisions.zip │ │ ├── __outputs__ │ │ ├── chunks │ │ │ ├── _c_e │ │ │ │ └── chunks_c │ │ │ │ │ ├── 0-160.gzip_e │ │ │ │ │ └── gzip.uncompressed │ │ │ │ │ ├── 160-375.gzip_e │ │ │ │ │ └── gzip.uncompressed │ │ │ │ │ └── 375-512.padding │ │ │ ├── _carve_extract │ │ │ │ └── chunks_carve │ │ │ │ │ ├── 0-160.gzip_extract │ │ │ │ │ └── gzip.uncompressed │ │ │ │ │ ├── 160-375.gzip_extract │ │ │ │ │ └── gzip.uncompressed │ │ │ │ │ └── 375-512.padding │ │ │ └── defaults │ │ │ │ └── chunks_extract │ │ │ │ ├── 0-160.gzip_extract │ │ │ │ └── gzip.uncompressed │ │ │ │ ├── 160-375.gzip_extract │ │ │ │ └── gzip.uncompressed │ │ │ │ └── 375-512.padding │ │ └── collisions.zip │ │ │ ├── _c_e │ │ │ └── collisions.zip_e │ │ │ │ ├── chunks │ │ │ │ ├── chunks_c │ │ │ │ ├── 0-160.gzip_e │ │ │ │ │ └── gzip.uncompressed │ │ │ │ ├── 160-375.gzip_e │ │ │ │ │ └── gzip.uncompressed │ │ │ │ └── 375-512.padding │ │ │ │ └── chunks_carve │ │ │ │ ├── 0-160.gzip │ │ │ │ ├── 0-160.gzip_e │ │ │ │ └── gzip.uncompressed │ │ │ │ └── 0-160.gzip_extract │ │ │ │ └── gzip.uncompressed │ │ │ ├── _carve_extract │ │ │ └── collisions.zip_extract │ │ │ │ ├── chunks │ │ │ │ └── chunks_carve │ │ │ │ ├── 0-160.gzip │ │ │ │ └── 0-160.gzip_extract │ │ │ │ └── gzip.uncompressed │ │ │ └── defaults │ │ │ └── collisions.zip_extract │ │ │ ├── chunks │ │ │ ├── chunks_carve │ │ │ ├── 0-160.gzip │ │ │ └── 0-160.gzip_extract │ │ │ │ └── gzip.uncompressed │ │ │ └── chunks_extract │ │ │ ├── 0-160.gzip_extract │ │ │ └── gzip.uncompressed │ │ │ ├── 160-375.gzip_extract │ │ │ └── gzip.uncompressed │ │ │ └── 375-512.padding │ │ └── chunks ├── handlers │ ├── archive │ │ ├── test_arj.py │ │ └── test_tar.py │ ├── compression │ │ ├── test_bzip2.py │ │ ├── test_compress.py │ │ ├── test_gzip.py │ │ └── test_xz.py │ ├── executable │ │ └── test_elf.py │ └── filesystem │ │ ├── test_iso9660.py │ │ ├── test_jffs2.py │ │ ├── test_romfs.py │ │ └── test_squashfs.py ├── integration │ ├── archive │ │ ├── ar │ │ │ ├── __input__ │ │ │ │ ├── a1x01.ar │ │ │ │ ├── bsd_mixed.ar │ │ │ │ ├── bsd_multi_names.ar │ │ │ │ ├── bsd_single_name.ar │ │ │ │ ├── contents.ar │ │ │ │ ├── dual.ar │ │ │ │ ├── durian.ar │ │ │ │ ├── empty.ar │ │ │ │ ├── gnu_mixed.ar │ │ │ │ ├── gnu_multi_names.ar │ │ │ │ ├── gnu_single_name.ar │ │ │ │ ├── malformed_valid.ar │ │ │ │ ├── msvc_lib.ar │ │ │ │ ├── normal.ar │ │ │ │ ├── offset_malformed.ar │ │ │ │ ├── offset_valid.ar │ │ │ │ ├── sym.ar │ │ │ │ ├── valid_malformed.ar │ │ │ │ └── windows.ar │ │ │ └── __output__ │ │ │ │ ├── a1x01.ar_extract │ │ │ │ └── �rvíztűrő tükörfúrógép │ │ │ │ ├── bsd_mixed.ar_extract │ │ │ │ ├── a_very_long_name_for_the_gnu_type_header_so_it_can_overflow_the_standard_name_length │ │ │ │ └── short │ │ │ │ ├── bsd_multi_names.ar_extract │ │ │ │ ├── a_very_long_name_for_the_gnu_type_header_so_it_can_overflow_the_standard_name_length │ │ │ │ └── a_very_long_name_for_the_gnu_type_header_so_it_can_overflow_the_standard_name_length_with_space │ │ │ │ ├── bsd_single_name.ar_extract │ │ │ │ └── a_very_long_name_for_the_gnu_type_header_so_it_can_overflow_the_standard_name_length │ │ │ │ ├── contents.ar_extract │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ │ │ ├── dual.ar_extract │ │ │ │ ├── 0-280.ar │ │ │ │ ├── 0-280.ar_extract │ │ │ │ │ ├── durian1.txt │ │ │ │ │ ├── durian2.txt │ │ │ │ │ ├── durian3.txt │ │ │ │ │ └── durian4.txt │ │ │ │ ├── 280-560.ar │ │ │ │ └── 280-560.ar_extract │ │ │ │ │ ├── durian1.txt │ │ │ │ │ ├── durian2.txt │ │ │ │ │ ├── durian3.txt │ │ │ │ │ └── durian4.txt │ │ │ │ ├── durian.ar_extract │ │ │ │ ├── durian1.txt │ │ │ │ ├── durian2.txt │ │ │ │ ├── durian3.txt │ │ │ │ └── durian4.txt │ │ │ │ ├── gnu_mixed.ar_extract │ │ │ │ ├── a_very_long_name_for_the_gnu_type_header_so_it_can_overflow_the_standard_name_length │ │ │ │ └── short │ │ │ │ ├── gnu_multi_names.ar_extract │ │ │ │ ├── a_very_long_name_for_the_gnu_type_header_so_it_can_overflow_the_standard_name_length │ │ │ │ └── a_very_long_name_for_the_gnu_type_header_so_it_can_overflow_the_standard_name_length_with_space │ │ │ │ ├── gnu_single_name.ar_extract │ │ │ │ └── a_very_long_name_for_the_gnu_type_header_so_it_can_overflow_the_standard_name_length │ │ │ │ ├── malformed_valid.ar_extract │ │ │ │ ├── 0-268.unknown │ │ │ │ ├── 268-548.ar │ │ │ │ └── 268-548.ar_extract │ │ │ │ │ ├── durian1.txt │ │ │ │ │ ├── durian2.txt │ │ │ │ │ ├── durian3.txt │ │ │ │ │ └── durian4.txt │ │ │ │ ├── msvc_lib.ar_extract │ │ │ │ ├── a_very_long_name_for_the_gnu_type_header_so_it_can_overflow_the_standard_name_length │ │ │ │ └── a_very_long_name_for_the_gnu_type_header_so_it_can_overflow_the_standard_name_length_with_space │ │ │ │ ├── normal.ar_extract │ │ │ │ └── short │ │ │ │ ├── offset_valid.ar_extract │ │ │ │ ├── 0-48.unknown │ │ │ │ ├── 48-328.ar │ │ │ │ └── 48-328.ar_extract │ │ │ │ │ ├── durian1.txt │ │ │ │ │ ├── durian2.txt │ │ │ │ │ ├── durian3.txt │ │ │ │ │ └── durian4.txt │ │ │ │ ├── sym.ar_extract │ │ │ │ └── a.o │ │ │ │ ├── valid_malformed.ar_extract │ │ │ │ ├── 0-280.ar │ │ │ │ ├── 0-280.ar_extract │ │ │ │ │ ├── durian1.txt │ │ │ │ │ ├── durian2.txt │ │ │ │ │ ├── durian3.txt │ │ │ │ │ └── durian4.txt │ │ │ │ └── 280-548.unknown │ │ │ │ └── windows.ar_extract │ │ │ │ └── short │ │ ├── arc │ │ │ ├── __input__ │ │ │ │ └── fruits.arc │ │ │ └── __output__ │ │ │ │ └── fruits.arc_extract │ │ │ │ ├── aaaaaaaa.txt │ │ │ │ ├── apple.txt │ │ │ │ └── cherry.txt │ │ ├── arj │ │ │ ├── __input__ │ │ │ │ └── kaki.arj │ │ │ └── __output__ │ │ │ │ └── kaki.arj_extract │ │ │ │ ├── kaki1.txt │ │ │ │ ├── kaki2.txt │ │ │ │ ├── kaki3.txt │ │ │ │ └── kaki4.txt │ │ ├── autel │ │ │ └── ecc │ │ │ │ ├── __input__ │ │ │ │ └── output.bin │ │ │ │ └── __output__ │ │ │ │ └── output.bin_extract │ │ │ │ └── output.bin.decrypted │ │ ├── cab │ │ │ ├── __input__ │ │ │ │ └── banana.cab │ │ │ └── __output__ │ │ │ │ └── banana.cab_extract │ │ │ │ └── banana │ │ │ │ ├── banana1.txt │ │ │ │ ├── banana2.txt │ │ │ │ ├── banana3.txt │ │ │ │ └── banana4.txt │ │ ├── cpio │ │ │ ├── cpio_binary │ │ │ │ ├── __input__ │ │ │ │ │ ├── apple.cpio-bin │ │ │ │ │ ├── apple.cpio-bin.truncated │ │ │ │ │ ├── duplicate_entries.cpio │ │ │ │ │ ├── empty.cpio-bin │ │ │ │ │ ├── empty.cpio-bin.truncated │ │ │ │ │ ├── test.bin.cpio │ │ │ │ │ └── test.bin.cpio.truncated │ │ │ │ └── __output__ │ │ │ │ │ ├── apple.cpio-bin.truncated_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── apple.cpio-bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── duplicate_entries.cpio_extract │ │ │ │ │ └── colors │ │ │ │ │ │ ├── blue │ │ │ │ │ │ ├── blue.txt │ │ │ │ │ │ ├── orange.txt │ │ │ │ │ │ ├── purple │ │ │ │ │ │ └── purple.txt │ │ │ │ │ ├── empty.cpio-bin.truncated_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── dev │ │ │ │ │ │ └── console │ │ │ │ │ ├── empty.txt │ │ │ │ │ └── hello1.txt │ │ │ │ │ ├── empty.cpio-bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── dev │ │ │ │ │ │ └── console │ │ │ │ │ ├── empty.txt │ │ │ │ │ └── hello1.txt │ │ │ │ │ ├── test.bin.cpio.truncated_extract │ │ │ │ │ ├── test0 │ │ │ │ │ ├── test00 │ │ │ │ │ ├── test000 │ │ │ │ │ ├── test0000 │ │ │ │ │ ├── test0001 │ │ │ │ │ ├── test0002 │ │ │ │ │ ├── test0003 │ │ │ │ │ ├── test001 │ │ │ │ │ ├── test002 │ │ │ │ │ ├── test003 │ │ │ │ │ ├── test01 │ │ │ │ │ ├── test02 │ │ │ │ │ ├── test03 │ │ │ │ │ ├── test1 │ │ │ │ │ ├── test2 │ │ │ │ │ └── test3 │ │ │ │ │ └── test.bin.cpio_extract │ │ │ │ │ ├── test0 │ │ │ │ │ ├── test00 │ │ │ │ │ ├── test000 │ │ │ │ │ ├── test0000 │ │ │ │ │ ├── test0001 │ │ │ │ │ ├── test0002 │ │ │ │ │ ├── test0003 │ │ │ │ │ ├── test001 │ │ │ │ │ ├── test002 │ │ │ │ │ ├── test003 │ │ │ │ │ ├── test01 │ │ │ │ │ ├── test02 │ │ │ │ │ ├── test03 │ │ │ │ │ ├── test1 │ │ │ │ │ ├── test2 │ │ │ │ │ └── test3 │ │ │ ├── cpio_portable_ascii │ │ │ │ ├── __input__ │ │ │ │ │ ├── apple.cpio-newc │ │ │ │ │ ├── apple.cpio-newc.truncated │ │ │ │ │ ├── empty.cpio-newc │ │ │ │ │ ├── empty.cpio-newc.truncated │ │ │ │ │ ├── sample.nofilepad.cpio-newc │ │ │ │ │ ├── sample.nofilepad.unaligned.cpio-newc │ │ │ │ │ ├── test.newc.cpio │ │ │ │ │ ├── test.newc.cpio.06000.sticky │ │ │ │ │ └── test.newc.cpio.truncated │ │ │ │ └── __output__ │ │ │ │ │ ├── apple.cpio-newc.truncated_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── apple.cpio-newc_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── empty.cpio-newc.truncated_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── dev │ │ │ │ │ │ └── console │ │ │ │ │ ├── empty.txt │ │ │ │ │ └── hello1.txt │ │ │ │ │ ├── empty.cpio-newc_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── dev │ │ │ │ │ │ └── console │ │ │ │ │ ├── empty.txt │ │ │ │ │ └── hello1.txt │ │ │ │ │ ├── sample.nofilepad.cpio-newc_extract │ │ │ │ │ ├── 0-512.cpio_portable_ascii │ │ │ │ │ ├── 0-512.cpio_portable_ascii_extract │ │ │ │ │ │ ├── dev │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ └── root │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── 512-860.unknown │ │ │ │ │ ├── sample.nofilepad.unaligned.cpio-newc_extract │ │ │ │ │ ├── 0-1.padding │ │ │ │ │ ├── 1-513.cpio_portable_ascii │ │ │ │ │ ├── 1-513.cpio_portable_ascii_extract │ │ │ │ │ │ ├── dev │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ └── root │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── 513-861.unknown │ │ │ │ │ ├── test.newc.cpio.06000.sticky_extract │ │ │ │ │ ├── test0 │ │ │ │ │ ├── test00 │ │ │ │ │ ├── test000 │ │ │ │ │ ├── test0000 │ │ │ │ │ ├── test0001 │ │ │ │ │ ├── test0002 │ │ │ │ │ ├── test0003 │ │ │ │ │ ├── test001 │ │ │ │ │ ├── test002 │ │ │ │ │ ├── test003 │ │ │ │ │ ├── test01 │ │ │ │ │ ├── test02 │ │ │ │ │ ├── test03 │ │ │ │ │ ├── test1 │ │ │ │ │ ├── test2 │ │ │ │ │ └── test3 │ │ │ │ │ ├── test.newc.cpio.truncated_extract │ │ │ │ │ ├── test0 │ │ │ │ │ ├── test00 │ │ │ │ │ ├── test000 │ │ │ │ │ ├── test0000 │ │ │ │ │ ├── test0001 │ │ │ │ │ ├── test0002 │ │ │ │ │ ├── test0003 │ │ │ │ │ ├── test001 │ │ │ │ │ ├── test002 │ │ │ │ │ ├── test003 │ │ │ │ │ ├── test01 │ │ │ │ │ ├── test02 │ │ │ │ │ ├── test03 │ │ │ │ │ ├── test1 │ │ │ │ │ ├── test2 │ │ │ │ │ └── test3 │ │ │ │ │ └── test.newc.cpio_extract │ │ │ │ │ ├── test0 │ │ │ │ │ ├── test00 │ │ │ │ │ ├── test000 │ │ │ │ │ ├── test0000 │ │ │ │ │ ├── test0001 │ │ │ │ │ ├── test0002 │ │ │ │ │ ├── test0003 │ │ │ │ │ ├── test001 │ │ │ │ │ ├── test002 │ │ │ │ │ ├── test003 │ │ │ │ │ ├── test01 │ │ │ │ │ ├── test02 │ │ │ │ │ ├── test03 │ │ │ │ │ ├── test1 │ │ │ │ │ ├── test2 │ │ │ │ │ └── test3 │ │ │ ├── cpio_portable_ascii_crc │ │ │ │ ├── __input__ │ │ │ │ │ ├── apple.cpio-crc │ │ │ │ │ ├── apple.cpio-crc.truncated │ │ │ │ │ ├── empty.cpio-crc │ │ │ │ │ ├── empty.cpio-crc.truncated │ │ │ │ │ ├── test.crc.cpio │ │ │ │ │ └── test.crc.cpio.truncated │ │ │ │ └── __output__ │ │ │ │ │ ├── apple.cpio-crc.truncated_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── apple.cpio-crc_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── empty.cpio-crc.truncated_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── dev │ │ │ │ │ │ └── console │ │ │ │ │ ├── empty.txt │ │ │ │ │ └── hello1.txt │ │ │ │ │ ├── empty.cpio-crc_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── dev │ │ │ │ │ │ └── console │ │ │ │ │ ├── empty.txt │ │ │ │ │ └── hello1.txt │ │ │ │ │ ├── test.crc.cpio.truncated_extract │ │ │ │ │ ├── test0 │ │ │ │ │ ├── test00 │ │ │ │ │ ├── test000 │ │ │ │ │ ├── test0000 │ │ │ │ │ ├── test0001 │ │ │ │ │ ├── test0002 │ │ │ │ │ ├── test0003 │ │ │ │ │ ├── test001 │ │ │ │ │ ├── test002 │ │ │ │ │ ├── test003 │ │ │ │ │ ├── test01 │ │ │ │ │ ├── test02 │ │ │ │ │ ├── test03 │ │ │ │ │ ├── test1 │ │ │ │ │ ├── test2 │ │ │ │ │ └── test3 │ │ │ │ │ └── test.crc.cpio_extract │ │ │ │ │ ├── test0 │ │ │ │ │ ├── test00 │ │ │ │ │ ├── test000 │ │ │ │ │ ├── test0000 │ │ │ │ │ ├── test0001 │ │ │ │ │ ├── test0002 │ │ │ │ │ ├── test0003 │ │ │ │ │ ├── test001 │ │ │ │ │ ├── test002 │ │ │ │ │ ├── test003 │ │ │ │ │ ├── test01 │ │ │ │ │ ├── test02 │ │ │ │ │ ├── test03 │ │ │ │ │ ├── test1 │ │ │ │ │ ├── test2 │ │ │ │ │ └── test3 │ │ │ └── cpio_portable_old_ascii │ │ │ │ ├── __input__ │ │ │ │ ├── apple.cpio-odc │ │ │ │ ├── apple.cpio-odc.truncated │ │ │ │ ├── empty.cpio-odc │ │ │ │ ├── empty.cpio-odc.truncated │ │ │ │ ├── test.odc.cpio │ │ │ │ └── test.odc.cpio.truncated │ │ │ │ └── __output__ │ │ │ │ ├── apple.cpio-odc.truncated_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ ├── apple.cpio-odc_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ ├── empty.cpio-odc.truncated_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── dev │ │ │ │ │ └── console │ │ │ │ ├── empty.txt │ │ │ │ └── hello1.txt │ │ │ │ ├── empty.cpio-odc_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── dev │ │ │ │ │ └── console │ │ │ │ ├── empty.txt │ │ │ │ └── hello1.txt │ │ │ │ ├── test.odc.cpio.truncated_extract │ │ │ │ ├── test0 │ │ │ │ ├── test00 │ │ │ │ ├── test000 │ │ │ │ ├── test0000 │ │ │ │ ├── test0001 │ │ │ │ ├── test0002 │ │ │ │ ├── test0003 │ │ │ │ ├── test001 │ │ │ │ ├── test002 │ │ │ │ ├── test003 │ │ │ │ ├── test01 │ │ │ │ ├── test02 │ │ │ │ ├── test03 │ │ │ │ ├── test1 │ │ │ │ ├── test2 │ │ │ │ └── test3 │ │ │ │ └── test.odc.cpio_extract │ │ │ │ ├── test0 │ │ │ │ ├── test00 │ │ │ │ ├── test000 │ │ │ │ ├── test0000 │ │ │ │ ├── test0001 │ │ │ │ ├── test0002 │ │ │ │ ├── test0003 │ │ │ │ ├── test001 │ │ │ │ ├── test002 │ │ │ │ ├── test003 │ │ │ │ ├── test01 │ │ │ │ ├── test02 │ │ │ │ ├── test03 │ │ │ │ ├── test1 │ │ │ │ ├── test2 │ │ │ │ └── test3 │ │ ├── dlink │ │ │ ├── encrpted_img │ │ │ │ ├── __input__ │ │ │ │ │ └── fruits.dec │ │ │ │ └── __output__ │ │ │ │ │ └── fruits.dec_extract │ │ │ │ │ ├── fruits.dec.decrypted │ │ │ │ │ └── fruits.dec.decrypted_extract │ │ │ │ │ ├── img-1180426539_vol-apple.ubifs │ │ │ │ │ └── img-1180426539_vol-data.ubifs │ │ │ └── shrs │ │ │ │ ├── __input__ │ │ │ │ └── sample.bin │ │ │ │ └── __output__ │ │ │ │ └── sample.bin_extract │ │ │ │ ├── sample.bin.decrypted │ │ │ │ └── sample.bin.decrypted_extract │ │ │ │ ├── img-1180426539_vol-apple.ubifs │ │ │ │ └── img-1180426539_vol-data.ubifs │ │ ├── dmg │ │ │ ├── __input__ │ │ │ │ ├── fruits.dmg │ │ │ │ ├── fruits_osx.compressed.dmg │ │ │ │ └── fruits_osx.dmg │ │ │ └── __output__ │ │ │ │ ├── fruits.dmg_extract │ │ │ │ └── fruits │ │ │ │ │ ├── apple.txt │ │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits_osx.compressed.dmg_extract │ │ │ │ └── fruits │ │ │ │ │ ├── .HFS+ Private Directory Data │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── .Trashes │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ └── fruits_osx.dmg_extract │ │ │ │ └── fruits │ │ │ │ ├── .HFS+ Private Directory Data │ │ │ │ └── .gitkeep │ │ │ │ ├── .Trashes │ │ │ │ └── .gitkeep │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ ├── engeniustech │ │ │ └── engenius │ │ │ │ ├── __input__ │ │ │ │ └── sample.bin │ │ │ │ └── __output__ │ │ │ │ └── sample.bin_extract │ │ │ │ └── sample.bin.decrypted │ │ ├── hp │ │ │ ├── bdl │ │ │ │ ├── __input__ │ │ │ │ │ └── sample.bdl │ │ │ │ └── __output__ │ │ │ │ │ └── sample.bdl_extract │ │ │ │ │ ├── ipkg000 │ │ │ │ │ ├── ipkg000_extract │ │ │ │ │ └── sample.txt │ │ │ │ │ ├── ipkg001 │ │ │ │ │ └── ipkg001_extract │ │ │ │ │ └── sample.txt │ │ │ └── ipkg │ │ │ │ ├── __input__ │ │ │ │ └── sample.ipkg │ │ │ │ └── __output__ │ │ │ │ └── sample.ipkg_extract │ │ │ │ └── sample.txt │ │ ├── instar │ │ │ ├── bneg │ │ │ │ ├── __input__ │ │ │ │ │ └── output.bin │ │ │ │ └── __output__ │ │ │ │ │ └── output.bin_extract │ │ │ │ │ ├── part1 │ │ │ │ │ └── part2 │ │ │ └── instar_hd │ │ │ │ ├── __input__ │ │ │ │ └── sample.pkg │ │ │ │ └── __output__ │ │ │ │ └── sample.pkg_extract │ │ │ │ ├── instar_hd.deobfuscated │ │ │ │ └── instar_hd.deobfuscated_extract │ │ │ │ └── sample.txt │ │ ├── netgear │ │ │ ├── chk │ │ │ │ ├── __input__ │ │ │ │ │ └── sample.chk │ │ │ │ └── __output__ │ │ │ │ │ └── sample.chk_extract │ │ │ │ │ ├── kernel │ │ │ │ │ └── rootfs │ │ │ └── trx │ │ │ │ ├── trx_v1 │ │ │ │ ├── __input__ │ │ │ │ │ └── sample.trx │ │ │ │ └── __output__ │ │ │ │ │ └── sample.trx_extract │ │ │ │ │ ├── part0 │ │ │ │ │ ├── part1 │ │ │ │ │ └── part2 │ │ │ │ └── trx_v2 │ │ │ │ ├── __input__ │ │ │ │ └── sample.trx │ │ │ │ └── __output__ │ │ │ │ └── sample.trx_extract │ │ │ │ ├── part0 │ │ │ │ ├── part1 │ │ │ │ ├── part2 │ │ │ │ └── part3 │ │ ├── partclone │ │ │ ├── __input__ │ │ │ │ ├── floppy-144m.img │ │ │ │ └── fs_dev0.partclone.img │ │ │ └── __output__ │ │ │ │ ├── floppy-144m.img_extract │ │ │ │ ├── partclone.restored │ │ │ │ └── partclone.restored_extract │ │ │ │ │ └── lost+found │ │ │ │ │ └── .gitkeep │ │ │ │ └── fs_dev0.partclone.img_extract │ │ │ │ ├── partclone.restored │ │ │ │ └── partclone.restored_extract │ │ │ │ └── lost+found │ │ │ │ └── .gitkeep │ │ ├── qnap │ │ │ └── qnap_nas │ │ │ │ ├── __input__ │ │ │ │ └── sample.img │ │ │ │ └── __output__ │ │ │ │ └── sample.img_extract │ │ │ │ ├── sample.img.decrypted │ │ │ │ └── sample.img.decrypted_extract │ │ │ │ ├── gzip.uncompressed │ │ │ │ └── gzip.uncompressed_extract │ │ │ │ ├── fruits.ubi │ │ │ │ └── fruits.ubi_extract │ │ │ │ └── gzip.uncompressed │ │ ├── rar │ │ │ ├── default │ │ │ │ ├── __input__ │ │ │ │ │ └── erdbeere.rar │ │ │ │ └── __output__ │ │ │ │ │ └── erdbeere.rar_extract │ │ │ │ │ ├── erdbeere1.txt │ │ │ │ │ ├── erdbeere2.txt │ │ │ │ │ ├── erdbeere3.txt │ │ │ │ │ └── erdbeere4.txt │ │ │ ├── encrypted │ │ │ │ ├── __input__ │ │ │ │ │ └── cherry_encrypted.rar │ │ │ │ └── __output__ │ │ │ │ │ └── cherry_encrypted.rar_extract │ │ │ │ │ ├── 0-46.rar │ │ │ │ │ └── 46-686.unknown │ │ │ └── password │ │ │ │ ├── __input__ │ │ │ │ └── cherry_password.rar │ │ │ │ └── __output__ │ │ │ │ └── .gitkeep │ │ ├── sevenzip │ │ │ ├── __input__ │ │ │ │ ├── cherry.7z │ │ │ │ ├── multi-sevenzip-dangling-symlinks.tar │ │ │ │ └── multi-volume.tgz │ │ │ └── __output__ │ │ │ │ ├── cherry.7z_extract │ │ │ │ ├── cherry1.txt │ │ │ │ ├── cherry2.txt │ │ │ │ ├── cherry3.txt │ │ │ │ └── cherry4.txt │ │ │ │ ├── multi-sevenzip-dangling-symlinks.tar_extract │ │ │ │ ├── dangling-symlink.7z.001 │ │ │ │ ├── dangling-symlink.7z.002 │ │ │ │ └── dangling-symlink.7z.003 │ │ │ │ └── multi-volume.tgz_extract │ │ │ │ ├── mv.7z.001 │ │ │ │ ├── mv.7z.002 │ │ │ │ └── mv.7z_extract │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ ├── stuffit │ │ │ └── stuffit5 │ │ │ │ ├── __input__ │ │ │ │ └── plum.sit5 │ │ │ │ └── __output__ │ │ │ │ └── plum.sit5_extract │ │ │ │ ├── plum1.txt │ │ │ │ ├── plum2.txt │ │ │ │ ├── plum3.txt │ │ │ │ └── plum4.txt │ │ ├── tar │ │ │ ├── __input__ │ │ │ │ ├── absolute.tar │ │ │ │ ├── cherry.gnu.tar │ │ │ │ ├── cherry.posix.tar │ │ │ │ ├── cherry.posixly_correct.tar │ │ │ │ ├── cherry.v7.tar │ │ │ │ ├── damaged.gnu.tar │ │ │ │ ├── dual_entry.tar │ │ │ │ ├── emptyname.tar │ │ │ │ ├── linktest_missing_dir.tar │ │ │ │ ├── longname.tar │ │ │ │ ├── sparse.tar │ │ │ │ ├── symlinks.tar │ │ │ │ ├── traversal.tar │ │ │ │ ├── truncated-cherry.posix.tar │ │ │ │ └── truncated-header.tar │ │ │ └── __output__ │ │ │ │ ├── absolute.tar_extract │ │ │ │ └── absolute │ │ │ │ │ ├── absolute-file │ │ │ │ │ ├── absolute-symlink │ │ │ │ │ ├── link_to_etc_shadow │ │ │ │ │ └── post-link-traversal-file │ │ │ │ ├── cherry.gnu.tar_extract │ │ │ │ ├── banana.gnu.tar │ │ │ │ ├── banana.gnu.tar_extract │ │ │ │ │ ├── apple.gnu.tar │ │ │ │ │ ├── apple.gnu.tar_extract │ │ │ │ │ │ ├── apple1.txt │ │ │ │ │ │ ├── apple2.txt │ │ │ │ │ │ ├── apple3.txt │ │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── apple.posix.tar │ │ │ │ │ ├── apple.posix.tar_extract │ │ │ │ │ │ ├── apple1.txt │ │ │ │ │ │ ├── apple2.txt │ │ │ │ │ │ ├── apple3.txt │ │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── banana1.txt │ │ │ │ │ ├── banana2.txt │ │ │ │ │ ├── banana3.txt │ │ │ │ │ └── banana4.txt │ │ │ │ ├── banana.posix.tar │ │ │ │ ├── banana.posix.tar_extract │ │ │ │ │ ├── apple.gnu.tar │ │ │ │ │ ├── apple.gnu.tar_extract │ │ │ │ │ │ ├── apple1.txt │ │ │ │ │ │ ├── apple2.txt │ │ │ │ │ │ ├── apple3.txt │ │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── apple.posix.tar │ │ │ │ │ ├── apple.posix.tar_extract │ │ │ │ │ │ ├── apple1.txt │ │ │ │ │ │ ├── apple2.txt │ │ │ │ │ │ ├── apple3.txt │ │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── banana1.txt │ │ │ │ │ ├── banana2.txt │ │ │ │ │ ├── banana3.txt │ │ │ │ │ └── banana4.txt │ │ │ │ ├── cherry1.txt │ │ │ │ ├── cherry2.txt │ │ │ │ ├── cherry3.txt │ │ │ │ └── cherry4.txt │ │ │ │ ├── cherry.posix.tar_extract │ │ │ │ ├── banana.gnu.tar │ │ │ │ ├── banana.gnu.tar_extract │ │ │ │ │ ├── apple.gnu.tar │ │ │ │ │ ├── apple.gnu.tar_extract │ │ │ │ │ │ ├── apple1.txt │ │ │ │ │ │ ├── apple2.txt │ │ │ │ │ │ ├── apple3.txt │ │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── apple.posix.tar │ │ │ │ │ ├── apple.posix.tar_extract │ │ │ │ │ │ ├── apple1.txt │ │ │ │ │ │ ├── apple2.txt │ │ │ │ │ │ ├── apple3.txt │ │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── banana1.txt │ │ │ │ │ ├── banana2.txt │ │ │ │ │ ├── banana3.txt │ │ │ │ │ └── banana4.txt │ │ │ │ ├── banana.posix.tar │ │ │ │ ├── banana.posix.tar_extract │ │ │ │ │ ├── apple.gnu.tar │ │ │ │ │ ├── apple.gnu.tar_extract │ │ │ │ │ │ ├── apple1.txt │ │ │ │ │ │ ├── apple2.txt │ │ │ │ │ │ ├── apple3.txt │ │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── apple.posix.tar │ │ │ │ │ ├── apple.posix.tar_extract │ │ │ │ │ │ ├── apple1.txt │ │ │ │ │ │ ├── apple2.txt │ │ │ │ │ │ ├── apple3.txt │ │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── banana1.txt │ │ │ │ │ ├── banana2.txt │ │ │ │ │ ├── banana3.txt │ │ │ │ │ └── banana4.txt │ │ │ │ ├── cherry1.txt │ │ │ │ ├── cherry2.txt │ │ │ │ ├── cherry3.txt │ │ │ │ └── cherry4.txt │ │ │ │ ├── cherry.posixly_correct.tar_extract │ │ │ │ ├── cherry1.txt │ │ │ │ ├── cherry2.txt │ │ │ │ ├── cherry3.txt │ │ │ │ └── cherry4.txt │ │ │ │ ├── cherry.v7.tar_extract │ │ │ │ └── fruits │ │ │ │ │ ├── cherry1.txt │ │ │ │ │ ├── cherry2.txt │ │ │ │ │ ├── cherry3.txt │ │ │ │ │ └── cherry4.txt │ │ │ │ ├── damaged.gnu.tar_extract │ │ │ │ ├── 0-1024.tar │ │ │ │ ├── 0-1024.tar_extract │ │ │ │ │ └── cherry1.txt │ │ │ │ ├── 1024-2048.unknown │ │ │ │ ├── 2048-10240.tar │ │ │ │ └── 2048-10240.tar_extract │ │ │ │ │ ├── cherry3.txt │ │ │ │ │ └── cherry4.txt │ │ │ │ ├── dual_entry.tar_extract │ │ │ │ └── ppc64-POWER7-64cpu │ │ │ │ │ └── proc │ │ │ │ │ └── device-tree │ │ │ │ │ ├── hmc-managed? │ │ │ │ │ └── ibm,partition-name │ │ │ │ ├── emptyname.tar_extract │ │ │ │ └── apple.txt │ │ │ │ ├── linktest_missing_dir.tar_extract │ │ │ │ └── linktest │ │ │ │ │ └── link │ │ │ │ ├── longname.tar_extract │ │ │ │ └── apple.txt │ │ │ │ ├── sparse.tar_extract │ │ │ │ ├── dummy1 │ │ │ │ ├── dummy2 │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ │ │ ├── symlinks.tar_extract │ │ │ │ └── test │ │ │ │ │ ├── bin │ │ │ │ │ └── busybox │ │ │ │ │ └── sbin │ │ │ │ │ ├── cp │ │ │ │ │ ├── find │ │ │ │ │ ├── ln │ │ │ │ │ ├── ls │ │ │ │ │ └── mv │ │ │ │ ├── traversal.tar_extract │ │ │ │ └── xz.uncompressed │ │ │ │ └── truncated-cherry.posix.tar_extract │ │ │ │ ├── 0-80896.tar │ │ │ │ ├── 0-80896.tar_extract │ │ │ │ ├── banana.gnu.tar │ │ │ │ ├── banana.gnu.tar_extract │ │ │ │ │ ├── apple.gnu.tar │ │ │ │ │ ├── apple.gnu.tar_extract │ │ │ │ │ │ ├── apple1.txt │ │ │ │ │ │ ├── apple2.txt │ │ │ │ │ │ ├── apple3.txt │ │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── apple.posix.tar │ │ │ │ │ ├── apple.posix.tar_extract │ │ │ │ │ │ ├── apple1.txt │ │ │ │ │ │ ├── apple2.txt │ │ │ │ │ │ ├── apple3.txt │ │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── banana1.txt │ │ │ │ │ ├── banana2.txt │ │ │ │ │ ├── banana3.txt │ │ │ │ │ └── banana4.txt │ │ │ │ ├── banana.posix.tar │ │ │ │ ├── banana.posix.tar_extract │ │ │ │ │ ├── apple.gnu.tar │ │ │ │ │ ├── apple.gnu.tar_extract │ │ │ │ │ │ ├── apple1.txt │ │ │ │ │ │ ├── apple2.txt │ │ │ │ │ │ ├── apple3.txt │ │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── apple.posix.tar │ │ │ │ │ ├── apple.posix.tar_extract │ │ │ │ │ │ ├── apple1.txt │ │ │ │ │ │ ├── apple2.txt │ │ │ │ │ │ ├── apple3.txt │ │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── banana1.txt │ │ │ │ │ ├── banana2.txt │ │ │ │ │ ├── banana3.txt │ │ │ │ │ └── banana4.txt │ │ │ │ ├── cherry1.txt │ │ │ │ ├── cherry2.txt │ │ │ │ └── cherry3.txt │ │ │ │ └── 80896-82439.unknown │ │ ├── xiaomi │ │ │ └── hdr │ │ │ │ ├── hdr1 │ │ │ │ ├── __input__ │ │ │ │ │ └── sample.bin │ │ │ │ └── __output__ │ │ │ │ │ └── sample.bin_extract │ │ │ │ │ ├── blob0 │ │ │ │ │ ├── blob1 │ │ │ │ │ ├── blob2 │ │ │ │ │ ├── blob3 │ │ │ │ │ ├── blob4 │ │ │ │ │ ├── blob5 │ │ │ │ │ ├── blob6 │ │ │ │ │ └── blob7 │ │ │ │ └── hdr2 │ │ │ │ ├── __input__ │ │ │ │ └── sample.bin │ │ │ │ └── __output__ │ │ │ │ └── sample.bin_extract │ │ │ │ ├── blob0 │ │ │ │ ├── blob1 │ │ │ │ ├── blob2 │ │ │ │ ├── blob3 │ │ │ │ ├── blob4 │ │ │ │ ├── blob5 │ │ │ │ ├── blob6 │ │ │ │ └── blob7 │ │ └── zip │ │ │ ├── encrypted │ │ │ ├── __input__ │ │ │ │ └── apple_encrypted.zip │ │ │ └── __output__ │ │ │ │ └── .gitkeep │ │ │ ├── partly_encrypted │ │ │ ├── __input__ │ │ │ │ └── kaki1_aes.zip │ │ │ └── __output__ │ │ │ │ └── .gitkeep │ │ │ ├── regular │ │ │ ├── __input__ │ │ │ │ └── apple.zip │ │ │ └── __output__ │ │ │ │ └── apple.zip_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ └── zip64 │ │ │ ├── __input__ │ │ │ ├── apple.zip │ │ │ ├── colors.zip │ │ │ ├── colors_garbage.zip │ │ │ ├── zero_edited.zip │ │ │ └── zip64-without-cd.zip │ │ │ └── __output__ │ │ │ ├── apple.zip_extract │ │ │ ├── apple1.txt │ │ │ ├── apple2.txt │ │ │ ├── apple3.txt │ │ │ └── apple4.txt │ │ │ ├── colors.zip_extract │ │ │ ├── blue.txt │ │ │ └── red.txt │ │ │ ├── colors_garbage.zip_extract │ │ │ ├── 0-1024.unknown │ │ │ ├── 1024-1481.zip │ │ │ └── 1024-1481.zip_extract │ │ │ │ ├── blue.txt │ │ │ │ └── red.txt │ │ │ ├── zero_edited.zip_extract │ │ │ └── zero │ │ │ └── zip64-without-cd.zip_extract │ │ │ └── - │ ├── compression │ │ ├── bzip2 │ │ │ ├── __input__ │ │ │ │ ├── collated.bzip2 │ │ │ │ ├── collated.headpad.bzip2 │ │ │ │ ├── dual.txt.bzip2 │ │ │ │ ├── lorem.txt.bz2 │ │ │ │ └── multiblock.bzip2 │ │ │ └── __output__ │ │ │ │ ├── collated.bzip2_extract │ │ │ │ └── bzip2.uncompressed │ │ │ │ ├── collated.headpad.bzip2_extract │ │ │ │ ├── 0-17.padding │ │ │ │ ├── 17-5107.bzip2 │ │ │ │ └── 17-5107.bzip2_extract │ │ │ │ │ └── bzip2.uncompressed │ │ │ │ ├── dual.txt.bzip2_extract │ │ │ │ ├── 0-2545.bzip2 │ │ │ │ ├── 0-2545.bzip2_extract │ │ │ │ │ └── bzip2.uncompressed │ │ │ │ ├── 2545-2554.unknown │ │ │ │ ├── 2554-5099.bzip2 │ │ │ │ └── 2554-5099.bzip2_extract │ │ │ │ │ └── bzip2.uncompressed │ │ │ │ ├── lorem.txt.bz2_extract │ │ │ │ └── bzip2.uncompressed │ │ │ │ └── multiblock.bzip2_extract │ │ │ │ └── bzip2.uncompressed │ │ ├── compress │ │ │ ├── __input__ │ │ │ │ └── apple1.z │ │ │ └── __output__ │ │ │ │ └── apple1.z_extract │ │ │ │ └── lzw.uncompressed │ │ ├── gzip │ │ │ ├── __input__ │ │ │ │ ├── durian.dual.gz │ │ │ │ ├── durian.eof.gz │ │ │ │ ├── durian.gz │ │ │ │ ├── multi-gzip-dangling-symlinks.tar │ │ │ │ ├── multi-volume-digit-hash.tar │ │ │ │ ├── multi-volume-digit.tar │ │ │ │ ├── multi-volume-split-then-gzip.tar │ │ │ │ ├── multi-volume.tar │ │ │ │ ├── no-name.gz │ │ │ │ └── path-traversal.gz │ │ │ └── __output__ │ │ │ │ ├── durian.dual.gz_extract │ │ │ │ ├── 0-43.gzip │ │ │ │ ├── 0-43.gzip_extract │ │ │ │ │ └── durian1.txt │ │ │ │ ├── 43-86.gzip │ │ │ │ └── 43-86.gzip_extract │ │ │ │ │ └── durian1.txt │ │ │ │ ├── durian.eof.gz_extract │ │ │ │ ├── 0-43.gzip │ │ │ │ ├── 0-43.gzip_extract │ │ │ │ │ └── durian1.txt │ │ │ │ └── 43-59.unknown │ │ │ │ ├── durian.gz_extract │ │ │ │ └── durian1.txt │ │ │ │ ├── multi-gzip-dangling-symlinks.tar_extract │ │ │ │ ├── dangling-symlink.gz.a │ │ │ │ ├── dangling-symlink.gz.b │ │ │ │ └── dangling-symlink.gz.c │ │ │ │ ├── multi-volume-digit-hash.tar_extract │ │ │ │ ├── multi-part-file.gz.01 │ │ │ │ ├── multi-part-file.gz.02 │ │ │ │ ├── multi-part-file.gz.md5 │ │ │ │ └── multi-part-file.gz_extract │ │ │ │ │ └── one.txt │ │ │ │ ├── multi-volume-digit.tar_extract │ │ │ │ ├── multi-part-file.gz.01 │ │ │ │ ├── multi-part-file.gz.02 │ │ │ │ └── multi-part-file.gz_extract │ │ │ │ │ └── one.txt │ │ │ │ ├── multi-volume-split-then-gzip.tar_extract │ │ │ │ ├── one.txt.gz.aa │ │ │ │ ├── one.txt.gz.ab │ │ │ │ ├── one.txt.gz.ac │ │ │ │ └── one.txt.gz_extract │ │ │ │ │ └── one.txt │ │ │ │ ├── multi-volume.tar_extract │ │ │ │ ├── multi-part-file.gz.aa │ │ │ │ ├── multi-part-file.gz.ab │ │ │ │ └── multi-part-file.gz_extract │ │ │ │ │ └── one.txt │ │ │ │ ├── no-name.gz_extract │ │ │ │ └── gzip.uncompressed │ │ │ │ └── path-traversal.gz_extract │ │ │ │ └── whatever...... │ │ ├── lz4 │ │ │ ├── lz4_default │ │ │ │ ├── __input__ │ │ │ │ │ ├── lorem.block_checksum.lz4 │ │ │ │ │ ├── lorem.csize.lz4 │ │ │ │ │ ├── lorem.no_block_checksum.lz4 │ │ │ │ │ ├── lorem.nocsize.lz4 │ │ │ │ │ └── lorem.noframecrc.lz4 │ │ │ │ └── __output__ │ │ │ │ │ ├── lorem.block_checksum.lz4_extract │ │ │ │ │ └── lz4.uncompressed │ │ │ │ │ ├── lorem.csize.lz4_extract │ │ │ │ │ └── lz4.uncompressed │ │ │ │ │ ├── lorem.no_block_checksum.lz4_extract │ │ │ │ │ └── lz4.uncompressed │ │ │ │ │ ├── lorem.nocsize.lz4_extract │ │ │ │ │ └── lz4.uncompressed │ │ │ │ │ └── lorem.noframecrc.lz4_extract │ │ │ │ │ └── lz4.uncompressed │ │ │ ├── lz4_legacy │ │ │ │ ├── __input__ │ │ │ │ │ └── lorem.legacy.lz4 │ │ │ │ └── __output__ │ │ │ │ │ └── lorem.legacy.lz4_extract │ │ │ │ │ └── lz4.uncompressed │ │ │ └── lz4_skippable │ │ │ │ ├── __input__ │ │ │ │ └── skippable.lz4 │ │ │ │ └── __output__ │ │ │ │ └── skippable.lz4_extract │ │ │ │ └── lz4.uncompressed │ │ ├── lzh │ │ │ ├── __input__ │ │ │ │ ├── fruits.lvl0.lzh │ │ │ │ ├── fruits.lvl1.lzh │ │ │ │ └── fruits.lvl2.lzh │ │ │ └── __output__ │ │ │ │ ├── fruits.lvl0.lzh_extract │ │ │ │ ├── 0-39.lzh │ │ │ │ ├── 0-39.lzh_extract │ │ │ │ │ └── apple.txt │ │ │ │ ├── 39-80.lzh │ │ │ │ ├── 39-80.lzh_extract │ │ │ │ │ └── banana.txt │ │ │ │ ├── 80-122.lzh │ │ │ │ └── 80-122.lzh_extract │ │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.lvl1.lzh_extract │ │ │ │ ├── 0-47.lzh │ │ │ │ ├── 0-47.lzh_extract │ │ │ │ │ └── apple.txt │ │ │ │ ├── 47-96.lzh │ │ │ │ ├── 47-96.lzh_extract │ │ │ │ │ └── banana.txt │ │ │ │ ├── 96-146.lzh │ │ │ │ └── 96-146.lzh_extract │ │ │ │ │ └── cherry.txt │ │ │ │ └── fruits.lvl2.lzh_extract │ │ │ │ ├── 0-49.lzh │ │ │ │ ├── 0-49.lzh_extract │ │ │ │ └── apple.txt │ │ │ │ ├── 100-152.lzh │ │ │ │ ├── 100-152.lzh_extract │ │ │ │ └── cherry.txt │ │ │ │ ├── 49-100.lzh │ │ │ │ └── 49-100.lzh_extract │ │ │ │ └── banana.txt │ │ ├── lzip │ │ │ ├── __input__ │ │ │ │ └── lorem.txt.lz │ │ │ └── __output__ │ │ │ │ └── lorem.txt.lz_extract │ │ │ │ └── lz.uncompressed │ │ ├── lzma │ │ │ ├── __input__ │ │ │ │ ├── lorem.txt.known_size.lzma │ │ │ │ ├── lorem.txt.small_size.lzma │ │ │ │ ├── lorem.txt.smaller_than_compressed.lzma │ │ │ │ ├── lorem.txt.unknown_size.lzma │ │ │ │ └── lorem.txt.unused.lzma │ │ │ └── __output__ │ │ │ │ ├── lorem.txt.known_size.lzma_extract │ │ │ │ └── lzma.uncompressed │ │ │ │ ├── lorem.txt.unknown_size.lzma_extract │ │ │ │ └── lzma.uncompressed │ │ │ │ └── lorem.txt.unused.lzma_extract │ │ │ │ ├── 0-2550.lzma │ │ │ │ ├── 0-2550.lzma_extract │ │ │ │ └── lzma.uncompressed │ │ │ │ └── 2550-2590.unknown │ │ ├── lzo │ │ │ ├── __input__ │ │ │ │ ├── lorem.adler.checksum.filter.multi-block.file.lzo │ │ │ │ ├── lorem.adler.checksum.filter.multi-block.stdin.lzo │ │ │ │ ├── lorem.adler.checksum.filter.multi-file.lzo │ │ │ │ ├── lorem.adler.checksum.filter.simple.file.lzo │ │ │ │ ├── lorem.adler.checksum.filter.simple.stdin.lzo │ │ │ │ ├── lorem.adler.checksum.no-filter.multi-block.file.lzo │ │ │ │ ├── lorem.adler.checksum.no-filter.multi-block.stdin.lzo │ │ │ │ ├── lorem.adler.checksum.no-filter.multi-file.lzo │ │ │ │ ├── lorem.adler.checksum.no-filter.simple.file.lzo │ │ │ │ ├── lorem.adler.checksum.no-filter.simple.stdin.lzo │ │ │ │ ├── lorem.adler.no-checksum.filter.multi-block.file.lzo │ │ │ │ ├── lorem.adler.no-checksum.filter.multi-block.stdin.lzo │ │ │ │ ├── lorem.adler.no-checksum.filter.multi-file.lzo │ │ │ │ ├── lorem.adler.no-checksum.filter.simple.file.lzo │ │ │ │ ├── lorem.adler.no-checksum.filter.simple.stdin.lzo │ │ │ │ ├── lorem.adler.no-checksum.no-filter.multi-block.file.lzo │ │ │ │ ├── lorem.adler.no-checksum.no-filter.multi-block.stdin.lzo │ │ │ │ ├── lorem.adler.no-checksum.no-filter.multi-file.lzo │ │ │ │ ├── lorem.adler.no-checksum.no-filter.simple.file.lzo │ │ │ │ ├── lorem.adler.no-checksum.no-filter.simple.stdin.lzo │ │ │ │ ├── lorem.crc32.checksum.filter.multi-block.file.lzo │ │ │ │ ├── lorem.crc32.checksum.filter.multi-block.stdin.lzo │ │ │ │ ├── lorem.crc32.checksum.filter.multi-file.lzo │ │ │ │ ├── lorem.crc32.checksum.filter.simple.file.lzo │ │ │ │ ├── lorem.crc32.checksum.filter.simple.stdin.lzo │ │ │ │ ├── lorem.crc32.checksum.no-filter.multi-block.file.lzo │ │ │ │ ├── lorem.crc32.checksum.no-filter.multi-block.stdin.lzo │ │ │ │ ├── lorem.crc32.checksum.no-filter.multi-file.lzo │ │ │ │ ├── lorem.crc32.checksum.no-filter.simple.file.lzo │ │ │ │ ├── lorem.crc32.checksum.no-filter.simple.stdin.lzo │ │ │ │ ├── lorem.crc32.no-checksum.filter.multi-block.file.lzo │ │ │ │ ├── lorem.crc32.no-checksum.filter.multi-block.stdin.lzo │ │ │ │ ├── lorem.crc32.no-checksum.filter.multi-file.lzo │ │ │ │ ├── lorem.crc32.no-checksum.filter.simple.file.lzo │ │ │ │ ├── lorem.crc32.no-checksum.filter.simple.stdin.lzo │ │ │ │ ├── lorem.crc32.no-checksum.no-filter.multi-block.file.lzo │ │ │ │ ├── lorem.crc32.no-checksum.no-filter.multi-block.stdin.lzo │ │ │ │ ├── lorem.crc32.no-checksum.no-filter.multi-file.lzo │ │ │ │ ├── lorem.crc32.no-checksum.no-filter.simple.file.lzo │ │ │ │ ├── lorem.crc32.no-checksum.no-filter.simple.stdin.lzo │ │ │ │ ├── lorem.filter.lzo │ │ │ │ └── lorem.lzo │ │ │ └── __output__ │ │ │ │ ├── lorem.adler.checksum.filter.multi-block.file.lzo_extract │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.adler.checksum.filter.multi-block.stdin.lzo_extract │ │ │ │ └── lorem.adler.checksum.filter.multi-block.stdin │ │ │ │ ├── lorem.adler.checksum.filter.multi-file.lzo_extract │ │ │ │ ├── 0-4341.lzo │ │ │ │ ├── 0-4341.lzo_extract │ │ │ │ │ └── lorem.txt │ │ │ │ ├── 4341-33904.lzo │ │ │ │ └── 4341-33904.lzo_extract │ │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.adler.checksum.filter.simple.file.lzo_extract │ │ │ │ └── lorem.txt │ │ │ │ ├── lorem.adler.checksum.filter.simple.stdin.lzo_extract │ │ │ │ └── lorem.adler.checksum.filter.simple.stdin │ │ │ │ ├── lorem.adler.checksum.no-filter.multi-block.file.lzo_extract │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.adler.checksum.no-filter.multi-block.stdin.lzo_extract │ │ │ │ └── lorem.adler.checksum.no-filter.multi-block.stdin │ │ │ │ ├── lorem.adler.checksum.no-filter.multi-file.lzo_extract │ │ │ │ ├── 0-3933.lzo │ │ │ │ ├── 0-3933.lzo_extract │ │ │ │ │ └── lorem.txt │ │ │ │ ├── 3933-30437.lzo │ │ │ │ └── 3933-30437.lzo_extract │ │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.adler.checksum.no-filter.simple.file.lzo_extract │ │ │ │ └── lorem.txt │ │ │ │ ├── lorem.adler.checksum.no-filter.simple.stdin.lzo_extract │ │ │ │ └── lorem.adler.checksum.no-filter.simple.stdin │ │ │ │ ├── lorem.adler.no-checksum.filter.multi-block.file.lzo_extract │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.adler.no-checksum.filter.multi-block.stdin.lzo_extract │ │ │ │ └── lorem.adler.no-checksum.filter.multi-block.stdin │ │ │ │ ├── lorem.adler.no-checksum.filter.multi-file.lzo_extract │ │ │ │ ├── 0-4337.lzo │ │ │ │ ├── 0-4337.lzo_extract │ │ │ │ │ └── lorem.txt │ │ │ │ ├── 4337-33892.lzo │ │ │ │ └── 4337-33892.lzo_extract │ │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.adler.no-checksum.filter.simple.file.lzo_extract │ │ │ │ └── lorem.txt │ │ │ │ ├── lorem.adler.no-checksum.filter.simple.stdin.lzo_extract │ │ │ │ └── lorem.adler.no-checksum.filter.simple.stdin │ │ │ │ ├── lorem.adler.no-checksum.no-filter.multi-block.file.lzo_extract │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.adler.no-checksum.no-filter.multi-block.stdin.lzo_extract │ │ │ │ └── lorem.adler.no-checksum.no-filter.multi-block.stdin │ │ │ │ ├── lorem.adler.no-checksum.no-filter.multi-file.lzo_extract │ │ │ │ ├── 0-3929.lzo │ │ │ │ ├── 0-3929.lzo_extract │ │ │ │ │ └── lorem.txt │ │ │ │ ├── 3929-30425.lzo │ │ │ │ └── 3929-30425.lzo_extract │ │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.adler.no-checksum.no-filter.simple.file.lzo_extract │ │ │ │ └── lorem.txt │ │ │ │ ├── lorem.adler.no-checksum.no-filter.simple.stdin.lzo_extract │ │ │ │ └── lorem.adler.no-checksum.no-filter.simple.stdin │ │ │ │ ├── lorem.crc32.checksum.filter.multi-block.file.lzo_extract │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.crc32.checksum.filter.multi-block.stdin.lzo_extract │ │ │ │ └── lorem.crc32.checksum.filter.multi-block.stdin │ │ │ │ ├── lorem.crc32.checksum.filter.multi-file.lzo_extract │ │ │ │ ├── 0-4341.lzo │ │ │ │ ├── 0-4341.lzo_extract │ │ │ │ │ └── lorem.txt │ │ │ │ ├── 4341-33904.lzo │ │ │ │ └── 4341-33904.lzo_extract │ │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.crc32.checksum.filter.simple.file.lzo_extract │ │ │ │ └── lorem.txt │ │ │ │ ├── lorem.crc32.checksum.filter.simple.stdin.lzo_extract │ │ │ │ └── lorem.crc32.checksum.filter.simple.stdin │ │ │ │ ├── lorem.crc32.checksum.no-filter.multi-block.file.lzo_extract │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.crc32.checksum.no-filter.multi-block.stdin.lzo_extract │ │ │ │ └── lorem.crc32.checksum.no-filter.multi-block.stdin │ │ │ │ ├── lorem.crc32.checksum.no-filter.multi-file.lzo_extract │ │ │ │ ├── 0-3933.lzo │ │ │ │ ├── 0-3933.lzo_extract │ │ │ │ │ └── lorem.txt │ │ │ │ ├── 3933-30437.lzo │ │ │ │ └── 3933-30437.lzo_extract │ │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.crc32.checksum.no-filter.simple.file.lzo_extract │ │ │ │ └── lorem.txt │ │ │ │ ├── lorem.crc32.checksum.no-filter.simple.stdin.lzo_extract │ │ │ │ └── lorem.crc32.checksum.no-filter.simple.stdin │ │ │ │ ├── lorem.crc32.no-checksum.filter.multi-block.file.lzo_extract │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.crc32.no-checksum.filter.multi-block.stdin.lzo_extract │ │ │ │ └── lorem.crc32.no-checksum.filter.multi-block.stdin │ │ │ │ ├── lorem.crc32.no-checksum.filter.multi-file.lzo_extract │ │ │ │ ├── 0-4337.lzo │ │ │ │ ├── 0-4337.lzo_extract │ │ │ │ │ └── lorem.txt │ │ │ │ ├── 4337-33892.lzo │ │ │ │ └── 4337-33892.lzo_extract │ │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.crc32.no-checksum.filter.simple.file.lzo_extract │ │ │ │ └── lorem.txt │ │ │ │ ├── lorem.crc32.no-checksum.filter.simple.stdin.lzo_extract │ │ │ │ └── lorem.crc32.no-checksum.filter.simple.stdin │ │ │ │ ├── lorem.crc32.no-checksum.no-filter.multi-block.file.lzo_extract │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.crc32.no-checksum.no-filter.multi-block.stdin.lzo_extract │ │ │ │ └── lorem.crc32.no-checksum.no-filter.multi-block.stdin │ │ │ │ ├── lorem.crc32.no-checksum.no-filter.multi-file.lzo_extract │ │ │ │ ├── 0-3929.lzo │ │ │ │ ├── 0-3929.lzo_extract │ │ │ │ │ └── lorem.txt │ │ │ │ ├── 3929-30425.lzo │ │ │ │ └── 3929-30425.lzo_extract │ │ │ │ │ └── big256k.txt │ │ │ │ ├── lorem.crc32.no-checksum.no-filter.simple.file.lzo_extract │ │ │ │ └── lorem.txt │ │ │ │ ├── lorem.crc32.no-checksum.no-filter.simple.stdin.lzo_extract │ │ │ │ └── lorem.crc32.no-checksum.no-filter.simple.stdin │ │ │ │ ├── lorem.filter.lzo_extract │ │ │ │ └── lorem.txt │ │ │ │ └── lorem.lzo_extract │ │ │ │ └── lorem.txt │ │ ├── uzip │ │ │ ├── lzma │ │ │ │ ├── __input__ │ │ │ │ │ └── myfs.img.ulzma │ │ │ │ └── __output__ │ │ │ │ │ └── myfs.img.ulzma_extract │ │ │ │ │ ├── 0-59316.uzip │ │ │ │ │ ├── 0-59316.uzip_extract │ │ │ │ │ └── 0-59316 │ │ │ │ │ └── 59316-59392.padding │ │ │ ├── zlib │ │ │ │ ├── __input__ │ │ │ │ │ ├── myfs.img.uzip │ │ │ │ │ └── myfs.padded.img.uzip │ │ │ │ └── __output__ │ │ │ │ │ ├── myfs.img.uzip_extract │ │ │ │ │ ├── 0-59397.uzip │ │ │ │ │ ├── 0-59397.uzip_extract │ │ │ │ │ │ └── 0-59397 │ │ │ │ │ └── 59397-59904.padding │ │ │ │ │ └── myfs.padded.img.uzip_extract │ │ │ │ │ ├── 0-64.unknown │ │ │ │ │ ├── 59461-60032.unknown │ │ │ │ │ ├── 64-59461.uzip │ │ │ │ │ └── 64-59461.uzip_extract │ │ │ │ │ └── 64-59461 │ │ │ └── zstd │ │ │ │ ├── __input__ │ │ │ │ └── myfs.img.uzst │ │ │ │ └── __output__ │ │ │ │ └── myfs.img.uzst_extract │ │ │ │ ├── 0-58269.uzip │ │ │ │ ├── 0-58269.uzip_extract │ │ │ │ └── 0-58269 │ │ │ │ └── 58269-58368.padding │ │ ├── xz │ │ │ ├── __input__ │ │ │ │ ├── lorem.txt.xz │ │ │ │ └── multiblock.padded.xz │ │ │ └── __output__ │ │ │ │ ├── lorem.txt.xz_extract │ │ │ │ └── xz.uncompressed │ │ │ │ └── multiblock.padded.xz_extract │ │ │ │ └── xz.uncompressed │ │ ├── zlib │ │ │ ├── __input__ │ │ │ │ ├── sample.suffix.zlib │ │ │ │ ├── sample.truncated.zlib │ │ │ │ └── sample.zlib │ │ │ └── __output__ │ │ │ │ ├── sample.suffix.zlib_extract │ │ │ │ ├── 0-34.zlib │ │ │ │ ├── 0-34.zlib_extract │ │ │ │ │ └── zlib.uncompressed │ │ │ │ └── 34-39.unknown │ │ │ │ ├── sample.truncated.zlib_extract │ │ │ │ └── zlib.uncompressed │ │ │ │ └── sample.zlib_extract │ │ │ │ └── zlib.uncompressed │ │ └── zstd │ │ │ ├── __input__ │ │ │ ├── large_fcs.zstd │ │ │ ├── lorem.both.zstd │ │ │ ├── lorem.prefixed.zstd │ │ │ ├── lorem.suffixed.zstd │ │ │ ├── lorem.truncated.zstd │ │ │ ├── lorem.zstd │ │ │ └── truncated.dos.zstd │ │ │ └── __output__ │ │ │ ├── large_fcs.zstd_extract │ │ │ └── zstd.uncompressed │ │ │ ├── lorem.both.zstd_extract │ │ │ ├── 0-4.unknown │ │ │ ├── 2628-2632.unknown │ │ │ ├── 4-2628.zstd │ │ │ └── 4-2628.zstd_extract │ │ │ │ └── zstd.uncompressed │ │ │ ├── lorem.prefixed.zstd_extract │ │ │ ├── 0-4.unknown │ │ │ ├── 4-2628.zstd │ │ │ └── 4-2628.zstd_extract │ │ │ │ └── zstd.uncompressed │ │ │ ├── lorem.suffixed.zstd_extract │ │ │ ├── 0-2624.zstd │ │ │ ├── 0-2624.zstd_extract │ │ │ │ └── zstd.uncompressed │ │ │ └── 2624-2628.unknown │ │ │ └── lorem.zstd_extract │ │ │ └── zstd.uncompressed │ ├── executable │ │ └── elf │ │ │ ├── elf32 │ │ │ ├── __input__ │ │ │ │ ├── sample_32_be.elf │ │ │ │ ├── sample_32_le.elf │ │ │ │ ├── sample_32_prg_end.elf │ │ │ │ └── sample_32_prg_end_padding.elf │ │ │ └── __output__ │ │ │ │ ├── sample_32_be.elf_extract │ │ │ │ ├── 0-13.unknown │ │ │ │ ├── 13-5877.elf32 │ │ │ │ └── 13-5877.elf32_extract │ │ │ │ │ └── carved.elf │ │ │ │ ├── sample_32_le.elf_extract │ │ │ │ ├── 0-13.unknown │ │ │ │ ├── 13-15601.elf32 │ │ │ │ └── 13-15601.elf32_extract │ │ │ │ │ └── carved.elf │ │ │ │ └── sample_32_prg_end_padding.elf_extract │ │ │ │ ├── 0-17.unknown │ │ │ │ ├── 17-36934.elf32 │ │ │ │ └── 17-36934.elf32_extract │ │ │ │ └── carved.elf │ │ │ └── elf64 │ │ │ ├── __input__ │ │ │ ├── hello.upx │ │ │ ├── hello_notes.upx │ │ │ ├── hellomod.sha1.brokensig.ko │ │ │ ├── hellomod.sha1.extra.ko │ │ │ ├── hellomod.sha1.ko │ │ │ ├── hellomod.sha1.nofooter.ko │ │ │ ├── hellomod.sha1.nonsigned.ko │ │ │ ├── hellomod.sha256.ko │ │ │ ├── hellomod.sha384.ko │ │ │ ├── hellomod.sha512.ko │ │ │ ├── kernel-initramfs-padding │ │ │ ├── linux-kernel-with-initramfs-without-loadable-modules │ │ │ ├── linux-kernel-with-loadable-modules-and-initramfs │ │ │ ├── sample_64_be.elf │ │ │ └── sample_64_le.elf │ │ │ └── __output__ │ │ │ ├── hello.upx_extract │ │ │ └── hello.elf │ │ │ ├── hello_notes.upx_extract │ │ │ └── hello_notes.elf │ │ │ ├── hellomod.sha1.brokensig.ko_extract │ │ │ ├── 0-215704.elf64 │ │ │ ├── 0-215704.elf64_extract │ │ │ │ └── carved.elf │ │ │ └── 215704-216458.unknown │ │ │ ├── hellomod.sha1.extra.ko_extract │ │ │ ├── 0-216459.elf64 │ │ │ ├── 0-216459.elf64_extract │ │ │ │ └── carved.elf │ │ │ └── 216459-216470.unknown │ │ │ ├── hellomod.sha1.nofooter.ko_extract │ │ │ ├── 0-215704.elf64 │ │ │ ├── 0-215704.elf64_extract │ │ │ │ └── carved.elf │ │ │ └── 215704-216457.unknown │ │ │ ├── kernel-initramfs-padding_extract │ │ │ ├── 0-17.unknown │ │ │ ├── 17-11651465.elf64 │ │ │ └── 17-11651465.elf64_extract │ │ │ │ ├── initramfs │ │ │ │ └── initramfs_extract │ │ │ │ ├── 0-366109.gzip │ │ │ │ ├── 0-366109.gzip_extract │ │ │ │ ├── initramfs.cpio │ │ │ │ └── initramfs.cpio_extract │ │ │ │ │ └── init │ │ │ │ └── 366109-366113.padding │ │ │ ├── linux-kernel-with-initramfs-without-loadable-modules_extract │ │ │ ├── 0-15039.unknown │ │ │ ├── 1184915-1206304.unknown │ │ │ ├── 15039-1184915.xz │ │ │ └── 15039-1184915.xz_extract │ │ │ │ ├── xz.uncompressed │ │ │ │ └── xz.uncompressed_extract │ │ │ │ ├── initramfs │ │ │ │ └── initramfs_extract │ │ │ │ ├── 0-366109.gzip │ │ │ │ ├── 0-366109.gzip_extract │ │ │ │ ├── initramfs.cpio │ │ │ │ └── initramfs.cpio_extract │ │ │ │ │ └── init │ │ │ │ └── 366109-366113.padding │ │ │ ├── linux-kernel-with-loadable-modules-and-initramfs_extract │ │ │ ├── 0-15039.unknown │ │ │ ├── 1228599-1249984.unknown │ │ │ ├── 15039-1228599.xz │ │ │ └── 15039-1228599.xz_extract │ │ │ │ ├── xz.uncompressed │ │ │ │ └── xz.uncompressed_extract │ │ │ │ ├── initramfs │ │ │ │ └── initramfs_extract │ │ │ │ ├── initramfs.cpio │ │ │ │ └── initramfs.cpio_extract │ │ │ │ └── init │ │ │ ├── sample_64_be.elf_extract │ │ │ ├── 0-13.unknown │ │ │ ├── 13-67741.elf64 │ │ │ └── 13-67741.elf64_extract │ │ │ │ └── carved.elf │ │ │ └── sample_64_le.elf_extract │ │ │ ├── 0-13.unknown │ │ │ ├── 13-16709.elf64 │ │ │ └── 13-16709.elf64_extract │ │ │ └── carved.elf │ └── filesystem │ │ ├── android │ │ ├── erofs │ │ │ ├── __input__ │ │ │ │ ├── foo.erofs.img │ │ │ │ └── foo_padding.erofs.img │ │ │ └── __output__ │ │ │ │ ├── foo.erofs.img_extract │ │ │ │ ├── bar.txt │ │ │ │ └── notes │ │ │ │ │ └── apple.pdf │ │ │ │ └── foo_padding.erofs.img_extract │ │ │ │ ├── 0-1024.padding │ │ │ │ ├── 1024-4096.erofs │ │ │ │ ├── 1024-4096.erofs_extract │ │ │ │ ├── bar.txt │ │ │ │ └── notes │ │ │ │ │ └── apple.pdf │ │ │ │ └── 4096-6144.padding │ │ └── sparse │ │ │ ├── __input__ │ │ │ └── fruits.sparse │ │ │ └── __output__ │ │ │ └── fruits.sparse_extract │ │ │ └── raw.image │ │ ├── cramfs │ │ ├── big_endian │ │ │ ├── __input__ │ │ │ │ ├── fruits.cramfs_be │ │ │ │ ├── fruits.crc_swap.cramfs_be │ │ │ │ └── fruits.old.cramfs_be │ │ │ └── __output__ │ │ │ │ ├── fruits.cramfs_be_extract │ │ │ │ ├── apple.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.crc_swap.cramfs_be_extract │ │ │ │ ├── apple.txt │ │ │ │ └── cherry.txt │ │ │ │ └── fruits.old.cramfs_be_extract │ │ │ │ ├── apple.txt │ │ │ │ └── cherry.txt │ │ └── little_endian │ │ │ ├── __input__ │ │ │ ├── fruits.cramfs_le │ │ │ ├── fruits.crc_swap.cramfs_le │ │ │ └── fruits.old.cramfs_le │ │ │ └── __output__ │ │ │ ├── fruits.cramfs_le_extract │ │ │ ├── apple.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.crc_swap.cramfs_le_extract │ │ │ ├── apple.txt │ │ │ └── cherry.txt │ │ │ └── fruits.old.cramfs_le_extract │ │ │ ├── apple.txt │ │ │ └── cherry.txt │ │ ├── extfs │ │ ├── __input__ │ │ │ ├── ext2.1024.img │ │ │ ├── ext2.1024.nullstate.img │ │ │ ├── ext2.2048.img │ │ │ ├── ext2.4096.img │ │ │ ├── ext3.1024.img │ │ │ ├── ext3.1024.nullstate.img │ │ │ ├── ext3.2048.img │ │ │ ├── ext3.4096.img │ │ │ ├── ext4.1024.img │ │ │ ├── ext4.1024.nullstate.img │ │ │ ├── ext4.2048.img │ │ │ ├── ext4.4096.img │ │ │ └── f_badsymlinks.img │ │ └── __output__ │ │ │ ├── ext2.1024.img_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── lost+found │ │ │ │ └── .gitkeep │ │ │ ├── ext2.1024.nullstate.img_extract │ │ │ ├── 0-524288.extfs │ │ │ ├── 0-524288.extfs_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ ├── cherry.txt │ │ │ │ └── lost+found │ │ │ │ │ └── .gitkeep │ │ │ └── 524288-524289.padding │ │ │ ├── ext2.2048.img_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── lost+found │ │ │ │ └── .gitkeep │ │ │ ├── ext2.4096.img_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── lost+found │ │ │ │ └── .gitkeep │ │ │ ├── ext3.1024.img_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── lost+found │ │ │ │ └── .gitkeep │ │ │ ├── ext3.1024.nullstate.img_extract │ │ │ ├── 0-524288.extfs │ │ │ ├── 0-524288.extfs_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ ├── cherry.txt │ │ │ │ └── lost+found │ │ │ │ │ └── .gitkeep │ │ │ └── 524288-524289.padding │ │ │ ├── ext3.2048.img_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── lost+found │ │ │ │ └── .gitkeep │ │ │ ├── ext3.4096.img_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── lost+found │ │ │ │ └── .gitkeep │ │ │ ├── ext4.1024.img_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── lost+found │ │ │ │ └── .gitkeep │ │ │ ├── ext4.1024.nullstate.img_extract │ │ │ ├── 0-524288.extfs │ │ │ ├── 0-524288.extfs_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ ├── cherry.txt │ │ │ │ └── lost+found │ │ │ │ │ └── .gitkeep │ │ │ └── 524288-524289.padding │ │ │ ├── ext4.2048.img_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── lost+found │ │ │ │ └── .gitkeep │ │ │ ├── ext4.4096.img_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── lost+found │ │ │ │ └── .gitkeep │ │ │ └── f_badsymlinks.img_extract │ │ │ ├── attr_fastlink │ │ │ ├── attr_link │ │ │ ├── bad_link_size │ │ │ ├── high_link │ │ │ ├── long_fastlink │ │ │ ├── long_link │ │ │ └── lost+found │ │ │ └── .gitkeep │ │ ├── fat │ │ ├── fat12 │ │ │ ├── __input__ │ │ │ │ ├── cherry.fat12 │ │ │ │ └── cherry.truncated.fat12 │ │ │ └── __output__ │ │ │ │ ├── cherry.fat12_extract │ │ │ │ ├── cherry1.txt │ │ │ │ ├── cherry2.txt │ │ │ │ ├── cherry3.txt │ │ │ │ └── cherry4.txt │ │ │ │ └── cherry.truncated.fat12_extract │ │ │ │ ├── 0-28160.fat │ │ │ │ ├── 0-28160.fat_extract │ │ │ │ ├── cherry1.txt │ │ │ │ ├── cherry2.txt │ │ │ │ ├── cherry3.txt │ │ │ │ └── cherry4.txt │ │ │ │ └── 28160-32768.padding │ │ ├── fat16 │ │ │ ├── __input__ │ │ │ │ ├── banana.fat16 │ │ │ │ └── banana.truncated.fat16 │ │ │ └── __output__ │ │ │ │ ├── banana.fat16_extract │ │ │ │ ├── banana1.txt │ │ │ │ ├── banana2.txt │ │ │ │ ├── banana3.txt │ │ │ │ └── banana4.txt │ │ │ │ └── banana.truncated.fat16_extract │ │ │ │ ├── 0-28160.fat │ │ │ │ ├── 0-28160.fat_extract │ │ │ │ ├── banana1.txt │ │ │ │ ├── banana2.txt │ │ │ │ ├── banana3.txt │ │ │ │ └── banana4.txt │ │ │ │ └── 28160-32768.padding │ │ └── fat32 │ │ │ ├── __input__ │ │ │ ├── banana.fat32 │ │ │ └── banana.truncated.fat32 │ │ │ └── __output__ │ │ │ ├── banana.fat32_extract │ │ │ ├── banana1.txt │ │ │ ├── banana2.txt │ │ │ ├── banana3.txt │ │ │ └── banana4.txt │ │ │ └── banana.truncated.fat32_extract │ │ │ ├── 0-551424.fat │ │ │ ├── 0-551424.fat_extract │ │ │ ├── banana1.txt │ │ │ ├── banana2.txt │ │ │ ├── banana3.txt │ │ │ └── banana4.txt │ │ │ └── 551424-2097152.padding │ │ ├── iso9660 │ │ ├── __input__ │ │ │ └── fruits.iso │ │ └── __output__ │ │ │ └── fruits.iso_extract │ │ │ ├── APPLE.TXT │ │ │ └── CHERRY.TXT │ │ ├── jffs2 │ │ ├── jffs2_new │ │ │ ├── __input__ │ │ │ │ ├── fruits.new.be.lzo.jffs2 │ │ │ │ ├── fruits.new.be.lzo.padded.jffs2 │ │ │ │ ├── fruits.new.be.nocomp.jffs2 │ │ │ │ ├── fruits.new.be.nocomp.padded.jffs2 │ │ │ │ ├── fruits.new.be.rtime.jffs2 │ │ │ │ ├── fruits.new.be.rtime.padded.jffs2 │ │ │ │ ├── fruits.new.be.zlib.jffs2 │ │ │ │ ├── fruits.new.be.zlib.padded.jffs2 │ │ │ │ ├── fruits.new.le.lzo.jffs2 │ │ │ │ ├── fruits.new.le.lzo.padded.jffs2 │ │ │ │ ├── fruits.new.le.nocomp.jffs2 │ │ │ │ ├── fruits.new.le.nocomp.padded.jffs2 │ │ │ │ ├── fruits.new.le.rtime.jffs2 │ │ │ │ ├── fruits.new.le.rtime.padded.jffs2 │ │ │ │ ├── fruits.new.le.zlib.jffs2 │ │ │ │ └── fruits.new.le.zlib.padded.jffs2 │ │ │ └── __output__ │ │ │ │ ├── fruits.new.be.lzo.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.be.lzo.padded.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.be.nocomp.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.be.nocomp.padded.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.be.rtime.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.be.rtime.padded.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.be.zlib.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.be.zlib.padded.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.le.lzo.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.le.lzo.padded.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.le.nocomp.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.le.nocomp.padded.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.le.rtime.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.le.rtime.padded.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ ├── fruits.new.le.zlib.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ │ │ └── fruits.new.le.zlib.padded.jffs2_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ └── jffs2_old │ │ │ ├── __input__ │ │ │ ├── fruits.old.be.lzo.jffs2 │ │ │ ├── fruits.old.be.lzo.padded.jffs2 │ │ │ ├── fruits.old.be.nocomp.jffs2 │ │ │ ├── fruits.old.be.nocomp.padded.jffs2 │ │ │ ├── fruits.old.be.rtime.jffs2 │ │ │ ├── fruits.old.be.rtime.padded.jffs2 │ │ │ ├── fruits.old.be.zlib.jffs2 │ │ │ ├── fruits.old.be.zlib.padded.jffs2 │ │ │ ├── fruits.old.le.lzo.jffs2 │ │ │ ├── fruits.old.le.lzo.padded.jffs2 │ │ │ ├── fruits.old.le.nocomp.jffs2 │ │ │ ├── fruits.old.le.nocomp.padded.jffs2 │ │ │ ├── fruits.old.le.rtime.jffs2 │ │ │ ├── fruits.old.le.rtime.padded.jffs2 │ │ │ ├── fruits.old.le.zlib.jffs2 │ │ │ └── fruits.old.le.zlib.padded.jffs2 │ │ │ └── __output__ │ │ │ ├── fruits.old.be.lzo.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.be.lzo.padded.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.be.nocomp.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.be.nocomp.padded.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.be.rtime.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.be.rtime.padded.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.be.zlib.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.be.zlib.padded.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.le.lzo.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.le.lzo.padded.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.le.nocomp.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.le.nocomp.padded.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.le.rtime.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.le.rtime.padded.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ ├── fruits.old.le.zlib.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ │ └── fruits.old.le.zlib.padded.jffs2_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ ├── ntfs │ │ ├── __input__ │ │ │ └── fruits.ntfs │ │ └── __output__ │ │ │ └── fruits.ntfs_extract │ │ │ ├── 0-512.unknown │ │ │ ├── 512-1228800.ntfs │ │ │ └── 512-1228800.ntfs_extract │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ ├── romfs │ │ ├── __input__ │ │ │ └── fruits.romfs │ │ └── __output__ │ │ │ └── fruits.romfs_extract │ │ │ ├── dir_1 │ │ │ ├── file_1.txt │ │ │ ├── file_2.txt │ │ │ ├── file_3.txt │ │ │ ├── file_4.txt │ │ │ ├── file_5.txt │ │ │ ├── hosts │ │ │ └── passwd │ │ │ ├── dir_2 │ │ │ ├── file_1.txt │ │ │ ├── file_2.txt │ │ │ ├── file_3.txt │ │ │ ├── file_4.txt │ │ │ ├── file_5.txt │ │ │ ├── hosts │ │ │ └── passwd │ │ │ ├── dir_3 │ │ │ ├── file_1.txt │ │ │ ├── file_2.txt │ │ │ ├── file_3.txt │ │ │ ├── file_4.txt │ │ │ ├── file_5.txt │ │ │ ├── hosts │ │ │ └── passwd │ │ │ ├── dir_4 │ │ │ ├── file_1.txt │ │ │ ├── file_2.txt │ │ │ ├── file_3.txt │ │ │ ├── file_4.txt │ │ │ ├── file_5.txt │ │ │ ├── hosts │ │ │ └── passwd │ │ │ ├── dir_5 │ │ │ ├── file_1.txt │ │ │ ├── file_2.txt │ │ │ ├── file_3.txt │ │ │ ├── file_4.txt │ │ │ ├── file_5.txt │ │ │ ├── hosts │ │ │ └── passwd │ │ │ ├── hlink_1_1 │ │ │ ├── hlink_1_2 │ │ │ ├── hlink_1_3 │ │ │ ├── hlink_1_4 │ │ │ ├── hlink_1_5 │ │ │ ├── hlink_2_1 │ │ │ ├── hlink_2_2 │ │ │ ├── hlink_2_3 │ │ │ ├── hlink_2_4 │ │ │ ├── hlink_2_5 │ │ │ ├── hlink_3_1 │ │ │ ├── hlink_3_2 │ │ │ ├── hlink_3_3 │ │ │ ├── hlink_3_4 │ │ │ ├── hlink_3_5 │ │ │ ├── hlink_4_1 │ │ │ ├── hlink_4_2 │ │ │ ├── hlink_4_3 │ │ │ ├── hlink_4_4 │ │ │ ├── hlink_4_5 │ │ │ ├── hlink_5_1 │ │ │ ├── hlink_5_2 │ │ │ ├── hlink_5_3 │ │ │ ├── hlink_5_4 │ │ │ ├── hlink_5_5 │ │ │ ├── slink_1_1 │ │ │ ├── slink_1_2 │ │ │ ├── slink_1_3 │ │ │ ├── slink_1_4 │ │ │ ├── slink_1_5 │ │ │ ├── slink_2_1 │ │ │ ├── slink_2_2 │ │ │ ├── slink_2_3 │ │ │ ├── slink_2_4 │ │ │ ├── slink_2_5 │ │ │ ├── slink_3_1 │ │ │ ├── slink_3_2 │ │ │ ├── slink_3_3 │ │ │ ├── slink_3_4 │ │ │ ├── slink_3_5 │ │ │ ├── slink_4_1 │ │ │ ├── slink_4_2 │ │ │ ├── slink_4_3 │ │ │ ├── slink_4_4 │ │ │ ├── slink_4_5 │ │ │ ├── slink_5_1 │ │ │ ├── slink_5_2 │ │ │ ├── slink_5_3 │ │ │ ├── slink_5_4 │ │ │ └── slink_5_5 │ │ ├── squashfs │ │ ├── squashfs_v1 │ │ │ ├── big_endian │ │ │ │ ├── __input__ │ │ │ │ │ └── squashfs_v1.0_be.bin │ │ │ │ └── __output__ │ │ │ │ │ └── squashfs_v1.0_be.bin_extract │ │ │ │ │ ├── apple.txt │ │ │ │ │ ├── banana.txt │ │ │ │ │ └── cherry.txt │ │ │ └── little_endian │ │ │ │ ├── __input__ │ │ │ │ └── squashfs_v1.0_le.bin │ │ │ │ └── __output__ │ │ │ │ └── squashfs_v1.0_le.bin_extract │ │ │ │ ├── apple.txt │ │ │ │ ├── banana.txt │ │ │ │ └── cherry.txt │ │ ├── squashfs_v2 │ │ │ ├── big_endian │ │ │ │ ├── __input__ │ │ │ │ │ ├── squashfs_v2.0_be.bin │ │ │ │ │ └── squashfs_v2.1_be.bin │ │ │ │ └── __output__ │ │ │ │ │ ├── squashfs_v2.0_be.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ └── squashfs_v2.1_be.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ └── little_endian │ │ │ │ ├── __input__ │ │ │ │ ├── squashfs_v2.0_le.bin │ │ │ │ └── squashfs_v2.1_le.bin │ │ │ │ └── __output__ │ │ │ │ ├── squashfs_v2.0_le.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ └── squashfs_v2.1_le.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ ├── squashfs_v3 │ │ │ ├── big_endian │ │ │ │ ├── __input__ │ │ │ │ │ ├── squashfs_v3.be.1kpad.bin │ │ │ │ │ ├── squashfs_v3.be.4kpad.bin │ │ │ │ │ ├── squashfs_v3.be.nopad.bin │ │ │ │ │ └── squashfs_v3_be.bin │ │ │ │ └── __output__ │ │ │ │ │ ├── squashfs_v3.be.1kpad.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── squashfs_v3.be.4kpad.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── squashfs_v3.be.nopad.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ └── squashfs_v3_be.bin_extract │ │ │ │ │ ├── apple.txt │ │ │ │ │ └── cherry.txt │ │ │ └── little_endian │ │ │ │ ├── __input__ │ │ │ │ ├── squashfs_v3.le.1kpad.bin │ │ │ │ ├── squashfs_v3.le.4kpad.bin │ │ │ │ ├── squashfs_v3.le.nopad.bin │ │ │ │ └── squashfs_v3_le.bin │ │ │ │ └── __output__ │ │ │ │ ├── squashfs_v3.le.1kpad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ ├── squashfs_v3.le.4kpad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ ├── squashfs_v3.le.nopad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ └── squashfs_v3_le.bin_extract │ │ │ │ ├── apple.txt │ │ │ │ └── cherry.txt │ │ ├── squashfs_v3_adaptive │ │ │ ├── __input__ │ │ │ │ ├── squashfs_v3_be.lzma.bin │ │ │ │ └── squashfs_v3_le.lzma.bin │ │ │ └── __output__ │ │ │ │ ├── squashfs_v3_be.lzma.bin_extract │ │ │ │ ├── apple.txt │ │ │ │ └── orange.txt │ │ │ │ └── squashfs_v3_le.lzma.bin_extract │ │ │ │ ├── apple.txt │ │ │ │ └── orange.txt │ │ ├── squashfs_v3_broadcom │ │ │ ├── big_endian │ │ │ │ ├── __input__ │ │ │ │ │ ├── squashfs_v3.be.1kpad.bin │ │ │ │ │ ├── squashfs_v3.be.4kpad.bin │ │ │ │ │ ├── squashfs_v3.be.nopad.bin │ │ │ │ │ └── squashfs_v3_be.bin │ │ │ │ └── __output__ │ │ │ │ │ ├── squashfs_v3.be.1kpad.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── squashfs_v3.be.4kpad.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── squashfs_v3.be.nopad.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ └── squashfs_v3_be.bin_extract │ │ │ │ │ ├── apple.txt │ │ │ │ │ └── cherry.txt │ │ │ └── little_endian │ │ │ │ ├── __input__ │ │ │ │ ├── squashfs_v3.le.1kpad.bin │ │ │ │ ├── squashfs_v3.le.4kpad.bin │ │ │ │ ├── squashfs_v3.le.nopad.bin │ │ │ │ └── squashfs_v3_le.bin │ │ │ │ └── __output__ │ │ │ │ ├── squashfs_v3.le.1kpad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ ├── squashfs_v3.le.4kpad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ ├── squashfs_v3.le.nopad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ └── squashfs_v3_le.bin_extract │ │ │ │ ├── apple.txt │ │ │ │ └── cherry.txt │ │ ├── squashfs_v3_ddwrt │ │ │ ├── big_endian │ │ │ │ ├── __input__ │ │ │ │ │ ├── squashfs_v3.be.1kpad.bin │ │ │ │ │ ├── squashfs_v3.be.4kpad.bin │ │ │ │ │ └── squashfs_v3.be.nopad.bin │ │ │ │ └── __output__ │ │ │ │ │ ├── squashfs_v3.be.1kpad.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── squashfs_v3.be.4kpad.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ └── squashfs_v3.be.nopad.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ └── little_endian │ │ │ │ ├── __input__ │ │ │ │ ├── squashfs_v3.le.1kpad.bin │ │ │ │ ├── squashfs_v3.le.4kpad.bin │ │ │ │ ├── squashfs_v3.le.nopad.bin │ │ │ │ └── squashfs_v3_le.bin │ │ │ │ └── __output__ │ │ │ │ ├── squashfs_v3.le.1kpad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ ├── squashfs_v3.le.4kpad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ ├── squashfs_v3.le.nopad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ └── squashfs_v3_le.bin_extract │ │ │ │ ├── apple.txt │ │ │ │ └── cherry.txt │ │ ├── squashfs_v3_nonstandard │ │ │ ├── big_endian │ │ │ │ ├── __input__ │ │ │ │ │ ├── squashfs_v3.be.1kpad.bin │ │ │ │ │ ├── squashfs_v3.be.4kpad.bin │ │ │ │ │ ├── squashfs_v3.be.nopad.bin │ │ │ │ │ └── squashfs_v3_be.bin │ │ │ │ └── __output__ │ │ │ │ │ ├── squashfs_v3.be.1kpad.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── squashfs_v3.be.4kpad.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ ├── squashfs_v3.be.nopad.bin_extract │ │ │ │ │ ├── apple1.txt │ │ │ │ │ ├── apple2.txt │ │ │ │ │ ├── apple3.txt │ │ │ │ │ └── apple4.txt │ │ │ │ │ └── squashfs_v3_be.bin_extract │ │ │ │ │ ├── apple.txt │ │ │ │ │ └── cherry.txt │ │ │ └── little_endian │ │ │ │ ├── __input__ │ │ │ │ ├── squashfs_v3.le.1kpad.bin │ │ │ │ ├── squashfs_v3.le.4kpad.bin │ │ │ │ ├── squashfs_v3.le.nopad.bin │ │ │ │ └── squashfs_v3_le.bin │ │ │ │ └── __output__ │ │ │ │ ├── squashfs_v3.le.1kpad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ ├── squashfs_v3.le.4kpad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ ├── squashfs_v3.le.nopad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ └── squashfs_v3_le.bin_extract │ │ │ │ ├── apple.txt │ │ │ │ └── cherry.txt │ │ ├── squashfs_v4_be │ │ │ ├── __input__ │ │ │ │ ├── squashfs_v4.1kpad.bin │ │ │ │ ├── squashfs_v4.4kpad.bin │ │ │ │ ├── squashfs_v4.bin │ │ │ │ └── squashfs_v4.nopad.bin │ │ │ └── __output__ │ │ │ │ ├── squashfs_v4.1kpad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ ├── squashfs_v4.4kpad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ ├── squashfs_v4.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ │ │ └── squashfs_v4.nopad.bin_extract │ │ │ │ ├── apple1.txt │ │ │ │ ├── apple2.txt │ │ │ │ ├── apple3.txt │ │ │ │ └── apple4.txt │ │ └── squashfs_v4_le │ │ │ ├── __input__ │ │ │ ├── bad_symlink.squashfs │ │ │ ├── squashfs_v4.1kpad.bin │ │ │ ├── squashfs_v4.4kpad.bin │ │ │ ├── squashfs_v4.bin │ │ │ ├── squashfs_v4.blockdev.bin │ │ │ ├── squashfs_v4.nopad.bin │ │ │ └── squashfs_v4.specfile.bin │ │ │ └── __output__ │ │ │ ├── bad_symlink.squashfs_extract │ │ │ └── badlink │ │ │ ├── squashfs_v4.1kpad.bin_extract │ │ │ ├── apple1.txt │ │ │ ├── apple2.txt │ │ │ ├── apple3.txt │ │ │ └── apple4.txt │ │ │ ├── squashfs_v4.4kpad.bin_extract │ │ │ ├── apple1.txt │ │ │ ├── apple2.txt │ │ │ ├── apple3.txt │ │ │ └── apple4.txt │ │ │ ├── squashfs_v4.bin_extract │ │ │ ├── apple.txt │ │ │ └── cherry.txt │ │ │ ├── squashfs_v4.blockdev.bin_extract │ │ │ ├── apple1.txt │ │ │ ├── apple2.txt │ │ │ ├── apple3.txt │ │ │ └── apple4.txt │ │ │ ├── squashfs_v4.nopad.bin_extract │ │ │ ├── apple1.txt │ │ │ ├── apple2.txt │ │ │ ├── apple3.txt │ │ │ └── apple4.txt │ │ │ └── squashfs_v4.specfile.bin_extract │ │ │ ├── file.symlink │ │ │ └── hello.txt │ │ ├── ubi │ │ ├── ubi │ │ │ ├── __input__ │ │ │ │ ├── fruits.ubi │ │ │ │ └── orange.ubi.truncated.img │ │ │ └── __output__ │ │ │ │ ├── fruits.ubi_extract │ │ │ │ ├── img-1180426539_vol-apple.ubifs │ │ │ │ └── img-1180426539_vol-data.ubifs │ │ │ │ └── orange.ubi.truncated.img_extract │ │ │ │ ├── 0-3407872.ubi │ │ │ │ ├── 0-3407872.ubi_extract │ │ │ │ ├── img-941083063_vol-configuration.ubifs │ │ │ │ ├── img-941083063_vol-configuration.ubifs_extract │ │ │ │ │ ├── orange1.txt │ │ │ │ │ └── orange2.txt │ │ │ │ └── img-941083063_vol-rootfs.ubifs │ │ │ │ └── 3407872-3430400.unknown │ │ └── ubifs │ │ │ ├── __input__ │ │ │ └── banana.ubifs │ │ │ └── __output__ │ │ │ └── banana.ubifs_extract │ │ │ ├── banana1.txt │ │ │ ├── banana2.txt │ │ │ ├── banana3.txt │ │ │ └── banana4.txt │ │ └── yaffs │ │ ├── __input__ │ │ ├── fruits.dir.be.yffs │ │ ├── fruits.dir.le.yffs │ │ ├── links.yaffs │ │ ├── malformed.2048.16.ecc.be.yaffs2 │ │ ├── malformed.2048.16.ecc.le.yaffs2 │ │ ├── malformed.dir.be.yffs │ │ ├── malformed.dir.le.yffs │ │ ├── sample.16384.128.ecc.be.yaffs2 │ │ ├── sample.16384.128.ecc.le.yaffs2 │ │ ├── sample.16384.128.le.yaffs2 │ │ ├── sample.16384.16.ecc.be.yaffs2 │ │ ├── sample.16384.16.ecc.le.yaffs2 │ │ ├── sample.16384.16.le.yaffs2 │ │ ├── sample.16384.256.ecc.be.yaffs2 │ │ ├── sample.16384.256.ecc.le.yaffs2 │ │ ├── sample.16384.256.le.yaffs2 │ │ ├── sample.16384.32.ecc.be.yaffs2 │ │ ├── sample.16384.32.ecc.le.yaffs2 │ │ ├── sample.16384.32.le.yaffs2 │ │ ├── sample.16384.512.ecc.be.yaffs2 │ │ ├── sample.16384.512.ecc.le.yaffs2 │ │ ├── sample.16384.512.le.yaffs2 │ │ ├── sample.16384.64.ecc.be.yaffs2 │ │ ├── sample.16384.64.ecc.le.yaffs2 │ │ ├── sample.16384.64.le.yaffs2 │ │ ├── sample.2048.128.ecc.be.yaffs2 │ │ ├── sample.2048.128.ecc.le.yaffs2 │ │ ├── sample.2048.128.le.yaffs2 │ │ ├── sample.2048.16.ecc.be.yaffs2 │ │ ├── sample.2048.16.ecc.le.yaffs2 │ │ ├── sample.2048.16.le.yaffs2 │ │ ├── sample.2048.256.ecc.be.yaffs2 │ │ ├── sample.2048.256.ecc.le.yaffs2 │ │ ├── sample.2048.256.le.yaffs2 │ │ ├── sample.2048.32.ecc.be.yaffs2 │ │ ├── sample.2048.32.ecc.le.yaffs2 │ │ ├── sample.2048.32.le.yaffs2 │ │ ├── sample.2048.512.ecc.be.yaffs2 │ │ ├── sample.2048.512.ecc.le.yaffs2 │ │ ├── sample.2048.512.le.yaffs2 │ │ ├── sample.2048.64.ecc.be.yaffs2 │ │ ├── sample.2048.64.ecc.le.yaffs2 │ │ ├── sample.2048.64.le.yaffs2 │ │ ├── sample.4096.128.ecc.be.yaffs2 │ │ ├── sample.4096.128.ecc.le.yaffs2 │ │ ├── sample.4096.128.le.yaffs2 │ │ ├── sample.4096.16.ecc.be.yaffs2 │ │ ├── sample.4096.16.ecc.le.yaffs2 │ │ ├── sample.4096.16.le.yaffs2 │ │ ├── sample.4096.256.ecc.be.yaffs2 │ │ ├── sample.4096.256.ecc.le.yaffs2 │ │ ├── sample.4096.256.le.yaffs2 │ │ ├── sample.4096.32.ecc.be.yaffs2 │ │ ├── sample.4096.32.ecc.le.yaffs2 │ │ ├── sample.4096.32.le.yaffs2 │ │ ├── sample.4096.512.ecc.be.yaffs2 │ │ ├── sample.4096.512.ecc.le.yaffs2 │ │ ├── sample.4096.512.le.yaffs2 │ │ ├── sample.4096.64.ecc.be.yaffs2 │ │ ├── sample.4096.64.ecc.le.yaffs2 │ │ ├── sample.4096.64.le.yaffs2 │ │ ├── sample.8192.128.ecc.be.yaffs2 │ │ ├── sample.8192.128.ecc.le.yaffs2 │ │ ├── sample.8192.128.le.yaffs2 │ │ ├── sample.8192.16.ecc.be.yaffs2 │ │ ├── sample.8192.16.ecc.le.yaffs2 │ │ ├── sample.8192.16.le.yaffs2 │ │ ├── sample.8192.256.ecc.be.yaffs2 │ │ ├── sample.8192.256.ecc.le.yaffs2 │ │ ├── sample.8192.256.le.yaffs2 │ │ ├── sample.8192.32.ecc.be.yaffs2 │ │ ├── sample.8192.32.ecc.le.yaffs2 │ │ ├── sample.8192.32.le.yaffs2 │ │ ├── sample.8192.512.ecc.be.yaffs2 │ │ ├── sample.8192.512.ecc.le.yaffs2 │ │ ├── sample.8192.512.le.yaffs2 │ │ ├── sample.8192.64.ecc.be.yaffs2 │ │ ├── sample.8192.64.ecc.le.yaffs2 │ │ └── sample.8192.64.le.yaffs2 │ │ └── __output__ │ │ ├── fruits.dir.be.yffs_extract │ │ └── dir │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ ├── fruits.dir.le.yffs_extract │ │ └── dir │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── cherry.txt │ │ ├── links.yaffs_extract │ │ ├── dir │ │ │ ├── hardlink │ │ │ └── symlink │ │ ├── file │ │ ├── hardlink │ │ ├── symlink │ │ └── symlink2 │ │ ├── malformed.2048.16.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── malformed.2048.16.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── malformed.dir.be.yffs_extract │ │ └── dir │ │ │ └── apple.txt │ │ ├── malformed.dir.le.yffs_extract │ │ └── dir │ │ │ └── apple.txt │ │ ├── sample.16384.128.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.128.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.128.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.16.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.16.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.16.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.256.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.256.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.256.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.32.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.32.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.32.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.512.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.512.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.512.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.64.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.64.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.16384.64.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.128.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.128.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.128.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.16.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.16.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.16.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.256.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.256.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.256.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.32.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.32.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.32.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.512.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.512.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.512.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.64.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.64.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.2048.64.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.128.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.128.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.128.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.16.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.16.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.16.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.256.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.256.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.256.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.32.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.32.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.32.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.512.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.512.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.512.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.64.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.64.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.4096.64.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.128.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.128.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.128.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.16.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.16.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.16.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.256.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.256.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.256.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.32.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.32.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.32.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.512.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.512.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.512.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.64.ecc.be.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ ├── sample.8192.64.ecc.le.yaffs2_extract │ │ ├── fruits │ │ │ ├── apple.txt │ │ │ ├── banana.txt │ │ │ ├── cherry.txt │ │ │ └── tomato.txt │ │ ├── nuts │ │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ │ ├── kale.txt │ │ │ ├── potato.txt │ │ │ └── tomato.txt │ │ └── sample.8192.64.le.yaffs2_extract │ │ ├── fruits │ │ ├── apple.txt │ │ ├── banana.txt │ │ ├── cherry.txt │ │ └── tomato.txt │ │ ├── nuts │ │ └── .gitkeep │ │ ├── passwd │ │ └── vegetables │ │ ├── kale.txt │ │ ├── potato.txt │ │ └── tomato.txt ├── plugins │ ├── __assets__ │ │ ├── directory_of_plugin_files │ │ │ ├── first.py │ │ │ └── second.py │ │ ├── directory_of_plugin_packages │ │ │ ├── first │ │ │ │ ├── __init.py │ │ │ │ ├── __init__.py │ │ │ │ └── module.py │ │ │ └── second │ │ │ │ └── __init__.py │ │ └── single_file_plugin.py │ └── test_plugins.py ├── rust │ ├── __init__.py │ ├── test_math.py │ └── test_sandbox.py ├── test_cleanup.py ├── test_cli.py ├── test_extractor.py ├── test_file_utils.py ├── test_finder.py ├── test_handlers.py ├── test_iter_utils.py ├── test_logging.py ├── test_models.py ├── test_parser.py ├── test_pool.py ├── test_processing.py ├── test_processing_suffixes.py ├── test_report.py ├── test_sandbox.py └── test_unhex.py ├── uv.lock └── vulture_whitelist.py /.dockerignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | *.pyo 4 | *.pyd 5 | .git/ 6 | .pytest_cache/ 7 | tests/ 8 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | tests/integration/** filter=lfs diff=lfs merge=lfs -text 2 | tests/files/** filter=lfs diff=lfs merge=lfs -text 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /*_extract/ 2 | dist/ 3 | build/ 4 | *__pycache__* 5 | /target/ 6 | *.egg-info/ 7 | *.so 8 | .idea 9 | .cache 10 | .coverage* 11 | /.venv 12 | unblob.log 13 | /.direnv 14 | -------------------------------------------------------------------------------- /.taplo.toml: -------------------------------------------------------------------------------- 1 | [formatting] 2 | array_auto_collapse = false 3 | reorder_arrays = true 4 | reorder_keys = true 5 | -------------------------------------------------------------------------------- /docs/ArtegraSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/docs/ArtegraSans-Regular.ttf -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | unblob.org 2 | -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/docs/favicon.png -------------------------------------------------------------------------------- /docs/unblob_architecture.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/docs/unblob_architecture.webp -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- 1 | mod doc ".just/doc.just" 2 | -------------------------------------------------------------------------------- /python/unblob/__init__.py: -------------------------------------------------------------------------------- 1 | from unblob._rust import math_tools as math_tools 2 | -------------------------------------------------------------------------------- /python/unblob/_rust/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/python/unblob/_rust/__init__.pyi -------------------------------------------------------------------------------- /python/unblob/_rust/math_tools.pyi: -------------------------------------------------------------------------------- 1 | def shannon_entropy(data: bytes) -> float: ... 2 | def chi_square_probability(data: bytes) -> float: ... 3 | -------------------------------------------------------------------------------- /python/unblob/extractors/__init__.py: -------------------------------------------------------------------------------- 1 | from .command import Command as Command 2 | -------------------------------------------------------------------------------- /python/unblob/handlers/archive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/python/unblob/handlers/archive/__init__.py -------------------------------------------------------------------------------- /python/unblob/handlers/compression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/python/unblob/handlers/compression/__init__.py -------------------------------------------------------------------------------- /python/unblob/handlers/executable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/python/unblob/handlers/executable/__init__.py -------------------------------------------------------------------------------- /python/unblob/handlers/filesystem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/python/unblob/handlers/filesystem/__init__.py -------------------------------------------------------------------------------- /python/unblob/handlers/filesystem/android/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/python/unblob/handlers/filesystem/android/__init__.py -------------------------------------------------------------------------------- /python/unblob/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/python/unblob/py.typed -------------------------------------------------------------------------------- /rust/src/sandbox/unsupported.rs: -------------------------------------------------------------------------------- 1 | use crate::sandbox::{AccessFS, SandboxError}; 2 | 3 | pub fn restrict_access(_access_rules: &[AccessFS]) -> Result<(), SandboxError> { 4 | Err(SandboxError::NotImplemented)? 5 | } 6 | -------------------------------------------------------------------------------- /tests/files/suffixes/__input__/chunks: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e33039682514a23548f4c6f9b7ed2af6dfbfca8d921fdf7845b0ef7255725b4 3 | size 512 4 | -------------------------------------------------------------------------------- /tests/files/suffixes/__input__/collisions.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33fc006557dbaa40deb732ecfd1ac7921b8397636303ac2d153fa2ab477b21b3 3 | size 1119 4 | -------------------------------------------------------------------------------- /tests/files/suffixes/__outputs__/chunks/_c_e/chunks_c/375-512.padding: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a93894f08d98d707cd9a0274f4c9a51bcfa27e701359e12befcc78ffb488817 3 | size 137 4 | -------------------------------------------------------------------------------- /tests/files/suffixes/__outputs__/chunks/_carve_extract/chunks_carve/375-512.padding: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a93894f08d98d707cd9a0274f4c9a51bcfa27e701359e12befcc78ffb488817 3 | size 137 4 | -------------------------------------------------------------------------------- /tests/files/suffixes/__outputs__/chunks/defaults/chunks_extract/375-512.padding: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a93894f08d98d707cd9a0274f4c9a51bcfa27e701359e12befcc78ffb488817 3 | size 137 4 | -------------------------------------------------------------------------------- /tests/files/suffixes/__outputs__/collisions.zip/_c_e/collisions.zip_e/chunks: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e33039682514a23548f4c6f9b7ed2af6dfbfca8d921fdf7845b0ef7255725b4 3 | size 512 4 | -------------------------------------------------------------------------------- /tests/files/suffixes/chunks: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e33039682514a23548f4c6f9b7ed2af6dfbfca8d921fdf7845b0ef7255725b4 3 | size 512 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/a1x01.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7981c6fabc0cb521c443d3b2e8e54713cae8bbccf8208b1950a078367567c3bb 3 | size 194 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/bsd_mixed.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1822aa7c0a030fa6ae9ea664b4ba2d804bb0bf5014cc7366d199374a1d64cc7c 3 | size 358 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/bsd_multi_names.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b57b0fc4cff4d4c8c37dbbc1f2f51ed49859f90a931da3465bb27b7ea75a412 3 | size 552 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/bsd_single_name.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d74d5cbf166638434c696563f88b13db1438d34f8e58675ae6bcf337edbcf9c 3 | size 298 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/contents.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34c790979dc722273410bc18d2d83712f763e111aa252f4f248d7785a5b2014c 3 | size 160 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/dual.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:677a3ae257bf702936723eb6b385e4a00f2412388c009f7c36b88c4d507c8459 3 | size 560 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/durian.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:626382d49aa29cd0e9688b64169d98f2403d08484c8e79241dd5e36c60ec8b5b 3 | size 280 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/empty.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f0a17a43c74d2fe5474fa2fd29c8f14799e777d7d75a2cc4d11c20a6e7b161c5 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/gnu_mixed.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a43964b9c61030b12b2320f7782e25f2bab411e0529b85b7e92da969ca1d92a9 3 | size 274 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/gnu_multi_names.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3aee5062fe584e07862f99d75a4a28613cff6b261d49eab336d59273268fa6d8 3 | size 372 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/gnu_single_name.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c733485cdc5c60af424e0a926b7c01752bb20ce0683bcb24433f38450d3c4684 3 | size 214 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/malformed_valid.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bc52bb4657ff5e0cc210f4ff45e14efbdb5a80e43bb3cbf093673ad67747af07 3 | size 548 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/msvc_lib.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a28e538947fa35b36f4e6c626b8eb32b4544bea99fcdd6ed26975cb47a031804 3 | size 372 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/normal.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73c8382a4b47bb6dc0281179d49631cdc9c45df96676f01c61b81b32bfcbaccb 3 | size 68 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/offset_malformed.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f09b070a3ce2df85b39ff8ec8efa7753cbfbd214416d10e4afb3f62b9b1fd3b 3 | size 316 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/offset_valid.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:748416719761716d52026866b60ebecea99fd606595af4fde92bbee7332cfea0 3 | size 328 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/sym.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:604b7db9192bf1b3c6dc6e2d7d923a789fa418f9bd56c688af0dd14e6546541b 3 | size 132 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/valid_malformed.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f622bb21ce517ac6a27b67eb3e44e254fb9f8c4a766cd3c477b316508e04adc 3 | size 548 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__input__/windows.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebacc15fe4c59566f2967457491170853df8be4275bd34fcd140f967b0c59807 3 | size 68 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/a1x01.ar_extract/�rvíztűrő tükörfúrógép: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f78453bcd88cb902c86638bafa48432fcbc262ede1eeacc2b623e14b1ea0a92 3 | size 31 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/bsd_mixed.ar_extract/short: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/tests/integration/archive/ar/__output__/bsd_mixed.ar_extract/short -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/contents.ar_extract/file1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:732a50d53e827bf15e8cbac02f8b56344cf0443973abfd584476d4d1d90020ba 3 | size 15 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/contents.ar_extract/file2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf491d05764dd649d2b48426b670fb992e0e4d688c6a91da5b80e7b56aae7a61 3 | size 15 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/dual.ar_extract/0-280.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:626382d49aa29cd0e9688b64169d98f2403d08484c8e79241dd5e36c60ec8b5b 3 | size 280 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/dual.ar_extract/0-280.ar_extract/durian1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f6c40480bb7cb03fb6162cdb247fd810d187dfd2c3967fa7b10c16f5fb93a17 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/dual.ar_extract/0-280.ar_extract/durian2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e55b37ccd03812a8c12eb14abc3d8b6fbdb43bcca2c5e986d8cf19afde1c5c2d 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/dual.ar_extract/0-280.ar_extract/durian3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9ef6ce5a7b498e1b2128c24ac13a2ae44cd8cc95207c4e0a20980f34fe7da1e 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/dual.ar_extract/0-280.ar_extract/durian4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a242e6334903e50a128224e18c0bb0e5595aff3bb5a49e503e09680ba684fdd 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/dual.ar_extract/280-560.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:626382d49aa29cd0e9688b64169d98f2403d08484c8e79241dd5e36c60ec8b5b 3 | size 280 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/durian.ar_extract/durian1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f6c40480bb7cb03fb6162cdb247fd810d187dfd2c3967fa7b10c16f5fb93a17 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/durian.ar_extract/durian2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e55b37ccd03812a8c12eb14abc3d8b6fbdb43bcca2c5e986d8cf19afde1c5c2d 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/durian.ar_extract/durian3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9ef6ce5a7b498e1b2128c24ac13a2ae44cd8cc95207c4e0a20980f34fe7da1e 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/durian.ar_extract/durian4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a242e6334903e50a128224e18c0bb0e5595aff3bb5a49e503e09680ba684fdd 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/gnu_mixed.ar_extract/short: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/tests/integration/archive/ar/__output__/gnu_mixed.ar_extract/short -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/malformed_valid.ar_extract/0-268.unknown: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a012c17b49b3db0893462b33337b4d46484b6414cf80e3c7243152a04604da14 3 | size 268 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/malformed_valid.ar_extract/268-548.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:626382d49aa29cd0e9688b64169d98f2403d08484c8e79241dd5e36c60ec8b5b 3 | size 280 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/normal.ar_extract/short: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/tests/integration/archive/ar/__output__/normal.ar_extract/short -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/offset_valid.ar_extract/0-48.unknown: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6535667d2d10918d87e7f29e30ca53aa65fda82e2556e1cedb96283b459b3e7d 3 | size 48 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/offset_valid.ar_extract/48-328.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:626382d49aa29cd0e9688b64169d98f2403d08484c8e79241dd5e36c60ec8b5b 3 | size 280 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/sym.ar_extract/a.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/tests/integration/archive/ar/__output__/sym.ar_extract/a.o -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/valid_malformed.ar_extract/0-280.ar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:626382d49aa29cd0e9688b64169d98f2403d08484c8e79241dd5e36c60ec8b5b 3 | size 280 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/valid_malformed.ar_extract/280-548.unknown: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a012c17b49b3db0893462b33337b4d46484b6414cf80e3c7243152a04604da14 3 | size 268 4 | -------------------------------------------------------------------------------- /tests/integration/archive/ar/__output__/windows.ar_extract/short: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/tests/integration/archive/ar/__output__/windows.ar_extract/short -------------------------------------------------------------------------------- /tests/integration/archive/arc/__input__/fruits.arc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22b0c8db75eef1138af9604ac29eb25175a5a5d8a61b30f66ea8d84f01605da8 3 | size 106 4 | -------------------------------------------------------------------------------- /tests/integration/archive/arc/__output__/fruits.arc_extract/aaaaaaaa.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b31bcdcae082acfb825a0ad6fb2ec89bb513e929d2141b0ca4cc76507d72d5c 3 | size 13 4 | -------------------------------------------------------------------------------- /tests/integration/archive/arc/__output__/fruits.arc_extract/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/arc/__output__/fruits.arc_extract/cherry.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86baf3529da550a44b0681ffa031b6b676e620e9e06dc5ac1119d0cd21cbcf55 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/archive/arj/__input__/kaki.arj: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6c012c1ec87ce400b1e8a04eaab10c5c7eb312781e00cf5efd818d237bccc02 3 | size 350 4 | -------------------------------------------------------------------------------- /tests/integration/archive/arj/__output__/kaki.arj_extract/kaki1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f144258c391095bbe34a0dc98ec90428d41b934a7fa66c774ad1dee9260eced5 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/arj/__output__/kaki.arj_extract/kaki2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9973b7990b8f8de634d10a93a53658522608261c1fa335f82137eded7e3bc12 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/arj/__output__/kaki.arj_extract/kaki3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bdcacf8c17dfbbe802cdb04d4cb375472dbabe64338a5e5a327403edc4642d51 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/arj/__output__/kaki.arj_extract/kaki4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1aa35a2b5fbcf3e1151f12f69806c91e3621cde0a97859e9c10de15339abdb67 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/autel/ecc/__input__/output.bin: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:764fdaf18dec0c034b0b9e8e1dafe3a26591c4ee16041a2eca2f314a90586622 3 | size 7201 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cab/__input__/banana.cab: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24e31ee21861048f29c5f8c910817b077b8671255fdd1c696084d028fce0287d 3 | size 224 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cab/__output__/banana.cab_extract/banana/banana1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:022d66975222661648a212f974a822fac4d349c0f7c13ef7e0ba3ac0e7d9f519 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cab/__output__/banana.cab_extract/banana/banana2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cec01facc588f339e757822825743d16fae68d80ddf9b5e9e08f2862644f7733 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cab/__output__/banana.cab_extract/banana/banana3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da312e2d0258a4055f9863f680f165b29b39f32ecd806c75c1e8f8a2a079d221 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cab/__output__/banana.cab_extract/banana/banana4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a93968fdfdadcfaf2f7c16a766f546894367585c063964dca393a0e86a65625 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__input__/apple.cpio-bin: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49725992a46398165f977c90501d0543079e0fa7ba4c9a64ae92a453d7d885ae 3 | size 512 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__input__/apple.cpio-bin.truncated: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e33b7832c25974b72f5e6fa323593530504a76d6ecf81a69fb7ee4a3be36adc 3 | size 184 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__input__/duplicate_entries.cpio: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fab950a545cff6286c14c8736f532a1204c217de2e1a32f66e83655c7196a7ab 3 | size 1024 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__input__/empty.cpio-bin: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7b338690a805496df348fa7f60efc1c00db56bbc4e7dfca891951b12e041327 3 | size 512 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__input__/empty.cpio-bin.truncated: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f256ce3b6bb5531b007df2e8db3679c6ba70c8f09c8c43ae34279aa6337f515 3 | size 224 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__input__/test.bin.cpio: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a4b7d41131e0ef339da852e1439f36743ad14e01c93b91cde2985f2b9b04243 3 | size 1024 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__input__/test.bin.cpio.truncated: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f8cf46a8caf8320cefed8b8bb3e81dc2b7eb62b6dafb8cb8d30c0227a1dad74 3 | size 592 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/duplicate_entries.cpio_extract/colors/purple: -------------------------------------------------------------------------------- 1 | purple.txt -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test0: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b68ab3847feda7d6c62c1fbcbeebfa35eab7351ed5e78f4ddadea5df64b8015 3 | size 1 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test00: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b68ab3847feda7d6c62c1fbcbeebfa35eab7351ed5e78f4ddadea5df64b8015 3 | size 1 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test000: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b68ab3847feda7d6c62c1fbcbeebfa35eab7351ed5e78f4ddadea5df64b8015 3 | size 1 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test0000: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b68ab3847feda7d6c62c1fbcbeebfa35eab7351ed5e78f4ddadea5df64b8015 3 | size 1 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test0001: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecc76c19c9f3c5108773d6c3a18a6c25c9bf1131c4e250b71213274e3b2b5d08 3 | size 2 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test0002: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b38b8f5877f2395b4361c1f68c059078ee9c0c8b0cbb22c97d2906e011e40a3 3 | size 3 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test0003: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b346904f63cc07f1d8cc2d88d7dae08a3f088a0e4159d5214c27a6571a51eb4 3 | size 4 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test001: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecc76c19c9f3c5108773d6c3a18a6c25c9bf1131c4e250b71213274e3b2b5d08 3 | size 2 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test002: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b38b8f5877f2395b4361c1f68c059078ee9c0c8b0cbb22c97d2906e011e40a3 3 | size 3 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test003: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b346904f63cc07f1d8cc2d88d7dae08a3f088a0e4159d5214c27a6571a51eb4 3 | size 4 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test01: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecc76c19c9f3c5108773d6c3a18a6c25c9bf1131c4e250b71213274e3b2b5d08 3 | size 2 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test02: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b38b8f5877f2395b4361c1f68c059078ee9c0c8b0cbb22c97d2906e011e40a3 3 | size 3 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test03: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b346904f63cc07f1d8cc2d88d7dae08a3f088a0e4159d5214c27a6571a51eb4 3 | size 4 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecc76c19c9f3c5108773d6c3a18a6c25c9bf1131c4e250b71213274e3b2b5d08 3 | size 2 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b38b8f5877f2395b4361c1f68c059078ee9c0c8b0cbb22c97d2906e011e40a3 3 | size 3 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_binary/__output__/test.bin.cpio_extract/test3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b346904f63cc07f1d8cc2d88d7dae08a3f088a0e4159d5214c27a6571a51eb4 3 | size 4 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_portable_ascii/__input__/apple.cpio-newc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:218d9d3814bff138320a843a5944c920ff2c58faad8a581c1fb0d78ea556833e 3 | size 1024 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_portable_ascii/__input__/empty.cpio-newc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11e34f549812bd330872fa5f86f0cd658c4f3c9e5e2ef11d973614c69bcfa71c 3 | size 1024 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_portable_ascii/__input__/test.newc.cpio: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b26186f6279ec9bf1f9a684a3ca6600eb45a1bf3222f22b658a4b95520074eed 3 | size 2560 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_portable_ascii_crc/__input__/apple.cpio-crc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de5971e6a7ca8a072aeec2933952d143cf27b309914b0228d549579fb995d1b8 3 | size 1024 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_portable_ascii_crc/__input__/empty.cpio-crc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63d0c2e5a250a39018b0769462de20125298b220f5a8a1fa375c855784322095 3 | size 1024 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_portable_ascii_crc/__input__/test.crc.cpio: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:525035c504b13c9f5193755f9be9010ff17f1544419a77cb5e0cdebad7fe8236 3 | size 2560 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_portable_old_ascii/__input__/apple.cpio-odc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57e00a5acf5e7dabed6619c90143499e9655a8cc6a814762324d0be43b3fce68 3 | size 512 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_portable_old_ascii/__input__/empty.cpio-odc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88d26a54bbce74f46c3b0e87db53ae641dd833f8b612cfb0d174a28822a52c95 3 | size 1024 4 | -------------------------------------------------------------------------------- /tests/integration/archive/cpio/cpio_portable_old_ascii/__input__/test.odc.cpio: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c463cc8d4ec32fdf3975bab88e0c6993628d562825c7bbbf00f523c28db24d52 3 | size 1536 4 | -------------------------------------------------------------------------------- /tests/integration/archive/dlink/encrpted_img/__input__/fruits.dec: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9decac915942a638abe64bc3d843b900b6d73e972de3d2f6500d4888036c09be 3 | size 4112 4 | -------------------------------------------------------------------------------- /tests/integration/archive/dlink/shrs/__input__/sample.bin: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df841ac5e923fa5bd69d7f71aa131fbfa941bd10dd6d406698612540e078aaf0 3 | size 5852 4 | -------------------------------------------------------------------------------- /tests/integration/archive/dmg/__input__/fruits.dmg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1eed98d54f31fc7d976866e9ad32253dc64de332e46013c1e00949a9234206a5 3 | size 26280 4 | -------------------------------------------------------------------------------- /tests/integration/archive/dmg/__input__/fruits_osx.compressed.dmg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:135d11d36d343a1f45b719bacb5898c8db7cbf1bdfea828512aa463dfc90f649 3 | size 18518 4 | -------------------------------------------------------------------------------- /tests/integration/archive/dmg/__input__/fruits_osx.dmg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:606a9da1fe62fa405a8526b02919e0df8635b518f43ff4dcaae20956c5a54ed8 3 | size 20158 4 | -------------------------------------------------------------------------------- /tests/integration/archive/dmg/__output__/fruits.dmg_extract/fruits/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/dmg/__output__/fruits.dmg_extract/fruits/cherry.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86baf3529da550a44b0681ffa031b6b676e620e9e06dc5ac1119d0cd21cbcf55 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/archive/dmg/__output__/fruits_osx.dmg_extract/fruits/apple1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/dmg/__output__/fruits_osx.dmg_extract/fruits/apple2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/dmg/__output__/fruits_osx.dmg_extract/fruits/apple3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/dmg/__output__/fruits_osx.dmg_extract/fruits/apple4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/engeniustech/engenius/__input__/sample.bin: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c76815d81414cf427e7943c3b2c19ff8c412c2ba0ced312171b1921d5b0fbc8 3 | size 4243 4 | -------------------------------------------------------------------------------- /tests/integration/archive/hp/bdl/__input__/sample.bdl: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:240533e4188e0af859989fca729c4a0847de3d5688906c4a22d36f843afdf271 3 | size 4043 4 | -------------------------------------------------------------------------------- /tests/integration/archive/hp/bdl/__output__/sample.bdl_extract/ipkg000: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c99dd4e215b508395aed42ebfee1e87d64b6bb5551c165934fe1a759e40093ee 3 | size 1345 4 | -------------------------------------------------------------------------------- /tests/integration/archive/hp/bdl/__output__/sample.bdl_extract/ipkg001: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c99dd4e215b508395aed42ebfee1e87d64b6bb5551c165934fe1a759e40093ee 3 | size 1345 4 | -------------------------------------------------------------------------------- /tests/integration/archive/hp/ipkg/__input__/sample.ipkg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c99dd4e215b508395aed42ebfee1e87d64b6bb5551c165934fe1a759e40093ee 3 | size 1345 4 | -------------------------------------------------------------------------------- /tests/integration/archive/hp/ipkg/__output__/sample.ipkg_extract/sample.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6478ea19e2122817e1986151847d3590e114ffd7c5d65d8d91cccea316c1cf2 3 | size 17 4 | -------------------------------------------------------------------------------- /tests/integration/archive/instar/bneg/__input__/output.bin: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b422c5cd65b3c72a2c113fd6d80a5d8241a4989b8b51b35c3a3c695979119f7 3 | size 54 4 | -------------------------------------------------------------------------------- /tests/integration/archive/instar/bneg/__output__/output.bin_extract/part1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:95ce60852e6049b7bc70940f9122b51681fa39891d506ddbd23cc1da7e4972d9 3 | size 17 4 | -------------------------------------------------------------------------------- /tests/integration/archive/instar/bneg/__output__/output.bin_extract/part2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:95ce60852e6049b7bc70940f9122b51681fa39891d506ddbd23cc1da7e4972d9 3 | size 17 4 | -------------------------------------------------------------------------------- /tests/integration/archive/instar/instar_hd/__input__/sample.pkg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4bd1e5307a3f1346d99039b4abc50190ce41a0f807b00cf64504c08509617a77 3 | size 187 4 | -------------------------------------------------------------------------------- /tests/integration/archive/netgear/chk/__input__/sample.chk: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18e9a759fc06d2c99e531188b39f4482d06a7b772393e225fd06550fe16321ee 3 | size 86 4 | -------------------------------------------------------------------------------- /tests/integration/archive/netgear/chk/__output__/sample.chk_extract/kernel: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec76142ac57dd39fad43929f8b58f3cb541e4f8a4d17c9f383a6f311047068e7 3 | size 14 4 | -------------------------------------------------------------------------------- /tests/integration/archive/netgear/chk/__output__/sample.chk_extract/rootfs: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1056e7a94e821ab7ae3a47e925863cf8cdf977a8577c555fa3c80c354a717470 3 | size 14 4 | -------------------------------------------------------------------------------- /tests/integration/archive/netgear/trx/trx_v1/__input__/sample.trx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94c27fcc2ceeabeefde74134c84cfbdec79b237db720b01d914a69a47d2a292e 3 | size 4096 4 | -------------------------------------------------------------------------------- /tests/integration/archive/netgear/trx/trx_v1/__output__/sample.trx_extract/part0: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5745e1e2d85ae053d327ce2e5064c1328b9b9256b5eb6a93dfec62857ba1bab8 3 | size 20 4 | -------------------------------------------------------------------------------- /tests/integration/archive/netgear/trx/trx_v1/__output__/sample.trx_extract/part1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5745e1e2d85ae053d327ce2e5064c1328b9b9256b5eb6a93dfec62857ba1bab8 3 | size 20 4 | -------------------------------------------------------------------------------- /tests/integration/archive/netgear/trx/trx_v1/__output__/sample.trx_extract/part2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea7315a477c2bf9bc5f0c3112e44efa9b611e42f8284f0e1658e740762f8cc8a 3 | size 4028 4 | -------------------------------------------------------------------------------- /tests/integration/archive/netgear/trx/trx_v2/__input__/sample.trx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa7ccf8baa38f293e5d26c397e59a673d8de2a1434fa6e5654a0b75309f56849 3 | size 4096 4 | -------------------------------------------------------------------------------- /tests/integration/archive/netgear/trx/trx_v2/__output__/sample.trx_extract/part0: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5745e1e2d85ae053d327ce2e5064c1328b9b9256b5eb6a93dfec62857ba1bab8 3 | size 20 4 | -------------------------------------------------------------------------------- /tests/integration/archive/netgear/trx/trx_v2/__output__/sample.trx_extract/part1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5745e1e2d85ae053d327ce2e5064c1328b9b9256b5eb6a93dfec62857ba1bab8 3 | size 20 4 | -------------------------------------------------------------------------------- /tests/integration/archive/netgear/trx/trx_v2/__output__/sample.trx_extract/part2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5745e1e2d85ae053d327ce2e5064c1328b9b9256b5eb6a93dfec62857ba1bab8 3 | size 20 4 | -------------------------------------------------------------------------------- /tests/integration/archive/netgear/trx/trx_v2/__output__/sample.trx_extract/part3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c82de4b25c8e02008b9f567ca46b2455ffa5b193f2110ccc1b9611e3a38f9e6b 3 | size 4004 4 | -------------------------------------------------------------------------------- /tests/integration/archive/partclone/__input__/floppy-144m.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e63b5b8ec0ab6dfc4a4254d72e26b8c1b7ee8b6ceb61fe67bea1105b0d60156 3 | size 69930 4 | -------------------------------------------------------------------------------- /tests/integration/archive/partclone/__input__/fs_dev0.partclone.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8fb4fbc359454b017521504eddf0e2955c5808280337b73ad9f897a5f501285 3 | size 40123 4 | -------------------------------------------------------------------------------- /tests/integration/archive/qnap/qnap_nas/__input__/sample.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1fe03d3d2f2826fe26a11994d1f2c4817966267c8e487569cb5705184b552fef 3 | size 246 4 | -------------------------------------------------------------------------------- /tests/integration/archive/rar/default/__input__/erdbeere.rar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1386f0c7d57d7b29fe8566b5ffd685b54193d9b640d61833522dbe00d0e4841 3 | size 263 4 | -------------------------------------------------------------------------------- /tests/integration/archive/rar/default/__output__/erdbeere.rar_extract/erdbeere1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cbc439cc4a67a559e2143ea47949e4b3820b16c3f1b20c7229bca9d6f4565303 3 | size 10 4 | -------------------------------------------------------------------------------- /tests/integration/archive/rar/default/__output__/erdbeere.rar_extract/erdbeere2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab382e9730d979646a79a1bee062f63fec7167a6c082b65f22825ff587fa24b0 3 | size 10 4 | -------------------------------------------------------------------------------- /tests/integration/archive/rar/default/__output__/erdbeere.rar_extract/erdbeere3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04838cb91fe542f0cd3826a87b1011408a7058628f252b13914fa13b4aa512c0 3 | size 10 4 | -------------------------------------------------------------------------------- /tests/integration/archive/rar/default/__output__/erdbeere.rar_extract/erdbeere4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d74fcdceaa6c24ae491b138dadf26d1ee23c7935ee72102bd905e9445decf44f 3 | size 10 4 | -------------------------------------------------------------------------------- /tests/integration/archive/rar/encrypted/__input__/cherry_encrypted.rar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4eda63f4aa4b9a5fe7090f250d5b3a5e4431fb7ff378a23a90fc9f221258773d 3 | size 686 4 | -------------------------------------------------------------------------------- /tests/integration/archive/rar/password/__input__/cherry_password.rar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3f2e2173102420c4e954b3d107d7ffc7215cb6f87eddba403b7d99d5fa53c3f 3 | size 539 4 | -------------------------------------------------------------------------------- /tests/integration/archive/rar/password/__output__/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/tests/integration/archive/rar/password/__output__/.gitkeep -------------------------------------------------------------------------------- /tests/integration/archive/sevenzip/__input__/cherry.7z: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4196e7066d9df28386dd6a8907d2f3b28bfa3a6c4e6f26bcc2826afb2ed368c 3 | size 212 4 | -------------------------------------------------------------------------------- /tests/integration/archive/sevenzip/__input__/multi-sevenzip-dangling-symlinks.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:70f2e1d6ef9b9954fde7f76de1026dce3726ef16e3eb5b944d03f45394675e11 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/archive/sevenzip/__input__/multi-volume.tgz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c17f34d380545b1f139b52486f48b1852a9e74c2079a8e0338b0b7600a720fd6 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/archive/sevenzip/__output__/cherry.7z_extract/cherry1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7592083f2355ad7e207557efabb3594bf62c9e39677298e8265766a37d835c39 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/sevenzip/__output__/cherry.7z_extract/cherry2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb6f92894363eceff37d58287d2b8b37bb17a00b320312ed59924a8ec07004a6 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/sevenzip/__output__/cherry.7z_extract/cherry3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4d09282b5ac47cc58aa5dc4fe3e8d6829ac737adfe49ee32efee9cf4bf6cdf3 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/sevenzip/__output__/cherry.7z_extract/cherry4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7843a44cca6d57497113ed505d027b9f5ffac78f1de7809f81ae9b314d943e79 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/sevenzip/__output__/multi-sevenzip-dangling-symlinks.tar_extract/dangling-symlink.7z.001: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /tests/integration/archive/sevenzip/__output__/multi-sevenzip-dangling-symlinks.tar_extract/dangling-symlink.7z.002: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /tests/integration/archive/sevenzip/__output__/multi-sevenzip-dangling-symlinks.tar_extract/dangling-symlink.7z.003: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /tests/integration/archive/sevenzip/__output__/multi-volume.tgz_extract/mv.7z.001: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a89ae76a6a3624af5eef2bbebe3ac0ac9916d66f3a65b055a4931f28065fd55e 3 | size 100 4 | -------------------------------------------------------------------------------- /tests/integration/archive/sevenzip/__output__/multi-volume.tgz_extract/mv.7z.002: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3af8f79806dc5059ce0c746906f6d4c1f4e0206abd5e1742f8a8215bf6ebae0 3 | size 81 4 | -------------------------------------------------------------------------------- /tests/integration/archive/stuffit/stuffit5/__input__/plum.sit5: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:170c8d226dad8fd1802c735911893b7774ce8fec4d6acb3170eec0eca3ddf64a 3 | size 534 4 | -------------------------------------------------------------------------------- /tests/integration/archive/stuffit/stuffit5/__output__/plum.sit5_extract/plum1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c44d2870876585339fb82a9377a865dfab48005893f7df8e21bf17566bb15a9c 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/stuffit/stuffit5/__output__/plum.sit5_extract/plum2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7e4f4c206539eb3f4bebb13a50c996ea763f5a82fe7130cc315921485fb8087 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/stuffit/stuffit5/__output__/plum.sit5_extract/plum3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0e8cc9f53bfb0de5f45deb88c343f530dcbfeb30b0af37e683a185664b63be0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/stuffit/stuffit5/__output__/plum.sit5_extract/plum4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10195422714841b86cf43bf83013b9183f697452125430a774da43f862527486 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/absolute.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b594d3fc6eb4ce49e4b2e1ba1c632bffa57174c5ce0082bd31a37bb245eb79e8 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/cherry.gnu.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee4f4478f41dad5ae4662f8ed24b06fab836213b18573386cce0bd00e75aba55 3 | size 81920 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/cherry.posix.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:964ddc59907703f52f3904529be730b259fc73032f7bfdba1930f3508fd1f0bc 3 | size 92160 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/cherry.posixly_correct.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:295c6d4cd2bb5aeaaa32e27a5d63e5900a8ef764aee91cf85ba5c578826b3378 3 | size 20480 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/cherry.v7.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f799945e335bcd22cae7f2a53033781b8a181a266a12bd04d6ab3ed3f5ba1fd2 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/damaged.gnu.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:413d93982446e6ebaf405d4ba8479ebab48f417f57b8de1b86c0961e10eff781 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/dual_entry.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8684178ad6cf02586da93ba255e90c9c345e31fa83b4beffe881cf8d0d6592fd 3 | size 9728 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/emptyname.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b5233dfb3a4a23a3bf291bfff8ccfb371fbb2136cb093247d30af090d1e4276 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/linktest_missing_dir.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f8f1fc82acca1d94d683db68d00e39205fdc21c382db28098b63e42cc43b83c 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/longname.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd002ebcec73917b4294602e2999809e4119f5209a74f92fc0f70bff838bca69 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/sparse.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:217eb921a851ca38185b7585a554160f2f88f76c3b123c1930468a2cc4d80e46 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/symlinks.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:152c7a03b3b3276f8a7527bfde01f26b0c4f2ae3f705a6deac0183d8bac2ba1c 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/traversal.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c0558a0d64c93f706175b7a38158a2909c07bf174ed54572e9f31896ddb20a6 3 | size 260 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/truncated-cherry.posix.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a8f79fae21e46b977882ed2665a89f8391caffd7a4844b0b62dd02c5a4b2a02 3 | size 82439 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__input__/truncated-header.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:482c6c41eda31e50ae678d383bcf84d78920bc532de4414e32423ccbe771f2bf 3 | size 1023 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/absolute.tar_extract/absolute/absolute-file: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5891b5b522d5df086d0ff0b110fbd9d21bb4fc7163af34d08286a2e846f6be03 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/absolute.tar_extract/absolute/absolute-symlink: -------------------------------------------------------------------------------- 1 | absolute-file -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/absolute.tar_extract/absolute/link_to_etc_shadow: -------------------------------------------------------------------------------- 1 | ../etc/shadow -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.gnu.tar_extract/banana.gnu.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:851dd2e0848a989be0483cec20355c9ef383e16a6b7e1acfa99bfb219a9a6690 3 | size 30720 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.gnu.tar_extract/banana.posix.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d9a6f8e49976475b836a417571b6c7e6be44a12b8cb6d6d4885f6171ea0f371 3 | size 40960 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.gnu.tar_extract/cherry1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7592083f2355ad7e207557efabb3594bf62c9e39677298e8265766a37d835c39 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.gnu.tar_extract/cherry2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb6f92894363eceff37d58287d2b8b37bb17a00b320312ed59924a8ec07004a6 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.gnu.tar_extract/cherry3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4d09282b5ac47cc58aa5dc4fe3e8d6829ac737adfe49ee32efee9cf4bf6cdf3 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.gnu.tar_extract/cherry4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7843a44cca6d57497113ed505d027b9f5ffac78f1de7809f81ae9b314d943e79 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.posix.tar_extract/banana.gnu.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:851dd2e0848a989be0483cec20355c9ef383e16a6b7e1acfa99bfb219a9a6690 3 | size 30720 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.posix.tar_extract/cherry1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7592083f2355ad7e207557efabb3594bf62c9e39677298e8265766a37d835c39 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.posix.tar_extract/cherry2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb6f92894363eceff37d58287d2b8b37bb17a00b320312ed59924a8ec07004a6 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.posix.tar_extract/cherry3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4d09282b5ac47cc58aa5dc4fe3e8d6829ac737adfe49ee32efee9cf4bf6cdf3 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.posix.tar_extract/cherry4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7843a44cca6d57497113ed505d027b9f5ffac78f1de7809f81ae9b314d943e79 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.v7.tar_extract/fruits/cherry1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7592083f2355ad7e207557efabb3594bf62c9e39677298e8265766a37d835c39 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.v7.tar_extract/fruits/cherry2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb6f92894363eceff37d58287d2b8b37bb17a00b320312ed59924a8ec07004a6 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/cherry.v7.tar_extract/fruits/cherry3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4d09282b5ac47cc58aa5dc4fe3e8d6829ac737adfe49ee32efee9cf4bf6cdf3 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/damaged.gnu.tar_extract/0-1024.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d9804c193530de7cec80335025fd3b8928b274c06b67a3861c213045e76e40b0 3 | size 1024 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/emptyname.tar_extract/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/linktest_missing_dir.tar_extract/linktest/link: -------------------------------------------------------------------------------- 1 | orig -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/longname.tar_extract/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/sparse.tar_extract/dummy1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16fa66a7dc98d93f2a4c5d20baf5177f59c4c37fc62face65690c11c15fe6ff9 3 | size 51200 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/sparse.tar_extract/dummy2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16fa66a7dc98d93f2a4c5d20baf5177f59c4c37fc62face65690c11c15fe6ff9 3 | size 51200 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/sparse.tar_extract/file1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed68b430af3630fde9b598ea74340a7be809408e493f3adff7aadbd6cfeef931 3 | size 45 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/sparse.tar_extract/file2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed68b430af3630fde9b598ea74340a7be809408e493f3adff7aadbd6cfeef931 3 | size 45 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/symlinks.tar_extract/test/bin/busybox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58eaf5a78d580f5dbd49d31a5b733094169b31bfdf49055b74bcac2877d8f58c 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/symlinks.tar_extract/test/sbin/cp: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/symlinks.tar_extract/test/sbin/find: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/symlinks.tar_extract/test/sbin/ln: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/symlinks.tar_extract/test/sbin/ls: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /tests/integration/archive/tar/__output__/symlinks.tar_extract/test/sbin/mv: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr1/__input__/sample.bin: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d05b0fa037678a9ead854c7881ef08779d48f82aaaa8b43e9c95be3053e34d89 3 | size 1056 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr1/__output__/sample.bin_extract/blob0: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c2fa298a10bbfed53d1742e2ed9aa6bbdc01e40de4706067ab42dcaa20a2292 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr1/__output__/sample.bin_extract/blob1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42e0a62ab7ed0173e513344b4cdfa9bc3353b357f92e2b7246a74afd10750e28 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr1/__output__/sample.bin_extract/blob2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7eda3a441c45c07f9ae4368ec30c7abf7481ac87116d397f9a6a46e048e41f87 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr1/__output__/sample.bin_extract/blob3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d2aae5d82a8ccf65b1a92e772c8df9f2d81a9814fe1339050cbd2a1e576c38a 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr1/__output__/sample.bin_extract/blob4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5cb93c12ec7ce846880ff289fdc3946acf41fa18aa3344e8731b1c26eae9c03 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr1/__output__/sample.bin_extract/blob5: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81fada56ec5b06e042f863dcfbe8eeea652d6d20994e91fe52bf5d2dec080997 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr1/__output__/sample.bin_extract/blob6: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e77f94411db504aa4d5db507c76327615d3989296f38a1df42e3b1dd301c9bb 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr1/__output__/sample.bin_extract/blob7: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb67d594754b545e5879fcd08ef90493d4985a538fcc3c73d2fefcddc56e2b41 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr2/__input__/sample.bin: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:053c0fa871896c6955e77bfd038cbaaff22a3e12d1caaf9e72a65e96a43cfb5b 3 | size 1080 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr2/__output__/sample.bin_extract/blob0: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c2fa298a10bbfed53d1742e2ed9aa6bbdc01e40de4706067ab42dcaa20a2292 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr2/__output__/sample.bin_extract/blob1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42e0a62ab7ed0173e513344b4cdfa9bc3353b357f92e2b7246a74afd10750e28 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr2/__output__/sample.bin_extract/blob2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7eda3a441c45c07f9ae4368ec30c7abf7481ac87116d397f9a6a46e048e41f87 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr2/__output__/sample.bin_extract/blob3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d2aae5d82a8ccf65b1a92e772c8df9f2d81a9814fe1339050cbd2a1e576c38a 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr2/__output__/sample.bin_extract/blob4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5cb93c12ec7ce846880ff289fdc3946acf41fa18aa3344e8731b1c26eae9c03 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr2/__output__/sample.bin_extract/blob5: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81fada56ec5b06e042f863dcfbe8eeea652d6d20994e91fe52bf5d2dec080997 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr2/__output__/sample.bin_extract/blob6: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e77f94411db504aa4d5db507c76327615d3989296f38a1df42e3b1dd301c9bb 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/archive/xiaomi/hdr/hdr2/__output__/sample.bin_extract/blob7: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32f1c9e35b9788717b0b9b23f09c1e8673fd69e4f9cf1405a44a5bb2c4a0bc1c 3 | size 36 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/encrypted/__input__/apple_encrypted.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9fe02598c0337abf702f6abce2f324e5167dc07e2ddec9de594e9a549e5e7aaa 3 | size 754 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/encrypted/__output__/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onekey-sec/unblob/78a850dd698df3fecd77276d9fddf09bb15a8f4c/tests/integration/archive/zip/encrypted/__output__/.gitkeep -------------------------------------------------------------------------------- /tests/integration/archive/zip/partly_encrypted/__input__/kaki1_aes.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8270ed4a2ec34339dac0617a5d562c082cfc09c75bc4ebd77633ba73e33b62f 3 | size 616 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/regular/__input__/apple.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f52063e15f6d658f079349d07ed9343bbffef9cd946649a9477c0234c2d5f69c 3 | size 642 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/regular/__output__/apple.zip_extract/apple1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6181259c6b2ca629a56920b422e9a8f212a4d0bcead923df92dbd66fbb7e1c30 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/regular/__output__/apple.zip_extract/apple2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:919fc82d6f1031d305dbce2fc5a74a6df5ddf2da472ee4d137c681cef28d4aff 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/regular/__output__/apple.zip_extract/apple3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d95014ed3f24e86ce5fc3a4529f057d7b2318d9b24b54f2e9476b154bd21ec6 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/regular/__output__/apple.zip_extract/apple4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08d9b05b15b998f2dbc741399fef4350c7863cc85df2305d7da4e83e8c8a959d 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/zip64/__input__/apple.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12808b48650a41a1c5e32cc585a5b62d79ff233e71b91f0180dc5f31ed9d8314 3 | size 846 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/zip64/__input__/colors.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a59995571929d2047445ef9ead25ebe1560a6b52a8204ed342c72f8eb624bec9 3 | size 457 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/zip64/__input__/colors_garbage.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cca8132ff6bf4a712056e15507643bb32ddd1283cf84d85157c9c2a299cf6749 3 | size 1481 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/zip64/__input__/zero_edited.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7321376ddcdde9617b95332c6c3b3e1e612fa352e18e8eb99faff7580e456ddc 3 | size 6252481 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/zip64/__input__/zip64-without-cd.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a4ea164d7b08ba3ee6dbea6808e7d5438ffbf317420e28d0c5e42b7090f42851 3 | size 126 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/zip64/__output__/apple.zip_extract/apple1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6181259c6b2ca629a56920b422e9a8f212a4d0bcead923df92dbd66fbb7e1c30 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/zip64/__output__/apple.zip_extract/apple2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:919fc82d6f1031d305dbce2fc5a74a6df5ddf2da472ee4d137c681cef28d4aff 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/zip64/__output__/apple.zip_extract/apple3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d95014ed3f24e86ce5fc3a4529f057d7b2318d9b24b54f2e9476b154bd21ec6 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/zip64/__output__/apple.zip_extract/apple4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08d9b05b15b998f2dbc741399fef4350c7863cc85df2305d7da4e83e8c8a959d 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/zip64/__output__/colors.zip_extract/blue.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0bee6616b5e5eae6799cb4525a884a82e7161614f11122bbdf4383b2ac05998 3 | size 5 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/zip64/__output__/colors.zip_extract/red.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ace33171ce0acb6891e3cc311d75a97aa429d77c05cba600d49ed9652ed49de 3 | size 4 4 | -------------------------------------------------------------------------------- /tests/integration/archive/zip/zip64/__output__/zip64-without-cd.zip_extract/-: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/compression/bzip2/__input__/collated.bzip2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:882c591e5eddf406213eea5b0235ea08e8e73e0507d3491f453f3c286c17de65 3 | size 5090 4 | -------------------------------------------------------------------------------- /tests/integration/compression/bzip2/__input__/collated.headpad.bzip2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f320bd0a2dd87b00d9ba78a778747c4094fbfa6aaff108d061ddd00074fa8b9 3 | size 5107 4 | -------------------------------------------------------------------------------- /tests/integration/compression/bzip2/__input__/dual.txt.bzip2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f9b1a23a1a225025ca32125b4156b6af67b712db911c08b0548f3e90131788df 3 | size 5099 4 | -------------------------------------------------------------------------------- /tests/integration/compression/bzip2/__input__/lorem.txt.bz2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:92cf0f3476c5cd45d112985624be66a543fbb92f46142cd579a778795f1cea03 3 | size 2545 4 | -------------------------------------------------------------------------------- /tests/integration/compression/bzip2/__input__/multiblock.bzip2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf56e4b474efcc08f4d4f1697438cf2e8ca0c651bd67b80373a97e803a0f438d 3 | size 17339 4 | -------------------------------------------------------------------------------- /tests/integration/compression/compress/__input__/apple1.z: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:baf2f5824deabee1e5f66493c4e1b89bdc5596c16b8a427d90434b6cad28626d 3 | size 11 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__input__/durian.dual.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69e3ec6e917f22dfae50c4cc15a249d3cdfc0f0bccf972436db0733a641f1ddd 3 | size 86 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__input__/durian.eof.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b78d065659afe2371a057bbabc0bca52158b4f67bf273c63a6382de664a56960 3 | size 59 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__input__/durian.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be0c9ca3ac8e90a5211663e6b8bce1f3c8ea102c349a0a36386e61ce543f9de4 3 | size 43 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__input__/multi-volume-digit-hash.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a10c7419ea665deb88d4f7bd0cc7685e36e071562d8ce047feb91a9d993c9c87 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__input__/multi-volume-digit.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5b916eb8cddce9d9f8e9b8ac9d3ea48b4fd73249dc86bf71ea59f83f6dda931 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__input__/multi-volume.tar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d605c55b80ae5c57f6a8268d17a1d41d816dfeda7829ba8a488d62199e7c891 3 | size 10240 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__input__/no-name.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f49285a5e8ec0b2747d570680331c9ae5dfacc0aa11bddf3b9c52be55a69c5d5 3 | size 28 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__input__/path-traversal.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1794cf1a1dbdc8065eeae0293a4f47f97336016711569fa81f636313a09177d4 3 | size 53 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__output__/durian.dual.gz_extract/0-43.gzip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be0c9ca3ac8e90a5211663e6b8bce1f3c8ea102c349a0a36386e61ce543f9de4 3 | size 43 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__output__/durian.dual.gz_extract/43-86.gzip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be0c9ca3ac8e90a5211663e6b8bce1f3c8ea102c349a0a36386e61ce543f9de4 3 | size 43 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__output__/durian.eof.gz_extract/0-43.gzip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be0c9ca3ac8e90a5211663e6b8bce1f3c8ea102c349a0a36386e61ce543f9de4 3 | size 43 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__output__/durian.gz_extract/durian1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f6c40480bb7cb03fb6162cdb247fd810d187dfd2c3967fa7b10c16f5fb93a17 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__output__/multi-gzip-dangling-symlinks.tar_extract/dangling-symlink.gz.a: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__output__/multi-gzip-dangling-symlinks.tar_extract/dangling-symlink.gz.b: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /tests/integration/compression/gzip/__output__/multi-gzip-dangling-symlinks.tar_extract/dangling-symlink.gz.c: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /tests/integration/compression/lz4/lz4_default/__input__/lorem.csize.lz4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f918be07c7598f1a7a3b3af932fade86baf05bd49967a26b233c2f169b11427e 3 | size 3948 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lz4/lz4_default/__input__/lorem.nocsize.lz4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56dd0270e37aea2fe0ff159aa36c03b84ecfe70e45487762adf43446ca0327fd 3 | size 3940 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lz4/lz4_default/__input__/lorem.noframecrc.lz4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3cd7d2cebfdd25ae33113fdcc885e4b5df0f7e20ca496ee3fb16ed3852812514 3 | size 3936 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lz4/lz4_legacy/__input__/lorem.legacy.lz4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:174728566a2e5a268d16873ecc3de115239d99129177556d6dbd507719f336c8 3 | size 3929 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lz4/lz4_skippable/__input__/skippable.lz4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65090d5f19366d988768d5b10f3e5bc6d51dcd6c0459b4784b1ee71a4bc3a081 3 | size 108 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzh/__input__/fruits.lvl0.lzh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7de21bd1152c3d120061a5abc36f981c380f0eb6df7ce756855180208b4da6c1 3 | size 122 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzh/__input__/fruits.lvl1.lzh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e016f42094b088058e7fa5d9c3f98bafaeac87899205192d95b8001f72058a0f 3 | size 146 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzh/__input__/fruits.lvl2.lzh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54da39c5606883837e56e0b15693d6136892923144edc3a52d45c81fab94ea99 3 | size 152 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzh/__output__/fruits.lvl0.lzh_extract/0-39.lzh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3e42b02fcfa3112b41dd1754d9e1a64eab2281b54982302d4c87c2aa380cb908 3 | size 39 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzh/__output__/fruits.lvl0.lzh_extract/39-80.lzh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9264b111af68413ca7c6caec569d9fb4a6203ba548c610dcd5b81daa1a4533e5 3 | size 41 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzh/__output__/fruits.lvl0.lzh_extract/80-122.lzh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:726a854144a12ce79f1ce8b52e38fb40f7ce66a2801db249246179eb97941f2e 3 | size 42 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzh/__output__/fruits.lvl1.lzh_extract/0-47.lzh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a5c66643341b6f15c737015cce2aa0589fd5985c0d073b8b65a5e8a9b293f26 3 | size 47 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzh/__output__/fruits.lvl1.lzh_extract/47-96.lzh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ff4b19fa9065588c1cd24e5717aff64ac97215035ee9575fd7f6de262969c39 3 | size 49 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzh/__output__/fruits.lvl1.lzh_extract/96-146.lzh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75cd766f1ba72858ad6597eaed7645449d0fd7eefe5e1ec85eda58d4cc1cdcba 3 | size 50 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzh/__output__/fruits.lvl2.lzh_extract/0-49.lzh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:30f54ea63ed0141ff20283d6fce907728ab930a1a1bae52a7e792e12a7a87b7a 3 | size 49 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzh/__output__/fruits.lvl2.lzh_extract/49-100.lzh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab4515a7f604a29ca9f65237d8798eaa90eacb9bebb3b29f40e54c903ef3f5dc 3 | size 51 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzip/__input__/lorem.txt.lz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b92a810e9381f7103ba177c36e39033984153347a4be0104aa824c571b3bf366 3 | size 2520 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzma/__input__/lorem.txt.known_size.lzma: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3836a2dd10664672ca16984c885369fe76d91bb6cbf39b056c9d243b96efddd2 3 | size 2518 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzma/__input__/lorem.txt.small_size.lzma: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17ab9d77e360f5cfa30c5766a37f1afa1a54c4f3cffeb49354ed170244f5a45c 3 | size 168 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzma/__input__/lorem.txt.unknown_size.lzma: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:70c73589d48f0330532803fa18b227e534eef005d298405bd6e63024d5d5c148 3 | size 2550 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzma/__input__/lorem.txt.unused.lzma: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:819766ed96a23a6133523a1a9c3354af5904d9ee2f34d16613759a0b5e58602b 3 | size 2590 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzo/__input__/lorem.filter.lzo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69d7b295ff217234203cb4a9b4d60385a295e4f3feca1be42714de0086a26584 3 | size 6352 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzo/__input__/lorem.lzo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:480e2c273d8d9106bb3cea12f918978d45db94dab5ba6603c201b1029eb33931 3 | size 3093 4 | -------------------------------------------------------------------------------- /tests/integration/compression/lzo/__output__/lorem.lzo_extract/lorem.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b095cfec3af2f64ddd11e013442a4a42932467da9175e3ea356adc82e57678e6 3 | size 6324 4 | -------------------------------------------------------------------------------- /tests/integration/compression/uzip/lzma/__input__/myfs.img.ulzma: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bc53a5de25e6f5326564264fee9e1210067311c237d4d7a8299ebf244652cf05 3 | size 59392 4 | -------------------------------------------------------------------------------- /tests/integration/compression/uzip/zlib/__input__/myfs.img.uzip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e04c83a5444127b9ec58c4b2d8fef904816cee4609d798589d6e8af6086a322 3 | size 59904 4 | -------------------------------------------------------------------------------- /tests/integration/compression/uzip/zlib/__input__/myfs.padded.img.uzip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc069dc850a564078858cc13dc743dc5772d1e28edb1ce8a714f5a8749b5d43d 3 | size 60032 4 | -------------------------------------------------------------------------------- /tests/integration/compression/uzip/zstd/__input__/myfs.img.uzst: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f8a24f2de9727324844a152716880a2cb29512d19918ade566811fa3a8ae8d1 3 | size 58368 4 | -------------------------------------------------------------------------------- /tests/integration/compression/xz/__input__/lorem.txt.xz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:697759ccdb7e21ee1a099e2fbf9eeb888935b6753c8837c8ab3dba1bc5e2a9c7 3 | size 2632 4 | -------------------------------------------------------------------------------- /tests/integration/compression/xz/__input__/multiblock.padded.xz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0856a2ca40f1b89f1f6b1e7d35b45d68eb8cd71132c9f77ea2a46e1348d8436c 3 | size 2168 4 | -------------------------------------------------------------------------------- /tests/integration/compression/zlib/__input__/sample.suffix.zlib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4de0dfb039ea18be1ab6fe1c7fdfa9f4a3ba86b56b31ba10ca2aec26d83b5e7c 3 | size 39 4 | -------------------------------------------------------------------------------- /tests/integration/compression/zlib/__input__/sample.truncated.zlib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:51a0a52eb2ddc0ac7750b39e4eb920d819a278eed25f522f84e695e40cc80647 3 | size 32 4 | -------------------------------------------------------------------------------- /tests/integration/compression/zlib/__input__/sample.zlib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:133a339cfd1651953db209cf44666f8a49e4364c4f1e5bf8be84e812f0f91c61 3 | size 34 4 | -------------------------------------------------------------------------------- /tests/integration/compression/zstd/__input__/large_fcs.zstd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c6fc92dda937dd453b83c60f0d439c87a156d09888ede3d47201e13c26245e8 3 | size 26 4 | -------------------------------------------------------------------------------- /tests/integration/compression/zstd/__input__/lorem.both.zstd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81468a5c3508970bed02d0824e394497407d0964bc37556de141347f1e320317 3 | size 2632 4 | -------------------------------------------------------------------------------- /tests/integration/compression/zstd/__input__/lorem.prefixed.zstd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c79b72ddd77445e2ba70810ae04eef63e8dfb0dce9638200e418ea4a670b9f5c 3 | size 2628 4 | -------------------------------------------------------------------------------- /tests/integration/compression/zstd/__input__/lorem.suffixed.zstd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37aab92d3ca37b75e87a30e7656d26ecd580b88a270cd09df8bcf7a0edd11177 3 | size 2628 4 | -------------------------------------------------------------------------------- /tests/integration/compression/zstd/__input__/lorem.truncated.zstd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2619fb8093ec1eaab0669e4622a5ffe7bce9c28d03b74858a42b9c73c02b0b8 3 | size 1312 4 | -------------------------------------------------------------------------------- /tests/integration/compression/zstd/__input__/lorem.zstd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52738e82d35ccdb2c85e5dfcb30f8c320a7ae7e1b427203cd9e566f3d8b97820 3 | size 2624 4 | -------------------------------------------------------------------------------- /tests/integration/compression/zstd/__input__/truncated.dos.zstd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:052ba0688dc57289ad3bb5863ac952b4ff8d91156e3a3a274e60ef2ad1746015 3 | size 9 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf32/__input__/sample_32_be.elf: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2e48e9356134d947f71cf7027043234fe9721776926b49b640e2af019654e976 3 | size 5877 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf32/__input__/sample_32_le.elf: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17f17175f6b65306d43695804a1199e3acfc13c907df8b44e38eb1315abd0c2d 3 | size 15601 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf32/__input__/sample_32_prg_end.elf: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5755d4f41982bdaae3edb565813ffe193db1d0576d77d4170b3b0082d04dda37 3 | size 36917 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/hello.upx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b1961a6f9723ea06f99ebd59b2ce6337622fa561eb8b14bf17f0f10c8dd02d92 3 | size 5820 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/hello_notes.upx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff88b41ffd02dc9863bd4a360c4f4cc510589067034ff6c804f96ee81dac5df0 3 | size 6340 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/hellomod.sha1.brokensig.ko: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6084a285fde43e4021f7c2a29e9aa865aab882b80b0774fa61e715f11c22a183 3 | size 216458 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/hellomod.sha1.extra.ko: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:76d5c9d22d920e77a54c7beee59771c8386b3fb2832d52a7779ded5719064ee6 3 | size 216470 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/hellomod.sha1.ko: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:748b2200ed8ddd87b85e3c6d912079b6306594c7ef4a5fd4ca3578e7386c549f 3 | size 216459 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/hellomod.sha1.nofooter.ko: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3e387bf0d8f3747c01e89746ace50a326e8607343fb2575561ff2cf77c8b4947 3 | size 216457 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/hellomod.sha1.nonsigned.ko: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a772d25b2c7e868eadf8b2cfb8e9e01d8f12128f5d39dece8bdda35357f63280 3 | size 215704 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/hellomod.sha256.ko: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4965a2a4c82a901de5da3472b2248029aff3004947d0ce47407f1c923c40b25f 3 | size 216467 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/hellomod.sha384.ko: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1791e2c06748ecafa6bf0ff044a83b30318d967bd0a1b1a88e16b6e1863b8a20 3 | size 216467 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/hellomod.sha512.ko: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b37e0a7075220bcdbbe1e3dfda15e13ae30ea2490ceb3f6a4b33734a193fa532 3 | size 216467 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/kernel-initramfs-padding: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad0c52f3b2b7e4464133363033007a5019aecc6cd8f754064bda6aca4ee7c92f 3 | size 11651465 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/sample_64_be.elf: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2945ec360f313e81c830b9ac518c590294edd9a84ce45d5b22cd099a1015fb9a 3 | size 67741 4 | -------------------------------------------------------------------------------- /tests/integration/executable/elf/elf64/__input__/sample_64_le.elf: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ddf96896b4007c571dfad76a62a12014106fc084b1ad20eb23869f59a89000e 3 | size 16709 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/android/erofs/__input__/foo.erofs.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f400d3497501c6e68324868d88207aa9398888902414045f4ea498ff26bcdcd 3 | size 4096 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/android/erofs/__input__/foo_padding.erofs.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7520d3fe98e5f5d25ccc4027321a561a125fbb413ecd83e935a8bc6b425b2aaf 3 | size 6144 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/android/sparse/__input__/fruits.sparse: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0558c885fb6761134e273cca6939774c920c4503dc5461ed2590fc2c50e21025 3 | size 41084 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/cramfs/big_endian/__input__/fruits.cramfs_be: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de1d6be79d816470ff54836760a0a1574fba6c2efa9ed13108f0669eb329d749 3 | size 4096 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/cramfs/big_endian/__input__/fruits.old.cramfs_be: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad4972ed94445a852d88ecee148fe34699b417d9885a84e47d328a300c0d7a37 3 | size 4096 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/cramfs/little_endian/__input__/fruits.cramfs_le: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e594657cd8a394eb7abb2a10041681a925edb95e829d37a7a4ac5168f026b9e 3 | size 4096 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/ext2.1024.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:217a2eac24381eab669c8268929409de7735f4cb59b69e99b98a4cfba4d59c8c 3 | size 524288 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/ext2.1024.nullstate.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13a3e5482e5e95df1cb59109052d20b4fb3b75501b52acedbbb8454b7e1ca922 3 | size 524289 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/ext2.2048.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca6122ab09193915c29dd93dc43319381c712f3a1cd809ab0844a419fe43b308 3 | size 524288 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/ext2.4096.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:579b31578b8ba892ccb97cc4d8162959162573695fe480bbb56556244bad8eca 3 | size 524288 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/ext3.1024.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44c49a20980ae3d55c147583e9fb7d34d79e6406f2fbdbd606a9c8376000807b 3 | size 524288 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/ext3.1024.nullstate.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cbab8888991165b4b2baee41b620ec526b2013cfc9f97d4cfc8b0e3eb81595af 3 | size 524289 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/ext3.2048.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd7fc5ff2830061e04a2a397b4a0cf2837b75c2677d267d3910f39ed6a23b866 3 | size 524288 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/ext3.4096.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0876e7a3dd701c9cefea1363c94d1d3a5eaedb331bdc616c0d1199a6a05e8c2a 3 | size 524288 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/ext4.1024.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f8e4a871471fe3bc469a22615d08033d870f0a920a243323a680b6a1d117790 3 | size 524288 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/ext4.1024.nullstate.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f11fa59981143916c137aefc193107174a8e84847d43a71c4532a2c344adea8 3 | size 524289 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/ext4.2048.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad0366a489ab25bbc2c664fb6b39adaae4040520e99d1b78a7461c58c50e8856 3 | size 524288 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/ext4.4096.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ccc49d73c71d17dc67495228467adcfff3018aa1c05c582ccbb273f29931d5c9 3 | size 524288 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__input__/f_badsymlinks.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5db6b45d5ce63976001aba342e9928dff1f75ee2ce3033269ca2fcaf5b9f80a 3 | size 1048576 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext2.1024.img_extract/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext2.1024.img_extract/banana.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a81483d96b0bc15ad19af7f5a662e14b275729fbc05579b18513e7f550016b1 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext2.1024.img_extract/cherry.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86baf3529da550a44b0681ffa031b6b676e620e9e06dc5ac1119d0cd21cbcf55 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext2.2048.img_extract/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext2.2048.img_extract/banana.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a81483d96b0bc15ad19af7f5a662e14b275729fbc05579b18513e7f550016b1 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext2.2048.img_extract/cherry.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86baf3529da550a44b0681ffa031b6b676e620e9e06dc5ac1119d0cd21cbcf55 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext2.4096.img_extract/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext2.4096.img_extract/banana.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a81483d96b0bc15ad19af7f5a662e14b275729fbc05579b18513e7f550016b1 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext2.4096.img_extract/cherry.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86baf3529da550a44b0681ffa031b6b676e620e9e06dc5ac1119d0cd21cbcf55 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext3.1024.img_extract/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext3.1024.img_extract/banana.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a81483d96b0bc15ad19af7f5a662e14b275729fbc05579b18513e7f550016b1 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext3.1024.img_extract/cherry.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86baf3529da550a44b0681ffa031b6b676e620e9e06dc5ac1119d0cd21cbcf55 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext3.2048.img_extract/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext3.2048.img_extract/banana.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a81483d96b0bc15ad19af7f5a662e14b275729fbc05579b18513e7f550016b1 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext3.2048.img_extract/cherry.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86baf3529da550a44b0681ffa031b6b676e620e9e06dc5ac1119d0cd21cbcf55 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext3.4096.img_extract/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext3.4096.img_extract/banana.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a81483d96b0bc15ad19af7f5a662e14b275729fbc05579b18513e7f550016b1 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext3.4096.img_extract/cherry.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86baf3529da550a44b0681ffa031b6b676e620e9e06dc5ac1119d0cd21cbcf55 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext4.1024.img_extract/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext4.1024.img_extract/banana.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a81483d96b0bc15ad19af7f5a662e14b275729fbc05579b18513e7f550016b1 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext4.1024.img_extract/cherry.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86baf3529da550a44b0681ffa031b6b676e620e9e06dc5ac1119d0cd21cbcf55 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext4.2048.img_extract/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext4.2048.img_extract/banana.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a81483d96b0bc15ad19af7f5a662e14b275729fbc05579b18513e7f550016b1 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext4.2048.img_extract/cherry.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86baf3529da550a44b0681ffa031b6b676e620e9e06dc5ac1119d0cd21cbcf55 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext4.4096.img_extract/apple.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext4.4096.img_extract/banana.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a81483d96b0bc15ad19af7f5a662e14b275729fbc05579b18513e7f550016b1 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/ext4.4096.img_extract/cherry.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86baf3529da550a44b0681ffa031b6b676e620e9e06dc5ac1119d0cd21cbcf55 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/f_badsymlinks.img_extract/attr_fastlink: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/f_badsymlinks.img_extract/attr_link: -------------------------------------------------------------------------------- 1 | aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/f_badsymlinks.img_extract/bad_link_size: -------------------------------------------------------------------------------- 1 | aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/f_badsymlinks.img_extract/high_link: -------------------------------------------------------------------------------- 1 | aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -------------------------------------------------------------------------------- /tests/integration/filesystem/extfs/__output__/f_badsymlinks.img_extract/long_fastlink: -------------------------------------------------------------------------------- 1 | aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaҾ -------------------------------------------------------------------------------- /tests/integration/filesystem/fat/fat12/__input__/cherry.fat12: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:968222d707637f778dadff97d823164f8749b6c3f248f0bf36ee995c275aa05f 3 | size 65536 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/fat/fat12/__input__/cherry.truncated.fat12: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:632a82fc848e721ac4d294dfea8dd00360202d2bc18588f491dc01642fb1b392 3 | size 32768 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/fat/fat16/__input__/banana.fat16: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3617997297a9588c7ec140e4b1ce05b222d0429372395586534d3ab4a52cf2af 3 | size 65536 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/fat/fat16/__input__/banana.truncated.fat16: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b435f5b6ac50c630b6bfea63cf3c29d8c6f992b37c64f7b07ad971610355fec 3 | size 32768 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/fat/fat32/__input__/banana.fat32: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dae1517af329c11a38014e1c574d985d393591921a8833f1f2ea9828cb6b9150 3 | size 34603008 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/fat/fat32/__input__/banana.truncated.fat32: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c9c9e5556f2cdf9a0efedd7330b778a2000b1713cb53275c3c4ce5b99e134dd 3 | size 2097152 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/iso9660/__input__/fruits.iso: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:893f567030ad7376a9238c36377195d1898ce2714836a37a276494a6bb8f9c31 3 | size 360448 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/iso9660/__output__/fruits.iso_extract/APPLE.TXT: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0 3 | size 6 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/iso9660/__output__/fruits.iso_extract/CHERRY.TXT: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86baf3529da550a44b0681ffa031b6b676e620e9e06dc5ac1119d0cd21cbcf55 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/jffs2/jffs2_new/__input__/fruits.new.be.lzo.jffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0bcb08d0b067c9bd86b8e3836858af5e3ef7047b6b13420739b6e23a48150de2 3 | size 400 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/jffs2/jffs2_new/__input__/fruits.new.le.lzo.jffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0fbb0c52d2b6b37c491bdd9c708eb4872d5cc0568eeed91bfdf9b1491a486bdd 3 | size 400 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/jffs2/jffs2_old/__input__/fruits.old.be.lzo.jffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63c9508ba3e12cf17aeba103503219f169d85ffffa9e857b2ab75cac1f50f7c7 3 | size 400 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/jffs2/jffs2_old/__input__/fruits.old.le.lzo.jffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37b8c26ba08848f8f4c39550578f19c62b9da7a0bd026c8d0ac4cafa198ac1a9 3 | size 400 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/ntfs/__input__/fruits.ntfs: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98cb3019e343694f14717accc350b7fc51869789c44b38d07be8f8cefde10ce1 3 | size 1228800 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/ntfs/__output__/fruits.ntfs_extract/0-512.unknown: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52628db8742df7585080224c026544c35fe1648daf98845159f827641a754e42 3 | size 512 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__input__/fruits.romfs: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9839fae63043a9a97581761a35053a5a606be3855201e09a24637b7383070959 3 | size 5120 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/dir_1/hosts: -------------------------------------------------------------------------------- 1 | ../hosts -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/dir_1/passwd: -------------------------------------------------------------------------------- 1 | ../etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/dir_2/hosts: -------------------------------------------------------------------------------- 1 | ../hosts -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/dir_2/passwd: -------------------------------------------------------------------------------- 1 | ../etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/dir_3/hosts: -------------------------------------------------------------------------------- 1 | ../hosts -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/dir_3/passwd: -------------------------------------------------------------------------------- 1 | ../etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/dir_4/hosts: -------------------------------------------------------------------------------- 1 | ../hosts -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/dir_4/passwd: -------------------------------------------------------------------------------- 1 | ../etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/dir_5/hosts: -------------------------------------------------------------------------------- 1 | ../hosts -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/dir_5/passwd: -------------------------------------------------------------------------------- 1 | ../etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_1_1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:becb10d47cf52d60032f2929467ba38df39b2e1c02f48c5396dfc575bb5ca1eb 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_1_2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37a29c8a7653e125fc0126d165b627731523e1c467a7ee23fde9d91f6f5171c8 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_1_3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4688c417cd3449051a7cee4691ec454f4ae154f3de536d71cd585716a0a09954 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_1_4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7265616ad9a7b222b97966bc6110dcd7c4b8806f3a1424f216b26c15f26fb22 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_1_5: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83b0d78551a7600c6bac8dfaf7bf9819d135b8852ff84a8bf8bcce0018815316 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_2_1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:78cac369aa92a9cfd5af16a3380602e3b2af66fe83eef6bac8d71c19e08bd900 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_2_2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0bdd7feb316d15bca8c41b78a6a81773300b6515bc548c087dc380b47ce8e381 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_2_3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a146526bb4bbe36e3e186599d8653d48683486c2854a3dceafdd92cac6398cd 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_2_4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dfdecb8aa7d23913bcf47bddb9d66e6b7de1a720df24979038419f8060d87cd2 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_2_5: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9863242af0e6cf5f0d8fd8e36f12bf7a60358485b60b6f0a5628e27f5240a09 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_3_1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c9d5497abe2cae2fdce09012831472c7c8ffcfd9cff904a56be7a39e2a93d90 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_3_2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14a56bd0a542a8b8a957bae31f9622a6a4a06c0de4e5cf3252147a576547a060 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_3_3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bb81d4501597dfab76f70ca849502f9a35034aa2c1d8fb8a39fa66c31bd6702 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_3_4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2bbb0e7688de4b232efaa6ba60382fd2caad8ab88452e1146cca7ec3f6835308 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_3_5: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd0d7557064258dd117e985768074403e2e6a9f0f49bfea2562a062ae4e1a77f 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_4_1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b85ac35d548685065dd22e8b66d9df1a786f34fb798e74bb528251edf04933e2 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_4_2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:adcd05d6c0efaa6f956e63ad8fe1dea924460ae0689750bda2398cef61f8a90b 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_4_3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1b753f28f66f2741a120bbe35d9f222c68c0070a6e13211c983b5b88085815d 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_4_4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be2efe425804d50d0ace593b5324a769ba6bcd146da717a268480aaae3078b1d 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_4_5: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:171efd9853ab67874d4f70f986ed8f2ff6aee0952edc4ae074d60587818ff51c 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_5_1: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a73ae48433e2beb1749e9f0707a7f374b6b4b21e6974286b2ed3a1b7f8979717 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_5_2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6af8fdb03c9758c0f98ffab425e350628b00f47dac8b88d8c789167045221742 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_5_3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31383ca4754c6c21489de7748d45ded38f7fda9f3efe69a5f7d0382715e796d9 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_5_4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:097ef50924cb6d6fa2a5bfc05b6506424af7c60fc17364c10a7e1646a1f54f4c 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/hlink_5_5: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d8b0ad48d185cbebc586554edb091480bae29d74d2d67b6ab0fb1ade0ca6e17 3 | size 7 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_1_1: -------------------------------------------------------------------------------- 1 | dir_1/file_1.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_1_2: -------------------------------------------------------------------------------- 1 | dir_1/file_2.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_1_3: -------------------------------------------------------------------------------- 1 | dir_1/file_3.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_1_4: -------------------------------------------------------------------------------- 1 | dir_1/file_4.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_1_5: -------------------------------------------------------------------------------- 1 | dir_1/file_5.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_2_1: -------------------------------------------------------------------------------- 1 | dir_2/file_1.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_2_2: -------------------------------------------------------------------------------- 1 | dir_2/file_2.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_2_3: -------------------------------------------------------------------------------- 1 | dir_2/file_3.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_2_4: -------------------------------------------------------------------------------- 1 | dir_2/file_4.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_2_5: -------------------------------------------------------------------------------- 1 | dir_2/file_5.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_3_1: -------------------------------------------------------------------------------- 1 | dir_3/file_1.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_3_2: -------------------------------------------------------------------------------- 1 | dir_3/file_2.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_3_3: -------------------------------------------------------------------------------- 1 | dir_3/file_3.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_3_4: -------------------------------------------------------------------------------- 1 | dir_3/file_4.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_3_5: -------------------------------------------------------------------------------- 1 | dir_3/file_5.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_4_1: -------------------------------------------------------------------------------- 1 | dir_4/file_1.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_4_2: -------------------------------------------------------------------------------- 1 | dir_4/file_2.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_4_3: -------------------------------------------------------------------------------- 1 | dir_4/file_3.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_4_4: -------------------------------------------------------------------------------- 1 | dir_4/file_4.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_4_5: -------------------------------------------------------------------------------- 1 | dir_4/file_5.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_5_1: -------------------------------------------------------------------------------- 1 | dir_5/file_1.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_5_2: -------------------------------------------------------------------------------- 1 | dir_5/file_2.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_5_3: -------------------------------------------------------------------------------- 1 | dir_5/file_3.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_5_4: -------------------------------------------------------------------------------- 1 | dir_5/file_4.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/romfs/__output__/fruits.romfs_extract/slink_5_5: -------------------------------------------------------------------------------- 1 | dir_5/file_5.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/squashfs/squashfs_v4_le/__output__/bad_symlink.squashfs_extract/badlink: -------------------------------------------------------------------------------- 1 | etc/ssl/private/ssl-cert-snakeoil.key -------------------------------------------------------------------------------- /tests/integration/filesystem/squashfs/squashfs_v4_le/__output__/squashfs_v4.specfile.bin_extract/file.symlink: -------------------------------------------------------------------------------- 1 | hello.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/ubi/ubi/__input__/fruits.ubi: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4cd14263eb03cb63d75b97ea376f4c903c55657351dfafb85ed5c2cb69925573 3 | size 4096 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/ubi/ubi/__input__/orange.ubi.truncated.img: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8dbf22935bc3b694e896c2a2ae922d76672c26a7a387449a475d63bfd087afe9 3 | size 3430400 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/ubi/ubifs/__input__/banana.ubifs: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:87b05f653d717736b766a9cca10b75656cc14c1d9442c61fdc514cc275a8a634 3 | size 168960 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/fruits.dir.be.yffs: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b07b888a645dd30b0891d1147505fb35a27f1df52b3710c40dc7d9ed418e60c9 3 | size 4224 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/fruits.dir.le.yffs: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:30ac92e89b1bc5a9260ca69093093537574e14a4dcb87a79259538762b9f8060 3 | size 4224 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/links.yaffs: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93e487e7ed1a160db8c599cc1fdca058baa6024dd27c329f1d55f823bee9215b 3 | size 4752 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/malformed.2048.16.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a875b71da819a189dd9c21386851cb95095931b549ce3181051ecd3f4d2afa2 3 | size 39217 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/malformed.2048.16.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e41e810a4bf581cdc0780215b92f7faaf913a2ba56e82d11cfdad6455bc35c5 3 | size 39217 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/malformed.dir.be.yffs: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b1db9c2d0731aeb6390a14df2a3c1b1821e08c5c61f7e352bfd0fbbfae47743 3 | size 4225 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/malformed.dir.le.yffs: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8216a1fcadd352f4aa7b17e525b3a3bbb9c6968f92d7e6678914351ad751cded 3 | size 4225 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.128.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37b2e2ddd254d9dd1488174e6b2085d0711839d86460858c3ccb249c8ac1e17a 3 | size 313728 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.128.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80aba72db44d5457463ef7caa8fa61fc80503d79778b6bf7e1b1984375c57e1e 3 | size 313728 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.128.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ddb18d6dd3dfee7338be48c655cb9854a872d5c2e9d851447a2685bc1ad28d5b 3 | size 313728 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.16.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:edad3639aaa45f143938a07d5910e7cb706a0b3872cff879aa9646e99d5af61a 3 | size 311600 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.16.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b0f9e315affdb2da425b8724fbf5be51a954ad738c9d639915337d134171a37 3 | size 311600 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.16.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:572c45d619a2d70bc04e0f6eff2065b9c8cf7e2260515af9862f67477ff9e913 3 | size 311600 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.256.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8798ba59475bd32c1186da6547da5928a7a44187c5c0b8d55bd713a24b5b2450 3 | size 316160 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.256.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c5079c734d3a38773c5e8f662978e90be8cd7e5939e4eb039469fc952dae274 3 | size 316160 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.256.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93cd42b03a2bc9a3d5bfab414fb92fe45b075f611b17a9208c02c1ac13f6f957 3 | size 316160 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.32.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6026bb9dd446534626197cd41b8c9dbc3041b03894a5aba9baf191bc52d6a908 3 | size 311904 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.32.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:490e6c087f04731d6d624ba902d02ef567bc58a871b12f62967c817f1bc2fb9b 3 | size 311904 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.32.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b23a7a4a8c03a5d88b34335fbf453737725bd7d25a1492245238ff98ec22bc3 3 | size 311904 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.512.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae297f641cd8b38243bf57fc515b8a938c1a258107418b52d69869589040df2a 3 | size 321024 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.512.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da80a30ac2377e7de73df7ebc0b4c8fe93b3192a6fece8a9d49a8378f5ca3c6a 3 | size 321024 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.512.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b8968001388ac7e7fef241640b045a6576eabc804499c046c8313407752e5eb 3 | size 321024 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.64.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19f0149b28f893f7281b025ea308771b5c508268163358ce41d6e48428aa09c5 3 | size 312512 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.64.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e6b4c098c052846e047c4b6e916c1adbaf357714df156b9141fb9df5feaf5ea 3 | size 312512 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.16384.64.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2022b1df8d4989a05f331caa21ce21ddd7f7062a2c6c33f72fde0e46cdbf28b3 3 | size 312512 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.128.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ee2c6a087ad582b0887b73300b5aee609a7ddb5848476a6b7fe0b47e98bdcb2 3 | size 41344 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.128.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56ec880813f952773212f65af0c81cd2feb71c46519250a7e872019c79e23360 3 | size 41344 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.128.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:767a2dccfda38d9dc1d76f5fd98a94515ffe0e94479462ff7e39092d26ac678a 3 | size 41344 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.16.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:570588466ce469f923dd0b8626a9ce3c295d8e7de9ef005d160b8dd4eba948df 3 | size 39216 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.16.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4e3569c67fdfaf4212e62812dba509886c2d2df25069fc5dbf336c6916d80f4 3 | size 39216 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.16.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66fc2c26bc6d22fa5f516c672470b4ddc3e26d6d60027b7ea2f8b52d13379f63 3 | size 39216 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.256.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d69eccb426bc963804c3093269e0c28e005fb4a86a70f59093e0e31f55c6e84 3 | size 43776 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.256.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2015e40e00b3e367ca845fc9c9fab5377c57c19a4c655d1e4fdc95af644a4640 3 | size 43776 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.256.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15acd171cbc59033972876c1f4c160f5a572700a25b6b74b81c4fdece0e975ad 3 | size 43776 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.32.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:257d75037df2b15472a020d51cf0d7494da439d94ac73fe821b4a36885fcf066 3 | size 39520 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.32.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9da5c45105db35cac389f956a54229b765d204f483ecd5c8bde88f9d58a096da 3 | size 39520 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.32.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8b11739fcb73eb0a39601630ba30a5d38119463d02d5774f21db0f2cb806bfc 3 | size 39520 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.512.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0366d480179b7162dfc0777ab03d8ad4d8332119682118c0860585c8f75e3120 3 | size 48640 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.512.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57735574fcac691a697d6d497ad411ac160a64538c332635bf02c30ef2eb1bbd 3 | size 48640 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.512.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:972802d92c640d614ed0e82ed04b1d923930f1d6301226a1d4ab1c99e971ae71 3 | size 48640 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.64.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49835da3cb97982770a7e8ded0b8abb027b0f5b5dfa8f72dc5bb29e63aab8f8b 3 | size 40128 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.64.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:209c573f89c2ac0be0355cd4d20ec29e1644a87ef2e0e6d432fabf681aab67be 3 | size 40128 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.2048.64.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa74cd0043b73b485b2b4be67577895af666a8972104411123a025eb1ea809df 3 | size 40128 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.128.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3e93fb6741dee22915c97e1bb3a776957fc12c790faa4ecbbbccf09085cb084 3 | size 80256 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.128.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83496a443d85bf9bacacc652d66ec233746395e5af5b212ec714cdec058d8167 3 | size 80256 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.128.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27ba43c2132fae00157408675bea3b034ec2add8b422eb10640f3cd3d9353683 3 | size 80256 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.16.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1302c874997345e6fdf940381c49f32ba2686d553d792e763562bfd2e092c19 3 | size 78128 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.16.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67c0e3442489b3a5b04e38ca59431501d1fd836936ab513b15c60ae83c40ec3b 3 | size 78128 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.16.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9fb9f7898e90a3aa3f4951412882a846e47cd58b74aa8b0e3eae40c84e64a110 3 | size 78128 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.256.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8971557f2e42ad6d532a45d47a5d0a443401612505c4b428d22ac0faacced11b 3 | size 82688 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.256.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f28ab782e55c0303559ba4c1556c5a1ebb339b9d08aa5abe7a969151b818d54 3 | size 82688 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.256.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f4706e3005d463c277704eefd960487f4f7f834d720ef730a365b240b33eac8 3 | size 82688 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.32.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e517217581974d87a63adaf759e1d80b09d992a96b05bb48c776ce681df4d56a 3 | size 78432 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.32.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6deadb16f44b7895c292b5c8e5b26942d20740d3179911f5495fe0517e27cc94 3 | size 78432 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.32.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:410a8fbde816c10fec77fc419e5d7d87197824ac8a95d54b7c3f12e8c7a35288 3 | size 78432 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.512.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c90c2c9d1d35a9a15d0fb1109d6191babb14ad6736293d277b4974392f42c4d8 3 | size 87552 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.512.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0997519cc0088fe9d15971408df10454c693dfc1e54704f8be0d44265d47d09 3 | size 87552 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.512.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:722e4e98f3e5ec446593ac7beacb2c0b98109c7eca77530625e457b94223d60e 3 | size 87552 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.64.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fbc555d00e5b37e2262cbc189c60f61469267164a3cda4e91924bd89b2970eb4 3 | size 79040 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.64.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:584d4ff32d4b2a0952b079e6d78b7cb3d3f6957e02d3033a26d038d5e2d1e1ec 3 | size 79040 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.4096.64.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:777ee244ab86111f5f0fbb1bfb01814e1d8f12aa77e4c4f1f098e2cdb4e3d1a0 3 | size 79040 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.128.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c27e9d78acbf91d5912d40afcdd4083824c15d8d5b944a8f0b66324ad077d31d 3 | size 158080 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.128.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecbce4c47ae04615703a9067b1b3595b9c636f50adbceffeb2e97d2c46646402 3 | size 158080 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.128.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84068023b8a69eda5a31a5b21b54a233ccf68abd20267371ed38d80a8913f502 3 | size 158080 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.16.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd5df5603d79f28ef32a758aa591a7bece2c44dc716470759d7e85300e9e718a 3 | size 155952 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.16.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7cd4ca67872e4d07da51ebc2e681265e86f99d78dbd61c1c708c73541092e3bb 3 | size 155952 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.16.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03d98834d94ca1520bc09b6a08c57447e583c58f49012702d6b5d7af7d48f959 3 | size 155952 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.256.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c1e71669be826b3b13e051c3cb5d672667a8019e1aefa44de9325715a4c1d65 3 | size 160512 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.256.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46e3c2571ab1bb258cdbccd28aeac55077d2baf77b52d12c3614d9ac62134746 3 | size 160512 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.256.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:71e613426b9ce56f8c4bb6476849ff9f67f15679339d6f11e71a498cff31d069 3 | size 160512 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.32.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7462c4ed0df4d00b9d0f9013dcf93d7e35b9ea9139c51b7dc6f3590792fb1180 3 | size 156256 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.32.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c93555b277a1efe2570c10e75486cfe6b87a57abb2a5134d2c00e77f7045a54 3 | size 156256 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.32.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:500075466dd34d8133084e184bf98b5216a2c45770d3d0571b9a4e5b453e5151 3 | size 156256 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.512.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b6ebd41fe4302eb58602e6711211d7593638090e63bddf08248cd68928d563e 3 | size 165376 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.512.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:917ffa1bc13a95821b4760ceebeacc2464dd212f79542b13f3d2c46f75e80127 3 | size 165376 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.512.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:40151093a815ee54039a302761726088d61768207280e453cc807608d394f4f6 3 | size 165376 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.64.ecc.be.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc5d0fb8b6a7adeee0bf8aab8710ec6f685a31c0c4e6528a26d0585205377333 3 | size 156864 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.64.ecc.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9dacbf95d0d333e5545d0e734a4d1cf8a49bb3b107e465cce6def3684d79df39 3 | size 156864 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__input__/sample.8192.64.le.yaffs2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:826ffe63c3387bcc6427e9890efb5db403c426f7a3af3bd37e41b69de4686925 3 | size 156864 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/links.yaffs_extract/dir/hardlink: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:434728a410a78f56fc1b5899c3593436e61ab0c731e9072d95e96db290205e53 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/links.yaffs_extract/dir/symlink: -------------------------------------------------------------------------------- 1 | ../file -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/links.yaffs_extract/file: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:434728a410a78f56fc1b5899c3593436e61ab0c731e9072d95e96db290205e53 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/links.yaffs_extract/hardlink: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:434728a410a78f56fc1b5899c3593436e61ab0c731e9072d95e96db290205e53 3 | size 8 4 | -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/links.yaffs_extract/symlink: -------------------------------------------------------------------------------- 1 | file -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/links.yaffs_extract/symlink2: -------------------------------------------------------------------------------- 1 | dir/hardlink -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/malformed.2048.16.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/malformed.2048.16.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/malformed.2048.16.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/malformed.2048.16.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.128.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.128.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.128.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.128.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.128.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.128.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.16.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.16.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.16.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.16.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.16.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.16.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.256.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.256.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.256.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.256.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.256.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.256.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.32.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.32.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.32.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.32.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.32.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.32.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.512.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.512.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.512.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.512.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.512.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.512.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.64.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.64.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.64.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.64.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.64.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.16384.64.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.128.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.128.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.128.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.128.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.128.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.128.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.16.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.16.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.16.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.16.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.16.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.16.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.256.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.256.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.256.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.256.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.256.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.256.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.32.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.32.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.32.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.32.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.32.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.32.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.512.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.512.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.512.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.512.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.512.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.512.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.64.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.64.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.64.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.64.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.64.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.2048.64.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.128.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.128.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.128.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.128.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.128.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.128.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.16.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.16.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.16.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.16.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.16.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.16.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.256.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.256.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.256.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.256.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.256.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.256.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.32.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.32.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.32.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.32.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.32.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.32.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.512.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.512.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.512.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.512.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.512.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.512.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.64.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.64.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.64.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.64.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.64.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.4096.64.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.128.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.128.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.128.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.128.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.128.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.128.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.16.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.16.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.16.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.16.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.16.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.16.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.256.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.256.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.256.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.256.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.256.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.256.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.32.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.32.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.32.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.32.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.32.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.32.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.512.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.512.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.512.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.512.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.512.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.512.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.64.ecc.be.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.64.ecc.be.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.64.ecc.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.64.ecc.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.64.le.yaffs2_extract/passwd: -------------------------------------------------------------------------------- 1 | etc/passwd -------------------------------------------------------------------------------- /tests/integration/filesystem/yaffs/__output__/sample.8192.64.le.yaffs2_extract/vegetables/tomato.txt: -------------------------------------------------------------------------------- 1 | ../fruits/tomato.txt -------------------------------------------------------------------------------- /tests/plugins/__assets__/directory_of_plugin_files/first.py: -------------------------------------------------------------------------------- 1 | from unblob.plugins import hookimpl 2 | 3 | 4 | @hookimpl 5 | def hook_callback(): 6 | return "It Works" 7 | -------------------------------------------------------------------------------- /tests/plugins/__assets__/directory_of_plugin_files/second.py: -------------------------------------------------------------------------------- 1 | from unblob.plugins import hookimpl 2 | 3 | 4 | @hookimpl 5 | def hook_callback(): 6 | return "It Works Too" 7 | -------------------------------------------------------------------------------- /tests/plugins/__assets__/directory_of_plugin_packages/first/__init__.py: -------------------------------------------------------------------------------- 1 | from .module import hook_callback as hook_callback 2 | -------------------------------------------------------------------------------- /tests/plugins/__assets__/directory_of_plugin_packages/first/module.py: -------------------------------------------------------------------------------- 1 | from unblob.plugins import hookimpl 2 | 3 | 4 | @hookimpl 5 | def hook_callback(): 6 | return "It Works" 7 | -------------------------------------------------------------------------------- /tests/plugins/__assets__/directory_of_plugin_packages/second/__init__.py: -------------------------------------------------------------------------------- 1 | from unblob.plugins import hookimpl 2 | 3 | 4 | @hookimpl 5 | def hook_callback(): 6 | return "It Works Too" 7 | --------------------------------------------------------------------------------