ROOTPLOIT
Server: LiteSpeed
System: Linux in-mum-web1878.main-hosting.eu 5.14.0-570.21.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 11 07:22:35 EDT 2025 x86_64
User: u435929562 (435929562)
PHP: 7.4.33
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: //opt/go/pkg/mod/github.com/go-openapi/[email protected]/fixtures/enums.yml
---
swagger: "2.0"
info:
  version: "0.1.0"
  title: reference analysis

parameters:
  idParam:
    name: id
    in: path
    type: string
    pattern: 'a[A-Za-Z0-9]+'
    enum:
      - aA
      - b9
      - c3

responses:
  notFound:
    headers:
      ContentLength:
        type: string
        pattern: '[0-9]+'
        enum:
          - '1234'
          - '123'
    schema:
      $ref: "#/definitions/error"

paths:
  "/some/where/{id}":
    parameters:
      - $ref: "#/parameters/idParam"
      - name: name
        in: query
        pattern: 'b[A-Za-z0-9]+'
        enum:
          - bA
          - ba
          - b9
      - name: bodyId
        in: body
        schema:
          type: object
    get:
      parameters:
      - name: filter
        in: query
        type: string
        pattern: "[abc][0-9]+"
        enum:
          - a0
          - b1
          - c2
      - name: other
        in: query
        type: array
        items:
          type: string
          pattern: 'c[A-Za-z0-9]+'
          enum:
            - cA
            - cz
            - c9
        enum:
          -
            - cA
            - cz
            - c9
          -
            - cA
            - cz
          -
            - cz
            - c9
      - name: body
        in: body
        schema:
          type: object
          enum:
            - '{"a": 10, "b": 20}'
            - '{"a": 11, "d": "zzz"}'
            
      responses:
        default:
          schema:
            type: object
        404:
          $ref: "#/responses/notFound"
        200:
          headers:
            X-Request-Id:
              type: string
              pattern: 'd[A-Za-z0-9]+'
              enum:
                - dA
                - d9
          schema:
            $ref: "#/definitions/tag"
  "/other/place":
    post:
      parameters:
        - name: body
          in: body
          schema:
            type: object
            properties:
              value:
                type: string
                pattern: 'e[A-Za-z0-9]+'
                enum:
                  - eA
                  - e9
      responses:
        default:
          headers:
            Via:
              type: array
              items:
                type: string
                pattern: '[A-Za-z]+'
                enum:
                  - AA
                  - Ab
        200:
          schema:
            type: object
            properties:
              data:
                type: string
                pattern: "[0-9]+[abd]"
                enum:
                  - 123a
                  - 123b
                  - 123d
definitions:
  named:
    type: string
    pattern: 'f[A-Za-z0-9]+'
    enum:
      - fA
      - f9
  tag:
    type: object
    properties:
      id:
        type: integer
        format: int64
      value:
        type: string
        pattern: 'g[A-Za-z0-9]+'
        enum:
          - gA
          - ga
          - g9
      audit:
        $ref: "#/definitions/record"
  record:
    type: object
    properties:
      createdAt:
        type: string
        format: date
    enum:
      - '{"createdAt": "2018-08-31"}'
      - '{"createdAt": "2018-09-30"}'
  error:
    type: object
    required:
      - id
      - message
    properties:
      id:
        type: integer
        format: int64
        readOnly: true
      message:
        type: string
        readOnly: true
  withPatternProperties:
    type: object
    additionalProperties: true
    patternProperties:
      '^prop[0-9]+$':
        type: string