From 8cd0a79e9c7ad21895ca122a376bf1bb716b8eec Mon Sep 17 00:00:00 2001
From: azazelm3dj3d <56496067+azazelm3dj3d@users.noreply.github.com>
Date: Thu, 2 Mar 2023 18:22:36 -0600
Subject: [PATCH] Cleanup
---
Cargo.toml | 6 +++---
LICENSE | 2 +-
README.md | 8 ++++----
catherine_install | 8 ++++----
server/public/err/404.html | 4 ++--
server/public/index.html | 4 ++--
src/catherine.rs | 8 ++++----
src/core/commands.rs | 4 ++--
src/core/mod.rs | 4 ++--
src/core/utils.rs | 4 ++--
src/core/x.rs | 4 ++--
src/main.rs | 4 ++--
src/meta.rs | 4 ++--
src/modules/mod.rs | 4 ++--
src/modules/rust_hex_dump.rs | 4 ++--
15 files changed, 36 insertions(+), 36 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index d780c60..249bbdb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,15 +2,15 @@
name = "catherine"
description = "Catherine is a blue team security framework with an extensible module collection, various types of cryptographic processes, hexadecimal dumping and aggregation, malicious domain detection, and real-time database analysis."
version = "0.4.1"
-authors = ["Azazel Labs"]
+authors = ["azazelm3dj3d"]
license = "BSD-2-Clause"
categories = ["cryptography", "command-line-utilities", "encoding"]
keywords = ["cybersecurity", "blueteam", "framework", "security", "defense"]
edition = "2021"
-repository = "https://github.com/azazellabs/catherine"
+repository = "https://github.com/azazelm3dj3d/catherine"
[dependencies]
-os_type = { git = "https://github.com/azazellabs/os_type", branch = "main", version = "2.6.1" }
+os_type = { git = "https://github.com/azazelm3dj3d/os_type", branch = "main", version = "2.6.1" }
chrono = "0.4"
colored = "2"
serde = "1.0"
diff --git a/LICENSE b/LICENSE
index 65c3c03..f2b9ab0 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
BSD 2-Clause License
-Copyright (c) 2022, Azazel Labs
+Copyright (c) 2022, azazelm3dj3d
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/README.md b/README.md
index be5a06b..dac4a19 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,12 @@
-
+
Catherine
-
+
Catherine is a blue team security framework with an extensible module collection, various types of cryptographic processes, hexadecimal dumping and aggregation, malicious domain detection, and real-time database analysis. Catherine is as simple as installing via Cargo or using `git` to pull down the source code and immediately start using the framework with `cargo run`. The modules for Catherine can be installed by using the `catherine_install` script or running the `install` command within the Catherine prompt. This requires sudo privileges.
@@ -20,7 +20,7 @@ cargo install catherine
Install via Cargo (with modules):
```bash
-curl https://raw.githubusercontent.com/azazellabs/catherine/main/catherine_install > catherine_install && chmod +x catherine_install
+curl https://raw.githubusercontent.com/azazelm3dj3d/catherine/main/catherine_install > catherine_install && chmod +x catherine_install
```
```bash
./catherine_install
@@ -39,4 +39,4 @@ Remove all Catherine files:
rm -r /opt/catherine
```
-If a bug or issue is found, please report it [here](https://github.com/azazellabs/catherine/issues).
\ No newline at end of file
+If a bug or issue is found, please report it [here](https://github.com/azazelm3dj3d/catherine/issues).
\ No newline at end of file
diff --git a/catherine_install b/catherine_install
index 23fb3b8..7202e36 100755
--- a/catherine_install
+++ b/catherine_install
@@ -1,7 +1,7 @@
#!/bin/bash
-# Project: Catherine Framework (https://github.com/azazellabs/catherine)
-# Author: Azazel Labs (https://github.com/azazellabs)
+# Project: Catherine Framework (https://github.com/azazelm3dj3d/catherine)
+# Author: azazelm3dj3d (https://github.com/azazelm3dj3d)
# License: BSD 2-Clause
# Created directory for Catherine
@@ -27,12 +27,12 @@ function install_modules() {
if [[ -d "$catherine_dir/modules" ]]; then
rm -r "$catherine_dir/modules"
- git clone https://github.com/azazellabs/catherine-modules.git
+ git clone https://github.com/azazelm3dj3d/catherine-modules.git
mv "$catherine_dir/catherine-modules" "$catherine_dir/modules"
echo "[+] Catherine modules installed successfully"
else
- git clone https://github.com/azazellabs/catherine-modules.git
+ git clone https://github.com/azazelm3dj3d/catherine-modules.git
mv "$catherine_dir/catherine-modules" "$catherine_dir/modules"
if [[ -d "$catherine_dir/modules" ]]; then
diff --git a/server/public/err/404.html b/server/public/err/404.html
index 4156632..675d1cc 100644
--- a/server/public/err/404.html
+++ b/server/public/err/404.html
@@ -1,6 +1,6 @@
diff --git a/server/public/index.html b/server/public/index.html
index 2813dd4..427493e 100644
--- a/server/public/index.html
+++ b/server/public/index.html
@@ -1,6 +1,6 @@
diff --git a/src/catherine.rs b/src/catherine.rs
index 6cd9ce2..6c0599f 100644
--- a/src/catherine.rs
+++ b/src/catherine.rs
@@ -1,6 +1,6 @@
/*
- Project: Catherine Framework (https://github.com/azazellabs/catherine)
- Author: Azazel Labs (https://github.com/azazellabs)
+ Project: Catherine Framework (https://github.com/azazelm3dj3d/catherine)
+ Author: azazelm3dj3d (https://github.com/azazelm3dj3d)
License: BSD 2-Clause
*/
@@ -189,7 +189,7 @@ pub fn init(boot_msg: &str) {
"version" => {
println!("\nCatherine Framework v{}", VERSION);
- println!("Author: Azazel Labs (https://github.com/azazellabs)");
+ println!("Author: azazelm3dj3d (https://github.com/azazelm3dj3d)");
},
// Installs custom modules
@@ -211,7 +211,7 @@ pub fn init(boot_msg: &str) {
}
// Downloads Catherine modules from GitHub
- git_downloader("https://github.com/azazellabs/catherine-modules.git");
+ git_downloader("https://github.com/azazelm3dj3d/catherine-modules.git");
if existence("/opt/catherine/modules") {
println!("\nInstallation complete! Modules can be found here: /opt/catherine/modules\n");
diff --git a/src/core/commands.rs b/src/core/commands.rs
index b024aae..2115e9f 100644
--- a/src/core/commands.rs
+++ b/src/core/commands.rs
@@ -1,6 +1,6 @@
/*
- Project: Catherine Framework (https://github.com/azazellabs/catherine)
- Author: Azazel Labs (https://github.com/azazellabs)
+ Project: Catherine Framework (https://github.com/azazelm3dj3d/catherine)
+ Author: azazelm3dj3d (https://github.com/azazelm3dj3d)
License: BSD 2-Clause
*/
diff --git a/src/core/mod.rs b/src/core/mod.rs
index ebefead..36977c4 100644
--- a/src/core/mod.rs
+++ b/src/core/mod.rs
@@ -1,6 +1,6 @@
/*
- Project: Catherine Framework (https://github.com/azazellabs/catherine)
- Author: Azazel Labs (https://github.com/azazellabs)
+ Project: Catherine Framework (https://github.com/azazelm3dj3d/catherine)
+ Author: azazelm3dj3d (https://github.com/azazelm3dj3d)
License: BSD 2-Clause
*/
diff --git a/src/core/utils.rs b/src/core/utils.rs
index 6c3d331..54a3165 100644
--- a/src/core/utils.rs
+++ b/src/core/utils.rs
@@ -1,6 +1,6 @@
/*
- Project: Catherine Framework (https://github.com/azazellabs/catherine)
- Author: Azazel Labs (https://github.com/azazellabs)
+ Project: Catherine Framework (https://github.com/azazelm3dj3d/catherine)
+ Author: azazelm3dj3d (https://github.com/azazelm3dj3d)
License: BSD 2-Clause
*/
diff --git a/src/core/x.rs b/src/core/x.rs
index 01ffe60..edf06a3 100644
--- a/src/core/x.rs
+++ b/src/core/x.rs
@@ -1,6 +1,6 @@
/*
- Project: Catherine Framework (https://github.com/azazellabs/catherine)
- Author: Azazel Labs (https://github.com/azazellabs)
+ Project: Catherine Framework (https://github.com/azazelm3dj3d/catherine)
+ Author: azazelm3dj3d (https://github.com/azazelm3dj3d)
License: BSD 2-Clause
*/
diff --git a/src/main.rs b/src/main.rs
index fd57f6d..34bd72e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,6 +1,6 @@
/*
- Project: Catherine Framework (https://github.com/azazellabs/catherine)
- Author: Azazel Labs (https://github.com/azazellabs)
+ Project: Catherine Framework (https://github.com/azazelm3dj3d/catherine)
+ Author: azazelm3dj3d (https://github.com/azazelm3dj3d)
License: BSD 2-Clause
*/
diff --git a/src/meta.rs b/src/meta.rs
index 1858bfc..df28046 100644
--- a/src/meta.rs
+++ b/src/meta.rs
@@ -1,6 +1,6 @@
/*
- Project: Catherine Framework (https://github.com/azazellabs/catherine)
- Author: Azazel Labs (https://github.com/azazellabs)
+ Project: Catherine Framework (https://github.com/azazelm3dj3d/catherine)
+ Author: azazelm3dj3d (https://github.com/azazelm3dj3d)
License: BSD 2-Clause
*/
diff --git a/src/modules/mod.rs b/src/modules/mod.rs
index cea0573..9966f4d 100644
--- a/src/modules/mod.rs
+++ b/src/modules/mod.rs
@@ -1,6 +1,6 @@
/*
- Project: Catherine Framework (https://github.com/azazellabs/catherine)
- Author: Azazel Labs (https://github.com/azazellabs)
+ Project: Catherine Framework (https://github.com/azazelm3dj3d/catherine)
+ Author: azazelm3dj3d (https://github.com/azazelm3dj3d)
License: BSD 2-Clause
*/
diff --git a/src/modules/rust_hex_dump.rs b/src/modules/rust_hex_dump.rs
index be12f96..189881c 100644
--- a/src/modules/rust_hex_dump.rs
+++ b/src/modules/rust_hex_dump.rs
@@ -1,6 +1,6 @@
/*
- Project: Catherine Framework (https://github.com/azazellabs/catherine)
- Author: Azazel Labs (https://github.com/azazellabs)
+ Project: Catherine Framework (https://github.com/azazelm3dj3d/catherine)
+ Author: azazelm3dj3d (https://github.com/azazelm3dj3d)
License: BSD 2-Clause
*/