--> 标志(属性块) 常用特征值对照表:<-- [值:00000020h](*包含可执行代码) [值:00000040h](*该块包含已初始化的数据) [值:00000080h](*该块包含未初始化的数据) [值:00000200h][Section contains comments or some other type of information.] [值:00000800h][Section contents will not become part of image.] [值:00001000h][Section contents comdat.] [值:00004000h][Reset speculative exceptions handling bits in the TLB entries forthis section.] [值:00008000h][Section content can be accessed relative to GP.] [值:00500000h][Default alignment if no others are specified.] [值:01000000h][Section contains extended relocations.] [值:02000000h][Section can be discarded.] [值:04000000h][Section is not cachable.] [值:08000000h][Section is not pageable.] [值:10000000h](*该块为共享块). [值:20000000h](*该块可执行) [值:40000000h](*该块可读) [值:80000000h](*该块可写)
SetConsoleTextAttribute(handle, 0x07); } SetConsoleTextAttribute(handle, FOREGROUND_INTENSITY | FOREGROUND_GREEN); printf("--> 标志(属性块) 常用特征值对照表:<--\n"); printf("[值:00000020h](*包含可执行代码)\n");//IMAGE_SCN_CNT_CODE printf("[值:00000040h](*该块包含已初始化的数据)\n");//IMAGE_SCN_CNT_INITIALIZED_DATA printf("[值:00000080h](*该块包含未初始化的数据)\n");//IMAGE_SCN_CNT_UNINITIALIZED_DATA printf("[值:00000200h][Section contains comments or some other type of information.]\n");//IMAGE_SCN_LNK_INFO printf("[值:00000800h][Section contents will not become part of image.]\n");//IMAGE_SCN_LNK_REMOVE printf("[值:00001000h][Section contents comdat.]\n");//IMAGE_SCN_LNK_COMDAT printf("[值:00004000h][Reset speculative exceptions handling bits in the TLB entries for this section.]\n");//IMAGE_SCN_NO_DEFER_SPEC_EXC printf("[值:00008000h][Section content can be accessed relative to GP.]\n");// IMAGE_SCN_GPREL printf("[值:00500000h][Default alignment if no others are specified.]\n");//IMAGE_SCN_ALIGN_16BYTES printf("[值:01000000h][Section contains extended relocations.]\n");//IMAGE_SCN_LNK_NRELOC_OVFL printf("[值:02000000h][Section can be discarded.]\n");//IMAGE_SCN_MEM_DISCARDABLE printf("[值:04000000h][Section is not cachable.]\n");//IMAGE_SCN_MEM_NOT_CACHED printf("[值:08000000h][Section is not pageable.]\n");//IMAGE_SCN_MEM_NOT_PAGED printf("[值:10000000h](*该块为共享块).\n");//IMAGE_SCN_MEM_SHARED printf("[值:20000000h](*该块可执行)\n");//IMAGE_SCN_MEM_EXECUTE printf("[值:40000000h](*该块可读)\n");//IMAGE_SCN_MEM_READ printf("[值:80000000h](*该块可写)\n\n");// IMAGE_SCN_MEM_WRITE SetConsoleTextAttribute(handle, 0x07);//IMAGE_SCN_MEM_WRITE