Joey Allen

Results 2 issues of Joey Allen

Should this be returning "sms" or "receiver"? ```java private String getCallbackType(MethodReference callbackMethod){ .... if (declaredClassName.equals("Landroid/content/BroadcastReceiver")) { return "sms"; } } ``` thanks, Joey

Hello, I have a question about Pysa's tainting. Currently I am trying to test a small example that considers `os.environ` a source and `exec` as a sink (shown below). I...