mirror of
https://github.com/github/codeql.git
synced 2026-03-31 12:48:17 +02:00
12 lines
231 B
Java
12 lines
231 B
Java
import android.webkit.JavascriptInterface;
|
|
|
|
public class AndroidExposedObject {
|
|
public void sink(Object o) {
|
|
}
|
|
|
|
@JavascriptInterface
|
|
public void test(String arg) {
|
|
sink(arg); // $ hasRemoteValueFlow
|
|
}
|
|
}
|