Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
battleoverflow committed Mar 3, 2023
1 parent 6edb3d4 commit 8cd0a79
Show file tree
Hide file tree
Showing 15 changed files with 36 additions and 36 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<div align="center">
<img src="https://raw.githubusercontent.com/azazellabs/catherine/main/assets/catherine_icon.png" width="40%" />
<img src="https://raw.githubusercontent.com/azazelm3dj3d/catherine/main/assets/catherine_icon.png" width="40%" />
</div>

<h1 align="center">
Catherine
</h1>

<!-- 📚 [Documentation](https://catherine.azazellabs.com) -->
<!-- 📚 [Documentation](https://catherine.azazelm3dj3d.com) -->

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.

Expand All @@ -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
Expand All @@ -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).
If a bug or issue is found, please report it [here](https://github.com/azazelm3dj3d/catherine/issues).
8 changes: 4 additions & 4 deletions catherine_install
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions server/public/err/404.html
Original file line number Diff line number Diff line change
@@ -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
-->

Expand Down
4 changes: 2 additions & 2 deletions server/public/index.html
Original file line number Diff line number Diff line change
@@ -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
-->

Expand Down
8 changes: 4 additions & 4 deletions src/catherine.rs
Original file line number Diff line number Diff line change
@@ -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
*/

Expand Down Expand Up @@ -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
Expand All @@ -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");
Expand Down
4 changes: 2 additions & 2 deletions src/core/commands.rs
Original file line number Diff line number Diff line change
@@ -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
*/

Expand Down
4 changes: 2 additions & 2 deletions src/core/mod.rs
Original file line number Diff line number Diff line change
@@ -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
*/

Expand Down
4 changes: 2 additions & 2 deletions src/core/utils.rs
Original file line number Diff line number Diff line change
@@ -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
*/

Expand Down
4 changes: 2 additions & 2 deletions src/core/x.rs
Original file line number Diff line number Diff line change
@@ -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
*/

Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -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
*/

Expand Down
4 changes: 2 additions & 2 deletions src/meta.rs
Original file line number Diff line number Diff line change
@@ -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
*/

Expand Down
4 changes: 2 additions & 2 deletions src/modules/mod.rs
Original file line number Diff line number Diff line change
@@ -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
*/

Expand Down
4 changes: 2 additions & 2 deletions src/modules/rust_hex_dump.rs
Original file line number Diff line number Diff line change
@@ -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
*/

Expand Down

0 comments on commit 8cd0a79

Please sign in to comment.