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/patterns.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]+'

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

paths:
  "/some/where/{id}":
    parameters:
      - $ref: "#/parameters/idParam"
      - name: name
        in: query
        pattern: 'b[A-Za-z0-9]+'
      - name: bodyId
        in: body
        schema:
          type: object
    get:
      parameters:
      - name: filter
        in: query
        type: string
        pattern: "[abc][0-9]+"
      - name: other
        in: query
        type: array
        items:
          type: string
          pattern: 'c[A-Za-z0-9]+'
      - name: body
        in: body
        schema:
          type: object
            
      responses:
        default:
          schema:
            type: object
        404:
          $ref: "#/responses/notFound"
        200:
          headers:
            X-Request-Id:
              type: string
              pattern: 'd[A-Za-z0-9]+'
          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]+'
      responses:
        default:
          headers:
            Via:
              type: array
              items:
                type: string
                pattern: '[A-Za-z]+'
        200:
          schema:
            type: object
            properties:
              data:
                type: string
                pattern: "[0-9]+[abd]"

definitions:
  named:
    type: string
    pattern: 'f[A-Za-z0-9]+'
  tag:
    type: object
    properties:
      id:
        type: integer
        format: int64
      value:
        type: string
        pattern: 'g[A-Za-z0-9]+'
      audit:
        $ref: "#/definitions/record"
  record:
    type: object
    properties:
      createdAt:
        type: string
        format: date-time
  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