Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 23 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ members = [
"collector",
"zip",
"filesystem",
"regedit"
"regedit",
"half-io"
]

[profile.release]
Expand Down
3 changes: 2 additions & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<a href="https://github.com/sqlerrorthing/ShadowSniff/network/members"><img src="https://img.shields.io/github/forks/sqlerrorthing/ShadowSniff?style=for-the-badge&labelColor=%239f0000&color=%23D73332" alt="Forks"></a>
<a href="https://github.com/sqlerrorthing/ShadowSniff/stargazers"><img src="https://img.shields.io/github/stars/sqlerrorthing/ShadowSniff?style=for-the-badge&labelColor=%239f0000&color=%23D73332" alt="Stargazers"></a>
<a href="https://github.com/sqlerrorthing/ShadowSniff/issues"><img src="https://img.shields.io/github/issues/sqlerrorthing/ShadowSniff?style=for-the-badge&labelColor=%239f0000&color=%23D73332" alt="Issues"></a>
<img src="https://img.shields.io/badge/STUB%20SIZE-700KB-red?style=for-the-badge&labelColor=%239f0000&color=%23D73332" alt="Stub size">
<img src="https://img.shields.io/badge/STUB%20SIZE-200KB-red?style=for-the-badge&labelColor=%239f0000&color=%23D73332" alt="Stub size">
<a href="https://github.com/sqlerrorthing/ShadowSniff/blob/master/LICENSE"><img src="https://img.shields.io/github/license/sqlerrorthing/ShadowSniff?style=for-the-badge&labelColor=%239f0000&color=%23D73332" alt="License"></a>
</div>
</div>
Expand Down Expand Up @@ -138,6 +138,7 @@ I’d like to thank everyone whose contributions helped shape this project — w

- [davimiku](https://github.com/davimiku/json_parser) — for a clean and efficient JSON parser implementation
- [CasualX](https://github.com/CasualX/obfstr) — for compile-time string obfuscation
- [geoffreycopin](https://github.com/geoffreycopin/rqlite) — for a sqlite3 raw reader

...and many others whose code, ideas, or techniques helped shape this project —
even if only through a single clever line of Rust.
Expand Down
9 changes: 5 additions & 4 deletions database/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ name = "database"
version = "0.1.0"
edition = "2024"

[build-dependencies]
cc = "1.0"

[dependencies]
filesystem = { path = "../filesystem" }
utils = { path = "../utils" }
obfstr = "0.4.4"
obfstr = "0.4.4"
anyhow = { version = "1.0.98", default-features = false }
half-io = { path = "../half-io" }
embedded-io = "0.6.1"
spin = "0.10.0"
72 changes: 0 additions & 72 deletions database/build.rs

This file was deleted.

Loading