Skip to content

Commit b55d179

Browse files
Cleanup
1 parent 14560e6 commit b55d179

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name = "mercy"
33
description = "Mercy is an open-source Rust crate and CLI for building cybersecurity tools, assessment projects, and testing infrastructure."
44
version = "1.2.21"
55
edition = "2021"
6-
author = "Azazel Labs"
6+
author = "azazelm3dj3d"
77
license = "BSD-2-Clause"
88
categories = ["cryptography", "command-line-utilities", "encoding"]
99
keywords = ["cybersecurity", "decode", "encode", "cracking"]
10-
repository = "https://github.com/azazellabs/mercy"
10+
repository = "https://github.com/azazelm3dj3d/mercy"
1111

1212
[dependencies]
1313
base64 = "0.13.0"

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 2-Clause License
22

3-
Copyright (c) 2022, Azazel Labs
3+
Copyright (c) 2022, azazelm3dj3d
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
📚 [Documentation](https://docs.rs/mercy/latest/mercy/)
66

7-
![Mercy Status (Dev)](https://github.com/azazellabs/mercy/actions/workflows/dev.yml/badge.svg?branch=dev)
8-
![Mercy Status (Main)](https://github.com/azazellabs/mercy/actions/workflows/main.yml/badge.svg?branch=main)
7+
![Mercy Status (Dev)](https://github.com/azazelm3dj3d/mercy/actions/workflows/dev.yml/badge.svg?branch=dev)
8+
![Mercy Status (Main)](https://github.com/azazelm3dj3d/mercy/actions/workflows/main.yml/badge.svg?branch=main)
99

1010
Mercy is an open-source Rust crate and CLI for building cybersecurity tools, assessment projects, and testing infrastructure. The goal is to create a sustainable project to make creating security tools in Rust a little easier.
1111

@@ -28,8 +28,8 @@ use mercy::{
2828
};
2929

3030
fn main() {
31-
// Encode string "azazellabs"
32-
mercy_encode("base64", "azazellabs");
31+
// Encode string "azazelm3dj3d"
32+
mercy_encode("base64", "azazelm3dj3d");
3333

3434
// Decode string "YXphemVsbGFicw=="
3535
mercy_decode("base64", "YXphemVsbGFicw==");
@@ -48,13 +48,13 @@ fn main() {
4848
```
4949

5050
### Malware/Malicious Detection
51-
You can check if a domain (i.e. azazellabs.com) is currently classified as malicious using the InQuest API:
51+
You can check if a domain (i.e. azazelm3dj3d.com) is currently classified as malicious using the InQuest API:
5252

5353
```rust
5454
use mercy::mercy_malicious;
5555

5656
fn main() {
57-
mercy_malicious("status", "azazellabs.com");
57+
mercy_malicious("status", "azazelm3dj3d.com");
5858
}
5959
```
6060

@@ -73,10 +73,10 @@ fn main() {
7373
mercy_extra("system_info", "all");
7474

7575
// Defang an ip address or domain
76-
mercy_extra("defang", "azazellabs.com");
76+
mercy_extra("defang", "azazelm3dj3d.com");
7777

7878
// Run a WHOIS lookup on a domain
79-
mercy_extra("whois", "azazellabs.com");
79+
mercy_extra("whois", "azazelm3dj3d.com");
8080

8181
// Attempt to identify an unknown string
8282
mercy_extra("identify", "UCrlEbqe4ppk5dVIHzdxtC7g");
@@ -155,10 +155,10 @@ mercy -m ip -p internal_ip
155155

156156
Quickly check if a domain is malicious.
157157
```
158-
mercy -m mal -p status -i "azazellabs.com"
158+
mercy -m mal -p status -i "azazelm3dj3d.com"
159159
```
160160

161-
If you're stuck, you can use this option to learn every command at your disposal from [Mercy](https://github.com/azazellabs/mercy):
161+
If you're stuck, you can use this option to learn every command at your disposal from [Mercy](https://github.com/azazelm3dj3d/mercy):
162162
```bash
163163
mercy -e
164164
```

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
//!
1515
1616
/*
17-
Project: Mercy (https://github.com/azazellabs/mercy)
18-
Author: Azazel Labs (https://github.com/azazellabs)
17+
Project: Mercy (https://github.com/azazelm3dj3d/mercy)
18+
Author: azazelm3dj3d (https://github.com/azazelm3dj3d)
1919
License: BSD 2-Clause
2020
*/
2121

@@ -47,7 +47,7 @@ use lemmeknow::Identifier;
4747
/// Learn more about the crate
4848
pub fn mercy_source() -> String {
4949
const VERSION: &str = "1.2.21";
50-
const AUTHOR: &str = "Azazel Labs (https://github.com/azazellabs)";
50+
const AUTHOR: &str = "azazelm3dj3d (https://github.com/azazelm3dj3d)";
5151
return format!("Author: {}\nVersion: {}\nDocumentation: https://docs.rs/crate/mercy/latest", AUTHOR, VERSION);
5252
}
5353

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
//!
55
66
/*
7-
Project: Mercy (https://github.com/azazellabs/mercy)
8-
Author: Azazel Labs (https://github.com/azazellabs)
7+
Project: Mercy (https://github.com/azazelm3dj3d/mercy)
8+
Author: azazelm3dj3d (https://github.com/azazelm3dj3d)
99
License: BSD 2-Clause
1010
*/
1111

0 commit comments

Comments
 (0)