mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
12 lines
230 B
Java
12 lines
230 B
Java
import android.webkit.JavascriptInterface;
|
|
|
|
public class AndroidExposedObject {
|
|
public void sink(Object o) {
|
|
}
|
|
|
|
@JavascriptInterface
|
|
public void test(String arg) {
|
|
sink(arg); // $hasRemoteValueFlow
|
|
}
|
|
}
|