Skip to content

Commit 3d7c7b3

Browse files
committed
Merge branch 'thread-base-addr' of https://github.com/makemek/cheatengine-threadstack-finder into thread-base-addr
2 parents 09a6bf2 + ec62f22 commit 3d7c7b3

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# cheatengine-threadstack-finder
2-
A simple program that list all thread's base address based on process's name.
3-
ONLY WORK FOR
4-
- 32 bit process
5-
- Launched by you
6-
Depending on a process's access rights.
2+
A simple program that list all thread's base address based on process's name.
3+
**ONLY WORK FOR**
4+
- **32 bit process**
5+
- **A process launched by you so that it has enough access rights**
76
IF YOU SEE BASE ADDRESS AS 0x00000000, it propably is a 64-bit process.
87

98
Pass command process id (PID) in decimal as a command line argument.
@@ -12,9 +11,12 @@ The program will output all thread's base addresses.
1211
Make sure that a target process is opened before passing an argument.
1312

1413
# Example
14+
Input
15+
```
1516
threadstack.exe 6540
16-
17+
```
1718
Output
19+
```
1820
PID 6540 (0x198c)
1921
Grabbing handle
2022
Success
@@ -24,3 +26,4 @@ PID: 6540 Thread ID: 0x1bbc
2426
TID: 0x1990 = THREADSTACK 0 BASE ADDRESS: 0xbcff8c
2527
TID: 0x1b1c = THREADSTACK 1 BASE ADDRESS: 0x4d8ff8c
2628
TID: 0x1bbc = THREADSTACK 2 BASE ADDRESS: 0x518ff8c
29+
```

0 commit comments

Comments
 (0)