mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +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
|
|
}
|
|
}
|