mirror of
https://github.com/github/codeql.git
synced 2026-03-01 13:23:49 +01:00
feedback integration - Move all files to Play.qll, improvements to add methods to remotetainted method for play
This commit is contained in:
@@ -17,8 +17,7 @@ import semmle.code.java.frameworks.android.WebView
|
||||
import semmle.code.java.frameworks.JaxWS
|
||||
import semmle.code.java.frameworks.javase.WebSocket
|
||||
import semmle.code.java.frameworks.android.Intent
|
||||
import semmle.code.java.frameworks.play.PlayController
|
||||
import semmle.code.java.frameworks.play.PlayHTTPRequestHeader
|
||||
import semmle.code.java.frameworks.play.Play
|
||||
import semmle.code.java.frameworks.spring.SpringWeb
|
||||
import semmle.code.java.frameworks.spring.SpringController
|
||||
import semmle.code.java.frameworks.spring.SpringWebClient
|
||||
@@ -279,7 +278,7 @@ private class RemoteTaintedMethod extends Method {
|
||||
private class PlayRequestGetMethod extends Method {
|
||||
PlayRequestGetMethod() {
|
||||
this.getDeclaringType() instanceof PlayMVCHTTPRequestHeader and
|
||||
this.hasName(["header", "getHeader"])
|
||||
this.hasName(["queryString","getQueryString","header", "getHeader"])
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,9 +1,165 @@
|
||||
import java
|
||||
import semmle.code.java.dataflow.FlowSources
|
||||
import semmle.code.java.frameworks.play.PlayController
|
||||
import semmle.code.java.frameworks.play.PlayAddCSRFToken
|
||||
import semmle.code.java.frameworks.play.PlayAsyncResult
|
||||
import semmle.code.java.frameworks.play.PlayBodyParser
|
||||
import semmle.code.java.frameworks.play.PlayHTTPRequestHeader
|
||||
import semmle.code.java.frameworks.play.PlayMVCResult
|
||||
import semmle.code.java.frameworks.play.PlayMVCResults
|
||||
|
||||
/**
|
||||
* Play MVC Framework Result Class
|
||||
*/
|
||||
class PlayMVCResultClass extends Class {
|
||||
PlayMVCResultClass() { this.hasQualifiedName("play.mvc", "Result") }
|
||||
}
|
||||
|
||||
/**
|
||||
* Play MVC Framework Results Class
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.8.x/JavaActions
|
||||
*/
|
||||
class PlayMVCResultsClass extends Class {
|
||||
PlayMVCResultsClass() { this.hasQualifiedName("play.mvc", "Results") }
|
||||
}
|
||||
|
||||
/**
|
||||
* Play MVC Framework HTTP Request Header Class
|
||||
*/
|
||||
class PlayMVCHTTPRequestHeader extends RefType {
|
||||
PlayMVCHTTPRequestHeader() { this.hasQualifiedName("play.mvc", "Http$RequestHeader") }
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework Explicit Body Parser Annotation
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.8.x/JavaBodyParsers#Choosing-an-explicit-body-parser
|
||||
*/
|
||||
class PlayBodyParserAnnotation extends Annotation {
|
||||
PlayBodyParserAnnotation() { this.getType().hasQualifiedName("play.mvc", "BodyParser<>$Of") }
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework AddCSRFToken Annotation
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.8.x/JavaCsrf
|
||||
*/
|
||||
class PlayAddCSRFTokenAnnotation extends Annotation {
|
||||
PlayAddCSRFTokenAnnotation() {
|
||||
this.getType().hasQualifiedName("play.filters.csrf", "AddCSRFToken")
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework Async Promise - Gets the Promise<Result> Generic Member/Type of (play.libs.F)
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.5.1/api/java/play/libs/F.Promise.html
|
||||
*/
|
||||
class PlayAsyncResultPromise extends Member {
|
||||
PlayAsyncResultPromise() {
|
||||
exists(Class c |
|
||||
c.hasQualifiedName("play.libs", "F") and
|
||||
this = c.getAMember() and
|
||||
this.getQualifiedName() = "F.Promise<Result>"
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework Async Generic Result - Gets the CompletionStage<Result> Generic Type of (java.util.concurrent)
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.6.x/JavaAsync
|
||||
*/
|
||||
class PlayAsyncResultCompletionStage extends Type {
|
||||
PlayAsyncResultCompletionStage() {
|
||||
this.hasName("CompletionStage<Result>") and
|
||||
this.getCompilationUnit().getPackage().hasName("java.util.concurrent")
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework Controllers which extends PlayMVCController recursively - Used to find all Controllers
|
||||
*/
|
||||
class PlayController extends Class {
|
||||
PlayController() {
|
||||
this.extendsOrImplements*(any(Class t | t.hasQualifiedName("play.mvc", "Controller")))
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework Controller Action Methods - Mappings to route files
|
||||
*
|
||||
* Sample Route - `POST /login @com.company.Application.login()`
|
||||
*
|
||||
* Example - class get's `index` & `login` as valid action methods.
|
||||
* ```
|
||||
* public class Application extends Controller {
|
||||
* public Result index(String username, String password) {
|
||||
* return ok("It works!");
|
||||
* }
|
||||
*
|
||||
* public Result login() {
|
||||
* return ok("Log me In!");
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.8.x/JavaActions
|
||||
*/
|
||||
class PlayControllerActionMethod extends Method {
|
||||
PlayControllerActionMethod() {
|
||||
this = any(PlayController c).getAMethod() and
|
||||
(
|
||||
this.getReturnType() instanceof PlayAsyncResultPromise or
|
||||
this.getReturnType() instanceof PlayMVCResultClass or
|
||||
this.getReturnType() instanceof PlayAsyncResultCompletionStage
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Action-Method parameters. These are a source of user input
|
||||
*
|
||||
* Example - Class get's `username` & `password` as valid parameters
|
||||
* ```
|
||||
* public class Application extends Controller {
|
||||
* public Result index(String username, String password) {
|
||||
* return ok("It works!");
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
class PlayActionMethodQueryParameter extends Parameter {
|
||||
PlayActionMethodQueryParameter() {
|
||||
exists(PlayControllerActionMethod a |
|
||||
a.isPublic() and
|
||||
this = a.getAParameter()
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework HTTPRequestHeader Methods - `headers`, `getQueryString`, `getHeader`
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.6.0/api/java/play/mvc/Http.RequestHeader.html
|
||||
*/
|
||||
class PlayMVCHTTPRequestHeaderMethods extends Method {
|
||||
PlayMVCHTTPRequestHeaderMethods() { this.getDeclaringType() instanceof PlayMVCHTTPRequestHeader }
|
||||
|
||||
/**
|
||||
* Gets all references to play.mvc.HTTP.RequestHeader `getQueryString` method
|
||||
*/
|
||||
MethodAccess getQueryString() { this.hasName("getQueryString") and result = this.getAReference() }
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework mvc.Results Methods - `ok`, `status`, `redirect`
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.5.8/api/java/play/mvc/Results.html
|
||||
*/
|
||||
class PlayMVCResultsMethods extends Method {
|
||||
PlayMVCResultsMethods() { this.getDeclaringType() instanceof PlayMVCResultsClass }
|
||||
|
||||
/**
|
||||
* Gets all references to play.mvc.Results `ok` method
|
||||
*/
|
||||
MethodAccess getAnOkAccess() { this.hasName("ok") and result = this.getAReference() }
|
||||
|
||||
/**
|
||||
* Gets all references to play.mvc.Results `redirect` method
|
||||
*/
|
||||
MethodAccess getARedirectAccess() { this.hasName("redirect") and result = this.getAReference() }
|
||||
}
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
import java
|
||||
|
||||
/**
|
||||
* Play Framework AddCSRFToken Annotation
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.8.x/JavaCsrf
|
||||
*/
|
||||
class PlayAddCSRFTokenAnnotation extends Annotation {
|
||||
PlayAddCSRFTokenAnnotation() {
|
||||
this.getType().hasQualifiedName("play.filters.csrf", "AddCSRFToken")
|
||||
}
|
||||
}
|
||||
@@ -1,28 +0,0 @@
|
||||
import java
|
||||
|
||||
/**
|
||||
* Play Framework Async Promise - Gets the Promise<Result> Generic Member/Type of (play.libs.F)
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.5.1/api/java/play/libs/F.Promise.html
|
||||
*/
|
||||
class PlayAsyncResultPromise extends Member {
|
||||
PlayAsyncResultPromise() {
|
||||
exists(Class c |
|
||||
c.hasQualifiedName("play.libs", "F") and
|
||||
this = c.getAMember() and
|
||||
this.getQualifiedName() = "F.Promise<Result>"
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework Async Generic Result - Gets the CompletionStage<Result> Generic Type of (java.util.concurrent)
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.6.x/JavaAsync
|
||||
*/
|
||||
class PlayAsyncResultCompletionStage extends Type {
|
||||
PlayAsyncResultCompletionStage() {
|
||||
this.hasName("CompletionStage<Result>") and
|
||||
this.getCompilationUnit().getPackage().hasName("java.util.concurrent")
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
import java
|
||||
|
||||
/**
|
||||
* Play Framework Explicit Body Parser Annotation
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.8.x/JavaBodyParsers#Choosing-an-explicit-body-parser
|
||||
*/
|
||||
class PlayBodyParserAnnotation extends Annotation {
|
||||
PlayBodyParserAnnotation() { this.getType().hasQualifiedName("play.mvc", "BodyParser<>$Of") }
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
import java
|
||||
import semmle.code.java.frameworks.play.PlayAsyncResult
|
||||
import semmle.code.java.frameworks.play.PlayMVCResult
|
||||
|
||||
/**
|
||||
* Play MVC Framework Controller
|
||||
*/
|
||||
class PlayMVCControllerClass extends Class {
|
||||
PlayMVCControllerClass() { this.hasQualifiedName("play.mvc", "Controller") }
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework Controllers which extends/implements PlayMVCController recursively - Used to find all Controllers
|
||||
*/
|
||||
class PlayController extends Class {
|
||||
PlayController() {
|
||||
exists(Class t | this.extendsOrImplements*(t) and t instanceof PlayMVCControllerClass)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework Controller Action Methods - Mappings to route files
|
||||
*
|
||||
* Sample Route - `POST /login @com.linkedin.Application.login()`
|
||||
*
|
||||
* Example - class get's `index` & `login` as valid action methods.
|
||||
* ```
|
||||
* public class Application extends Controller {
|
||||
* public Result index(String username, String password) {
|
||||
* return ok("It works!");
|
||||
* }
|
||||
*
|
||||
* public Result login() {
|
||||
* return ok("Log me In!");
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.8.x/JavaActions
|
||||
*/
|
||||
class PlayControllerActionMethod extends Method {
|
||||
PlayControllerActionMethod() {
|
||||
exists(PlayController controller |
|
||||
this = controller.getAMethod() and
|
||||
(
|
||||
this.getReturnType() instanceof PlayAsyncResultPromise or
|
||||
this.getReturnType() instanceof PlayMVCResultClass or
|
||||
this.getReturnType() instanceof PlayAsyncResultCompletionStage
|
||||
)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Action-Method parameters. These are a source of user input
|
||||
*
|
||||
* Example - Class get's `username` & `password` as valid parameters
|
||||
* ```
|
||||
* public class Application extends Controller {
|
||||
* public Result index(String username, String password) {
|
||||
* return ok("It works!");
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
class PlayActionMethodQueryParameter extends Parameter {
|
||||
PlayActionMethodQueryParameter() {
|
||||
exists(PlayControllerActionMethod a |
|
||||
a.isPublic() and
|
||||
this = a.getAParameter()
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
import java
|
||||
|
||||
/**
|
||||
* Play MVC Framework HTTP Request Header Class
|
||||
*/
|
||||
class PlayMVCHTTPRequestHeader extends RefType {
|
||||
PlayMVCHTTPRequestHeader() { this.hasQualifiedName("play.mvc", "Http$RequestHeader") }
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework HTTPRequestHeader Methods - `headers`, `getQueryString`, `getHeader`
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.6.0/api/java/play/mvc/Http.RequestHeader.html
|
||||
*/
|
||||
class PlayMVCHTTPRequestHeaderMethods extends Method {
|
||||
PlayMVCHTTPRequestHeaderMethods() { this.getDeclaringType() instanceof PlayMVCHTTPRequestHeader }
|
||||
|
||||
/**
|
||||
* Gets all references to play.mvc.HTTP.RequestHeader `getQueryString` method
|
||||
*/
|
||||
MethodAccess getQueryString() {
|
||||
this.hasName("getQueryString") and result = this.getAReference()
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
import java
|
||||
|
||||
/**
|
||||
* Play MVC Framework Result Class
|
||||
*/
|
||||
class PlayMVCResultClass extends Class {
|
||||
PlayMVCResultClass() { this.hasQualifiedName("play.mvc", "Result") }
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
import java
|
||||
|
||||
/**
|
||||
* Play MVC Framework Results Class
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.8.x/JavaActions
|
||||
*/
|
||||
class PlayMVCResultsClass extends Class {
|
||||
PlayMVCResultsClass() { this.hasQualifiedName("play.mvc", "Results") }
|
||||
}
|
||||
|
||||
/**
|
||||
* Play Framework mvc.Results Methods - `ok`, `status`, `redirect`
|
||||
*
|
||||
* Documentation: https://www.playframework.com/documentation/2.5.8/api/java/play/mvc/Results.html
|
||||
*/
|
||||
class PlayMVCResultsMethods extends Method {
|
||||
PlayMVCResultsMethods() { this.getDeclaringType() instanceof PlayMVCResultsClass }
|
||||
|
||||
/**
|
||||
* Gets all references to play.mvc.Results `ok` method
|
||||
*/
|
||||
MethodAccess getAnOkAccess() {
|
||||
this.hasName("ok") and result = this.getAReference()
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets all references to play.mvc.Results `redirect` method
|
||||
*/
|
||||
MethodAccess getARedirectAccess() {
|
||||
this.hasName("redirect") and result = this.getAReference()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user