From 3d438790fdb33e3a62da87424e78a23ba437f6ae Mon Sep 17 00:00:00 2001
From: 8damon <8damon@users.noreply.github.com>
Date: Sun, 16 Aug 2026 00:37:27 +0200
Subject: [PATCH] Rebrand TITAN as RYFTENIUS
---
COMMANDS.md | 2 +-
README.md | 6 +++---
resx-vscode/LICENSE | 4 ++--
resx-vscode/package.json | 8 ++++----
resx/Cargo.toml | 6 +++---
resx/build.rs | 4 ++--
resx/resx.manifest | 2 +-
resx/src/cli/help.rs | 2 +-
resx/src/core/config.rs | 2 +-
9 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/COMMANDS.md b/COMMANDS.md
index e5afa68..80e9783 100644
--- a/COMMANDS.md
+++ b/COMMANDS.md
@@ -3,7 +3,7 @@
## Identity
- Name: `RESX`
-- Author: `TITAN Softwork Solutions`
+- Author: `RYFTENIUS`
- Version: `resx version` or `resx --version`
## Core
diff --git a/README.md b/README.md
index 77b6022..f2ca136 100644
--- a/README.md
+++ b/README.md
@@ -5,9 +5,9 @@
-
-
-
+
+
+
diff --git a/resx-vscode/LICENSE b/resx-vscode/LICENSE
index 0b0a165..f1c9c32 100644
--- a/resx-vscode/LICENSE
+++ b/resx-vscode/LICENSE
@@ -1,7 +1,7 @@
-Copyright (c) TITAN Softwork Solutions
+Copyright (c) RYFTENIUS
All rights reserved.
This software and associated files may not be copied, modified, distributed,
published, sublicensed, or sold without prior written permission from
-TITAN Softwork Solutions.
+RYFTENIUS.
diff --git a/resx-vscode/package.json b/resx-vscode/package.json
index bbc6ce7..ef649a5 100644
--- a/resx-vscode/package.json
+++ b/resx-vscode/package.json
@@ -3,15 +3,15 @@
"displayName": "RESX Binary Viewer",
"description": "VS Code PE and Windows binary analysis viewer for EXE, DLL, and SYS files powered by RESX",
"version": "1.4.0",
- "publisher": "titan-softwork-solutions",
+ "publisher": "RYFTENIUS",
"license": "UNLICENSED",
"repository": {
"type": "git",
- "url": "https://github.com/TITAN-Softwork-Solutions/RESX.git"
+ "url": "https://github.com/RYFTENIUS/RESX.git"
},
- "homepage": "https://github.com/TITAN-Softwork-Solutions/RESX",
+ "homepage": "https://github.com/RYFTENIUS/RESX",
"bugs": {
- "url": "https://github.com/TITAN-Softwork-Solutions/RESX/issues"
+ "url": "https://github.com/RYFTENIUS/RESX/issues"
},
"engines": { "vscode": "^1.85.0" },
"categories": ["Other", "Debuggers", "Visualization"],
diff --git a/resx/Cargo.toml b/resx/Cargo.toml
index 1c0abfa..ff3f18c 100644
--- a/resx/Cargo.toml
+++ b/resx/Cargo.toml
@@ -2,10 +2,10 @@
name = "resx"
version = "1.4.0"
edition = "2021"
-authors = ["TITAN Softwork Solutions"]
+authors = ["RYFTENIUS"]
description = "Windows binary recon CLI for exports, PDB-backed symbols, CFG recovery, and triage"
-repository = "https://github.com/TITAN-Softwork-Solutions/RESX"
-homepage = "https://github.com/TITAN-Softwork-Solutions/RESX"
+repository = "https://github.com/RYFTENIUS/RESX"
+homepage = "https://github.com/RYFTENIUS/RESX"
build = "build.rs"
[lib]
diff --git a/resx/build.rs b/resx/build.rs
index 29ccb2d..6bcb263 100644
--- a/resx/build.rs
+++ b/resx/build.rs
@@ -17,11 +17,11 @@ fn main() {
let mut res = winres::WindowsResource::new();
res.set_manifest_file("resx.manifest");
- res.set("CompanyName", "TITAN Softwork Solutions");
+ res.set("CompanyName", "RYFTENIUS");
res.set("FileDescription", &description);
res.set("FileVersion", &version);
res.set("InternalName", "resx");
- res.set("LegalCopyright", "Copyright (c) TITAN Softwork Solutions");
+ res.set("LegalCopyright", "Copyright (c) RYFTENIUS");
res.set("OriginalFilename", "resx.exe");
res.set("ProductName", "RESX");
res.set("ProductVersion", &version);
diff --git a/resx/resx.manifest b/resx/resx.manifest
index 9f285ad..87e0e63 100644
--- a/resx/resx.manifest
+++ b/resx/resx.manifest
@@ -1,6 +1,6 @@
-
+
Windows binary recon CLI for exports, PDB-backed symbols, CFG recovery, and triage
diff --git a/resx/src/cli/help.rs b/resx/src/cli/help.rs
index ceb5c1e..7e95de3 100644
--- a/resx/src/cli/help.rs
+++ b/resx/src/cli/help.rs
@@ -1,7 +1,7 @@
use crate::core::config::Cli;
pub const APP_NAME: &str = "RESX";
-pub const ORG_NAME: &str = "TITAN Softwork Solutions";
+pub const ORG_NAME: &str = "RYFTENIUS";
pub fn version_string() -> String {
format!("{} v{}", APP_NAME, env!("CARGO_PKG_VERSION"))
diff --git a/resx/src/core/config.rs b/resx/src/core/config.rs
index 7a4aee2..32a631c 100644
--- a/resx/src/core/config.rs
+++ b/resx/src/core/config.rs
@@ -7,7 +7,7 @@ use clap::Parser;
#[command(
name = "resx",
version = env!("CARGO_PKG_VERSION"),
- author = "TITAN Softwork Solutions",
+ author = "RYFTENIUS",
about = "Windows binary recon CLI for exports, symbols, metadata, CFG, callers, and triage",
long_about = None,
disable_help_flag = true,