| Anterior | Siguiente |
| STATUS_INCOMPATIBLE_FILE_MAP | STATUS_EAS_NOT_SUPPORTED |
STATUS_SECTION_PROTECTION
Qué significa STATUS_SECTION_PROTECTION
La vista intenta usar una protección que la section no permite. La protección elegida al crear la section establece el máximo para las vistas posteriores: un mapping read-only no puede producir legítimamente una vista writable, y execute/copy-on-write también deben respetar los atributos originales.
Microsoft documenta este resultado en ZwMapViewOfSection cuando Win32Protect es incompatible con la protección de la section. Para image sections, además, las protecciones efectivas proceden de las características de las secciones PE.
Qué comprobar
- Protección y allocation attributes originales de la section.
- Protección solicitada por la nueva vista.
- Access rights del backing file cuando existe.
- En imágenes, flags readable/writable/executable de cada sección PE.
Referencias técnicas
- Microsoft: ZwMapViewOfSection
- Microsoft: Managing Memory Sections
- Microsoft Open Specifications: NTSTATUS values
¿Buscas un código diferente? Buscar otro código de estado o error.