From 613dbe4c6a460a8a9d4d55a26ebb449b0ef5a6ed Mon Sep 17 00:00:00 2001 From: SinaKarvandi Date: Thu, 7 Oct 2021 13:15:39 +0330 Subject: [PATCH] change domain to .org --- CONTRIBUTING.md | 2 +- README.md | 64 +++++++++++++------------- hyperdbg/hyperdbg-cli/hyperdbg-cli.cpp | 2 +- 3 files changed, 34 insertions(+), 34 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1d597766..ed15c323 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,7 +4,7 @@ Contributing in HyperDbg is always super appreciated. ## Coding Style -If you want to create a pull request please read [coding-style](https://docs.hyperdbg.com/contribution/style-guide/coding-style), [doxygen-style](https://docs.hyperdbg.com/contribution/style-guide/doxygen-style), and [command-style](https://docs.hyperdbg.com/contribution/style-guide/command-style) in the case you want a new feature, or report a bug, please explain it in [issues](https://GitHub.com/HyperDbg/HyperDbg/issues/). +If you want to create a pull request please read [coding-style](https://docs.hyperdbg.org/contribution/style-guide/coding-style), [doxygen-style](https://docs.hyperdbg.org/contribution/style-guide/doxygen-style), and [command-style](https://docs.hyperdbg.org/contribution/style-guide/command-style) in the case you want a new feature, or report a bug, please explain it in [issues](https://GitHub.com/HyperDbg/HyperDbg/issues/). ## FAQ Here's some Frequently Asked Questions which may help with your moving process diff --git a/README.md b/README.md index 53eff28b..cb3130c1 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@

-Website -Documentation -Doxygen +Website +Documentation +Doxygen License Twitter

-HyperDbg Debugger
+HyperDbg Debugger
# HyperDbg Debugger @@ -20,7 +20,7 @@ Follow **HyperDbg** on **Twitter** to get notified about new releases! ## Description HyperDbg is designed with a focus on using modern hardware technologies to provide new features to the reverse engineering world. It operates on top of Windows by virtualizing an already running system using Intel VT-x and Intel PT. This debugger aims not to use any APIs and software debugging mechanisms, but instead, it uses Second Layer Page Table (a.k.a. Extended Page Table or EPT) extensively to monitor both kernel and user executions. -

HyperDbg Debugger
+

HyperDbg Debugger

HyperDbg comes with features like hidden hooks, which is as fast as old inline hooks, but also stealth. It mimics hardware debug registers for (read & write) to a specific location, but this time entirely invisible for both Windows kernel and the programs, and of course without any limitation in size or count! @@ -30,31 +30,31 @@ Although it has novel features, HyperDbg tries to be as stealth as possible. It ## Unique Features ### First Release (v0.1.0.0) -* Classic EPT Hook (Hidden Breakpoint) [link][link] -* Inline EPT Hook (Inline Hook) [link][link] -* Monitor Memory For R/W (Emulating Hardware Debug Registers Without Limitation) [link][link] -* SYSCALL Hook (Disable EFER & Handle #UD) [link][link] -* SYSRET Hook (Disable EFER & Handle #UD) [link][link] -* CPUID Hook & Monitor [link] -* RDMSR Hook & Monitor [link] -* WRMSR Hook & Monitor [link] -* RDTSC/RDTSCP Hook & Monitor [link] -* RDPMC Hook & Monitor [link] -* VMCALL Hook & Monitor [link] -* Debug Registers Hook & Monitor [link] -* I/O Port (In Instruction) Hook & Monitor [link] -* I/O Port (Out Instruction) Hook & Monitor [link] +* Classic EPT Hook (Hidden Breakpoint) [link][link] +* Inline EPT Hook (Inline Hook) [link][link] +* Monitor Memory For R/W (Emulating Hardware Debug Registers Without Limitation) [link][link] +* SYSCALL Hook (Disable EFER & Handle #UD) [link][link] +* SYSRET Hook (Disable EFER & Handle #UD) [link][link] +* CPUID Hook & Monitor [link] +* RDMSR Hook & Monitor [link] +* WRMSR Hook & Monitor [link] +* RDTSC/RDTSCP Hook & Monitor [link] +* RDPMC Hook & Monitor [link] +* VMCALL Hook & Monitor [link] +* Debug Registers Hook & Monitor [link] +* I/O Port (In Instruction) Hook & Monitor [link] +* I/O Port (Out Instruction) Hook & Monitor [link] * MMIO Monitor -* Exception (IDT < 32) Monitor [link][link] -* External-Interrupt (IDT > 32) Monitor [link][link] -* Running Automated Scripts [link] -* Transparent-mode (Anti-debugging and Anti-hypervisor Resistance) [link][link] -* Running Custom Assembly In Both VMX-root, VMX non-root (Kernel & User) [link] -* Checking For Custom Conditions [link][link] -* VMX-root Compatible Message Tracing [link] -* Powerful Kernel Side Scripting Engine [link][link] -* Support To Symbols (Parsing PDB Files) [link][link] -* Event Forwarding (#DFIR) [link][link] +* Exception (IDT < 32) Monitor [link][link] +* External-Interrupt (IDT > 32) Monitor [link][link] +* Running Automated Scripts [link] +* Transparent-mode (Anti-debugging and Anti-hypervisor Resistance) [link][link] +* Running Custom Assembly In Both VMX-root, VMX non-root (Kernel & User) [link] +* Checking For Custom Conditions [link][link] +* VMX-root Compatible Message Tracing [link] +* Powerful Kernel Side Scripting Engine [link][link] +* Support To Symbols (Parsing PDB Files) [link][link] +* Event Forwarding (#DFIR) [link][link] * Transparent Breakpoint Handler * Various Custom Scripts [link] @@ -66,17 +66,17 @@ If you want to build HyperDbg, you should clone HyperDbg with `--recursive` flag ``` git clone --recursive https://github.com/HyperDbg/HyperDbg.git ``` -Please visit Build & Install and Quick Start for a detailed explanation of how to start with **HyperDbg**. You can also see FAQ for more information. +Please visit Build & Install and Quick Start for a detailed explanation of how to start with **HyperDbg**. You can also see FAQ for more information. ## How does it work? We explained about how HyperDbg internally works and how we designed its features in details, take a look at :
-

(https://docs.hyperdbg.com/design)

+

(https://docs.hyperdbg.org/design)

Here's a diagram that shows how HyperDbg works!
-

HyperDbg Design
+

HyperDbg Design


diff --git a/hyperdbg/hyperdbg-cli/hyperdbg-cli.cpp b/hyperdbg/hyperdbg-cli/hyperdbg-cli.cpp index 9a2276ff..97ab6796 100644 --- a/hyperdbg/hyperdbg-cli/hyperdbg-cli.cpp +++ b/hyperdbg/hyperdbg-cli/hyperdbg-cli.cpp @@ -51,7 +51,7 @@ main(int argc, char * argv[]) string PreviousCommand; printf("HyperDbg Debugger [core version: v%s]\n", Version); - printf("Please visit https://docs.hyperdbg.com for more information...\n"); + printf("Please visit https://docs.hyperdbg.org for more information...\n"); printf("HyperDbg is released under the GNU Public License v3 (GPLv3).\n\n"); if (argc != 1)