diff --git a/README.md b/README.md index 5e37e91..2b8eed4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ ### WITCH_CRAFT -WITCH_CRAFT is a versatile task automation software designed to serve as the foundation for various cybersecurity modules. Whether you're diving into forensic research, conducting OSINT (Open Source Intelligence), running scans, setting up backup and copying workflows, or even performing intrusion tests on applications and APIs, WITCH_CRAFT aims to be your go-to platform. +WITCH_CRAFT is a task automation tool for cybersecurity. It handles forensic research, OSINT, scanning, backups, data copying, and penetration testing for apps and APIs, serving as a flexible platform for diverse security tasks. ### Visit the wiki: @@ -33,20 +33,20 @@ their final versions are merged into the main project. The witch_spells package also provide: -- **Advanced osint search in over 1000 sources** -- **Default Credentials Database** -- **IP Lookup** -- **A Set of Social Media Pages for Evil Twin Attacks** -- **General Wordlists for Directories and Subdomains** -- **MAC Address Vendor Database** -- **Usernames Wordlist** -- **XSS Wordlist** -- **And more, UwU!** +- **Advanced osint search in over 1000 sources** +- **Default Credentials Database** +- **IP Lookup** +- **A Set of Social Media Pages for Evil Twin Attacks** +- **General Wordlists for Directories and Subdomains** +- **MAC Address Vendor Database** +- **Usernames Wordlist** +- **XSS Wordlist** +- **And more, UwU!** -- **Unique Wordlists**: +- **Unique Wordlists**: - - _Moth_ - - _Ladybug_ + - _Moth_ + - _Ladybug_ ### Install using snap @@ -128,9 +128,9 @@ The witch_craft project is extensible through static files and Rust code. Moreov ```json { - "description": "Securely deletes and overwrites the contents of a device seven times", - "name": "nuke.hd", - "command": "shred -vzn 7 @@device" + "description": "Securely deletes and overwrites the contents of a device seven times", + "name": "nuke.hd", + "command": "shred -vzn 7 @@device" } ``` diff --git a/snapcraft.yaml b/snapcraft.yaml index b763aec..baf53f6 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,5 +1,5 @@ name: witchcraft-cybersecurity -version: "0.20.21" +version: "0.20.25" summary: Your OPSEC companion! icon: "witch_docs/media_kit/logo-1.png" grade: stable @@ -12,7 +12,7 @@ source-code: https://github.com/cosmic-zip/witch_craft description: | **WITCH_CRAFT** - WITCH_CRAFT is a versatile task automation software designed to serve as the foundation for various cybersecurity modules. Whether you're diving into forensic research, conducting OSINT (Open Source Intelligence), running scans, setting up backup and copying workflows, or even performing intrusion tests on applications and APIs, WITCH_CRAFT aims to be your go-to platform. + WITCH_CRAFT is a task automation tool for cybersecurity. It handles forensic research, OSINT, scanning, backups, data copying, and penetration testing for apps and APIs, serving as a flexible platform for diverse security tasks. **Visit the wiki:** diff --git a/witch_craft/Cargo.toml b/witch_craft/Cargo.toml index ce50646..a94c48d 100644 --- a/witch_craft/Cargo.toml +++ b/witch_craft/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "witch_craft" -version = "0.20.21" +version = "0.20.25" edition = "2021" readme = "README.md" homepage = "https://cosmic-zip.github.io/wiki/wiki.html" diff --git a/witch_craft/src/core/consts.rs b/witch_craft/src/core/consts.rs index 1374466..ce8f0b6 100644 --- a/witch_craft/src/core/consts.rs +++ b/witch_craft/src/core/consts.rs @@ -3,7 +3,7 @@ pub const SPLIT_II: &str = "--"; pub const SPLIT_I: &str = "-"; pub const DBPATH: &str = "dataset/db.json"; pub const WITCH_SPELLS_ROOT_DIR: &str = "/var/witch_spells/archive"; -pub const VERSION: &str = "Version: 0.20.21 by cosmic-zip"; +pub const VERSION: &str = "Version: 0.20.25 by cosmic-zip"; pub const MAGIC_DOCS: &[(&str, &str)] = &[ ("account", "Generic arguments for account info or token"), @@ -73,11 +73,10 @@ SYNOPSIS DESCRIPTION - WITCH_CRAFT is a versatile task automation software designed to - serve as the foundation for various cyber security modules. It - provides capabilities for tasks such as forensic research, OSINT - (Open Source Intelligence), scanning, backup and copying, intrusion - testing of applications and APIs, and more. + WITCH_CRAFT is a task automation tool for cybersecurity. It handles + forensic research, OSINT, scanning, backups, data copying, and + penetration testing for apps and APIs, serving as a flexible + platform for diverse security tasks. PLUGINS The Witch_Craft project is extensible through static files and Rust