mirror of
https://github.com/Momoko-Ayase/Senbei.git
synced 2026-09-19 03:57:59 -04:00
Adds the Android protection-scheme pipeline: hollowed ELF64/AArch64 libraries are restored statically (stage-1/stage-2 module extraction, container decode, dynamic-linker table rebuild), with app-package (.apk/.apks/.xapk) container handling, cross-source content dedup, and il2cpp metadata support for the Android variants (seeded RID permutation; embedded XOR-wrapped blob extraction). The single senbei CLI now routes single .so files, packages, and folders by content; outputs follow the existing .unpack-infix naming under <root>/unpack or --out. PE behavior is unchanged (35/35 goldens).
31 lines
781 B
TOML
31 lines
781 B
TOML
[package]
|
|
name = "senbei-io"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Filesystem, scanning, logging, and CLI orchestration for Senbei"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
flate2.workspace = true
|
|
indicatif.workspace = true
|
|
owo-colors.workspace = true
|
|
senbei-android-elf.workspace = true
|
|
senbei-android-engine.workspace = true
|
|
senbei-android-metadata.workspace = true
|
|
senbei-metadata.workspace = true
|
|
senbei-pe.workspace = true
|
|
sha2.workspace = true
|
|
tempfile.workspace = true
|
|
walkdir.workspace = true
|
|
zip.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows.workspace = true
|
|
|
|
[target.'cfg(all(not(windows), not(target_arch = "wasm32")))'.dependencies]
|
|
libc.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|