Notice
Recent Posts
Recent Comments
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- idapython
- idb2pat
- pytest
- svn update
- ida
- ida pro
- Injection
- Analysis
- error
- javascript
- Ransomware
- MySQL
- error fix
- commandline
- ecma
- open office xml
- hex-rays
- why error
- NumPy Unicode Error
- TensorFlow
- Rat
- idapro
- h5py.File
- x64
- malware
- debugging
- Python
- 포인터 매핑
- mock.patch
- data distribution
Archives
- Today
- Total
13 Security Lab
Windows API - User mode matched kernel mode 본문
Computer Science/Windows Externals
Windows API - User mode matched kernel mode
Maj0r Tom 2015. 5. 1. 18:37| Processes | User mode | Kernel mode |
| NtTerminateProcess | PsTerminateProcess/PspTerminateProcess | |
| NtOpenProcess | PsLookupProcessByProcessId, ObOpenObjectByPointer |
|
| Threads | User mode | Kernel mode |
| NtTerminateThread | PspTerminateThreadByPointer | |
| NtOpenThread | PsLookupThreadByThreadId, ObOpenObjectByPointer |
|
| NtGetContextThread | PsGetContextThread | |
| NtSetContextThread | PsSetContextThread | |
| Virtual memory | User mode | Kernel mode |
| NtProtectVirtualMemory | MiProtectVirtualMemory | |
| NtReadVirtualMemory | MmCopyVirtualMemory | |
| NtWriteVirtualMemory | MmCopyVirtualMemory | |
| File system | User mode | Kernel mode |
| NtCreateFile | IoCreateFile | |
| NtDeviceIoControlFile /NtFsControlFile |
IopXxxControlFile | |
| Objects | User mode | Kernel mode |
| NtClose | ObCloseHandle/ObpCloseHandle | |
| NtDuplicateObject | ObDuplicateObject | |
| NtQueryObject | ObQueryNameString | |
| System call | User mode | Kernel mode |
| KiIntSystemCall | KiSystemService | |
| KiFastSystemCall | KiFastCallEntry |
Comments