Interface WindowsPeSectionObj

All Superinterfaces:
GenericValidation, SdoDefaultValidator, Serializable, StixCustomProperties
All Known Implementing Classes:
WindowsPeSection

@Immutable public interface WindowsPeSectionObj extends GenericValidation, StixCustomProperties, Serializable
The PE Section type specifies metadata about a PE file section.
  • Method Details

    • getName

      @JsonPropertyDescription("Specifies the name of the section.") @NotNull @NotNull Optional<String> getName()
    • getSize

      @JsonPropertyDescription("Specifies the size of the section, in bytes.") Optional<@PositiveOrZero Long> getSize()
    • getEntropy

      @JsonPropertyDescription("Specifies the calculated entropy for the section, as calculated using the Shannon algorithm.") Optional<Float> getEntropy()
    • getHashes

      @JsonPropertyDescription("Specifies any hashes computed over the section.") Map<@Length(min=3,max=256) @HashingVocab(HashingAlgorithms.class) String,String> getHashes()