Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: 🍺 Class with inheritance support #187

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

shivasurya
Copy link
Owner

Description:

Adding support for class with inheritance. Upon implementation,

class SSRFBase {
  string getName() {
    result = "Generic SSRF Sink"
  }
}

// Derived class
class SSRFSink extends SSRFBase {
  string getClass() {
    result = "Request"
  }
}

predicate isSink(Node obj) {
  obj instanceof SSRFSink
}

// Query to use the predicate
from SSRFSink a
where isSink(a)
select a, a.getClass()

Checklist:

  • Tests passing (gradle testGo)?
  • Lint passing (golangci-lint run this requires golangci-lint)?

@shivasurya shivasurya added the enhancement New feature or request label Dec 9, 2024
@shivasurya shivasurya self-assigned this Dec 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant