Status

There’s 4 possible output for this column.

ACTIVE

This status is returned when one of the following cases is met:

  • We can extract the expiration date from request().

    Note

    We don’t check if the extracted date is in the past.

  • request() don’t returns None.

    Note

    We don’t read nor interpret the returned data.

  • request() returns None, request() provides nothing exploitable, but get() returned something which is not the default value (XXX).

INACTIVE

This status is returned when all the following cases are met:

  • We could not extract the expiration date from request().
  • request() returns nothing.
  • get() is not in the list of ACTIVE status codes.

INVALID

This status is returned when all the following cases are met:

VALID

This status is returned when we are checking for syntax. It is the equivalent of ACTIVE but for syntax checking.