lemmeknow
can be used for identifying mysterious text or to analyze hard-coded strings from captured network packets, malwares, or just about anything.
Pass TEXT
or /PATH/TO/FILE
as argument. If you want output in JSON format, then pass -j / --json
flag.
lemmeknow [OPTIONS] <TEXT/FILENAME>
e.g. lemmeknow UC11L3JDgDQMyH8iolKkVZ4w --json
Run
lemmeknow --help
for all options!
You can directly download executable and run it. No need for any installation.
Check releases here.
cargo
🦀cargo install lemmeknow
Clone repository
git clone https://github.com/swanandx/lemmeknow && cd lemmeknow
then build and run
- cargo run
e.g. cargo run -- <TEXT/FILENAME> [OPTIONS]
OR
cargo build --release
cd target/release/
./lemmeknow
e.g. ./lemmeknow <TEXT/FILENAME> [OPTIONS]
Want to use this as a crate in your project? or make a web api for it? No worries! Just add a entry in your Cargo.toml
```toml [dependencies] lemmeknow = "0.3.0"
```
OR
```toml [dependencies] lemmeknow = { git = "https://github.com/swanandx/lemmeknow" }
```
Refer to documentation for more info.
You can contribute by adding new regex, improving current regex, improving code performance or fixing minor bugs! Just open a issue or submit a PR.
This project is inspired by PyWhat! Thanks to developer of it for the awesome idea <3 .