All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.codemodder.codemods.sandbox-url-creation.yaml Maven / Gradle / Ivy

There is a newer version: 0.97.3
Show newest version
rules:
  - id: sandbox-url-creation
    patterns:
      - pattern-either:
          - pattern: new URL($PRIMARY)
          - pattern: new URL($PRIMARY, ...)
      - pattern-not: new URL("...")
      - pattern-not: new URL("...", "...", ...)
      - pattern-not-inside: |
          class $CLASS {
            ...
            final String $PRIMARY = "...";
          }
    message: Unbounded URL creation
    languages:
      - java
    severity: WARNING




© 2015 - 2024 Weber Informatics LLC | Privacy Policy