-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
设置类型漏洞的检测问题 #47
Comments
true 在 jimple 里就是数字 1,false 是 0。可以用ConstNumberMode {
"WebViewDebug": {
"traceDepth" : 1,
"ConstNumberMode": true,
"targetNumberArr": [1],
"sink": {
"<android.webkit.WebView: void setWebContentsDebuggingEnabled(boolean)>": {
"TaintCheck": ["p0"]
}
}
}
}
|
可以了,谢谢师傅! |
那如果参数是通过变量传入的呢,ConstNumberMode好像找不到这个入口
|
还有个问题,这种设置通常是有默认值的,那如何判断没有调用某个方法,即默认为true |
这个调整一下traceDepth,不过不要太深了,会引起很多误报。 |
如果是判断某个函数没有调用,这个appshark不好检测。 |
我不了解这个函数签名具体是怎么匹配的,能不能在APIMode增加这个功能,先找到某个类名的所有函数,然后看是否包含特定函数 |
你可以好好想想这个功能怎么设计,如果确实能描述清楚,可以增加这个单独的mode都是可以的。 |
有时候感觉不太行,ConstString模式似乎是去jimple里匹配每一行是否有字符串,然后添加到constStringPatternMap缓存,但是像下面这种情况,只会把A处的表达式添加进去,B处的就被忽略了
|
B处在做指针分析的时候不是会被关联起来么? |
在那几个log文件里都没有搜到errorExample2dexKt,在results.json里也没有 |
有一类常规漏洞是设置上的错误,比如针对WebView的
setJavaScriptEnabled(true)
、setWebContentsDebuggingEnabled(true)
、setAllowContentAccess(true)
等。试过APIMode,但不能对函数的参数做过滤;如果用SliceMode,将1传播到setJavaScriptEnabled,但是source不支持整数类型。
大佬能否给一个规则示例。
The text was updated successfully, but these errors were encountered: