This file contains hidden or 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
void CTools::EraseHeader(HINSTANCE hModule) | |
{ | |
PIMAGE_DOS_HEADER pDoH; | |
PIMAGE_NT_HEADERS pNtH; | |
DWORD i, ersize, protect; | |
if (!hModule) return; | |
This file contains hidden or 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
void CTools::HideDLL(HINSTANCE hModule) | |
{ | |
DWORD dwPEB_LDR_DATA = 0; | |
_asm | |
{ | |
pushad; | |
pushfd; | |
mov eax, fs:[30h] | |
mov eax, [eax+0Ch] | |
mov dwPEB_LDR_DATA, eax |
This file contains hidden or 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
[PHP] | |
;;;;;;;;;;;;;;;;;;; | |
; About php.ini ; | |
;;;;;;;;;;;;;;;;;;; | |
; PHP's initialization file, generally called php.ini, is responsible for | |
; configuring many of the aspects of PHP's behavior. | |
; PHP attempts to find and load this configuration from a number of locations. | |
; The following is a summary of its search order: |