Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
aeverj authored Jul 22, 2024
1 parent eb314f7 commit 450860f
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AGHD
# RTDllHijack

AGHD 是一个解析 PE 文件导入表并生成可劫持 DLL 源代码的工具。
RTDllHijack 是一个解析 PE 文件导入表并生成可劫持 DLL 源代码的工具。

## 特性

Expand All @@ -13,20 +13,20 @@ AGHD 是一个解析 PE 文件导入表并生成可劫持 DLL 源代码的工具
## 安装

```sh
git clone https://github.com/aeverj/AGHD.git
cd AGHD
git clone https://github.com/aeverj/RTDllHijack.git
cd RTDllHijack
go mod tidy
go build -o AGHD.exe cmd/cmd.go
go build -o RTDllHijack.exe cmd/cmd.go
```

## Usage
```sh
.\AGHD.exe -h
.\RTDllHijack.exe -h
NAME:
AGHD - Parses PE file import tables and generates hijackable DLL source code
RTDllHijack - Parses PE file import tables and generates hijackable DLL source code

USAGE:
AGHD [global options] command [command options]
RTDllHijack [global options] command [command options]

COMMANDS:
help, h Shows a list of commands or help for one command
Expand All @@ -42,15 +42,15 @@ GLOBAL OPTIONS:
```
## 获取所有C盘可执行文件dll劫持
```sh
AGHD.exe -i C:\
RTDllHijack.exe -i C:\
```
## 生成支持MingW编译器的源文件
```sh
AGHD.exe -i C:\ -c mingw
RTDllHijack.exe -i C:\ -c mingw
```
## 排除特定的文件或目录
```sh
AGHD.exe -i C:\ -e admin
RTDllHijack.exe -i C:\ -e admin
```
## 结果
```sh
Expand Down

0 comments on commit 450860f

Please sign in to comment.