Skip to content

Commit 05f8032

Browse files
authored
Feature/setup spellbook (#94)
Revision 0.33.700
1 parent 0dcd32d commit 05f8032

File tree

12 files changed

+31
-7
lines changed

12 files changed

+31
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
### WITCHCRAFT
2121

22-
WITCHCRAFT 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.
22+
WITCHCRAFT is a toolkit 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.
2323

2424
### Visit the wiki:
2525

docs/documentation/changelog.md

+19
Original file line numberDiff line numberDiff line change
@@ -494,9 +494,28 @@ Date: Thu Nov 7 18:06:53 -03 2024
494494

495495
Revision 0.20.56
496496

497+
Date: Thu Nov 7 18:06:53 -03 2024
498+
497499
- Added build-dist.sh to build a binary a compiled version of witchcraft
498500
- Fixed github CI
499501
- Fixed missing file errors
500502
- Fixed snap builds
501503
- Fixed docker files
502504
- Fixed build.sh
505+
506+
Version 0.33.666
507+
508+
Date: Mon Nov 18 14:30:19 2024 -0300
509+
510+
- Final codebase version
511+
- Splited spellbook in basic and full versions
512+
- Created a new build and build-dist script
513+
514+
Revision 0.33.700
515+
516+
Date: Fri Nov 29 10:50:24 AM -03 2024
517+
518+
- Added spellbook installer
519+
- Updated spellbook
520+
- Updated version
521+
- Updated readme/consts/snapfile

docs/documentation/media_kit/1.jpg

-123 KB
Binary file not shown.

docs/documentation/media_kit/2.jpg

-157 KB
Binary file not shown.

docs/documentation/media_kit/3.jpg

-199 KB
Binary file not shown.

docs/documentation/media_kit/4.jpg

-117 KB
Binary file not shown.
1.18 MB
Loading
Binary file not shown.

snapcraft.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: witchcraft-cybersecurity
2-
version: "0.33.666"
2+
version: "0.33.700"
33
summary: Your OPSEC companion!
4-
icon: "witch_docs/media_kit/logo-1.png"
54
grade: stable
65
confinement: strict
76
base: core24
@@ -12,7 +11,7 @@ source-code: https://github.com/cosmic-zip/witchcraft
1211
description: |
1312
**WITCHCRAFT**
1413
15-
WITCHCRAFT 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.
14+
WITCHCRAFT is a toolkit 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.
1615
1716
**Visit the wiki:**
1817
@@ -110,6 +109,7 @@ parts:
110109
- libatomic1
111110
- libclang1-18
112111
- libatm1t64
112+
- git
113113

114114
build-packages:
115115
- clang

spellbook/archive/dataset/db.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,12 @@
343343
{
344344
"name": "self.setup",
345345
"description": "Setup and install witch_craft",
346-
"command": "sudo apt install -y nmap whois dirb dnsenum libc-bin iproute2 xxd iptables coreutils wget curl dnsutils traceroute openssl openssh-server xattr libimage-exiftool-perl tor foremost pkg-config libssl-dev steghide libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev 7zip libayatana-appindicator3-dev librsvg2-dev chromium"
346+
"command": "sudo apt install -y nmap whois dirb dnsenum libc-bin iproute2 xxd iptables coreutils wget curl dnsutils traceroute openssl openssh-server xattr libimage-exiftool-perl tor foremost pkg-config libssl-dev steghide libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev 7zip libayatana-appindicator3-dev librsvg2-dev chromium-browser git"
347+
},
348+
{
349+
"name": "self.spellbook",
350+
"description": "Setup and install witch_craft",
351+
"command": "git clone https://github.com/cosmic-zip/witchcraft-wordlists /var/spellbook/"
347352
},
348353
{
349354
"name": "server.eviltwin",

witchcraft/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "witchcraft"
3-
version = "0.33.666"
3+
version = "0.33.700"
44
edition = "2021"
55
readme = "README.md"
66
homepage = "https://cosmic-zip.github.io/wiki/wiki.html"

witchcraft/src/core/consts.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pub const SPLIT_II: &str = "--";
33
pub const SPLIT_I: &str = "-";
44
pub const DBPATH: &str = "dataset/db.json";
55
pub const WITCH_SPELLS_ROOT_DIR: &str = "/var/spellbook/archive/";
6-
pub const VERSION: &str = "Version: 0.33.666 by cosmic-zip";
6+
pub const VERSION: &str = "Version: 0.33.700 by cosmic-zip";
77

88
pub const MAGIC_DOCS: &[(&str, &str)] = &[
99
("account", "Generic arguments for account info or token"),

0 commit comments

Comments
 (0)