File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
1
# 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**
7
6
IF YOU SEE BASE ADDRESS AS 0x00000000, it propably is a 64-bit process.
8
7
9
8
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.
12
11
Make sure that a target process is opened before passing an argument.
13
12
14
13
# Example
14
+ Input
15
+ ```
15
16
threadstack.exe 6540
16
-
17
+ ```
17
18
Output
19
+ ```
18
20
PID 6540 (0x198c)
19
21
Grabbing handle
20
22
Success
@@ -24,3 +26,4 @@ PID: 6540 Thread ID: 0x1bbc
24
26
TID: 0x1990 = THREADSTACK 0 BASE ADDRESS: 0xbcff8c
25
27
TID: 0x1b1c = THREADSTACK 1 BASE ADDRESS: 0x4d8ff8c
26
28
TID: 0x1bbc = THREADSTACK 2 BASE ADDRESS: 0x518ff8c
29
+ ```
You can’t perform that action at this time.
0 commit comments