-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic README for deucalion client
- Loading branch information
Showing
1 changed file
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,33 @@ | ||
# Deucalion Client | ||
|
||
An implementation of a Deucalion client that is used to validate Deucalion. | ||
An implementation of a Deucalion client that is used to validate Deucalion. | ||
|
||
## Usage | ||
|
||
### Simple Injection | ||
```bash | ||
cargo run --bin deucalion_client -- path/to/deucalion.dll | ||
# or | ||
deucalion_client path/to/deucalion.dll | ||
``` | ||
|
||
### Injection into Notepad | ||
```bash | ||
deucalion_client path/to/deucalion.dll -t notepad.exe | ||
``` | ||
|
||
### Force Injection | ||
|
||
This calls LoadLibrary again on the same module. | ||
|
||
```bash | ||
deucalion_client path/to/deucalion.dll -f | ||
``` | ||
|
||
### Force ejection | ||
|
||
**If Deucalion is still running, it may crash the game** | ||
|
||
```bash | ||
deucalion_client deucalion-1.0.0.dll -e | ||
``` |