secure-software-engineering / phasar

A LLVM-based static analysis framework.
Other
919 stars 140 forks source link

Which one is better for developing a field sensitive taint analysis #649

Closed Luweicai closed 11 months ago

Luweicai commented 11 months ago

I want to write an taint analysis by myself, However I am a little confused about the current template analysis. According to the decsription in https://github.com/secure-software-engineering/phasar/wiki/Getting-Started:-Running-an-Analysis IDEExtendedTaintAnalysis is a field-sensitive analysis. however the IFDSFieldSensTaintAnalysis seems to be more appropriate according to it's name.

MMory commented 11 months ago

Hi @Luweicai , please use IDEExtendedTaintAnalysis, the other one will be removed in the foreseeable future.

Luweicai commented 11 months ago

Hi @MMory . Thank you very much。