如何为 find sec bug 插件编写自定义检测器?

Posted

技术标签:

【中文标题】如何为 find sec bug 插件编写自定义检测器?【英文标题】:How to write custom detector for find sec bug plugin? 【发布时间】:2016-10-25 07:50:24 【问题描述】:

如果有人编写一个样本检测器来检测单词的使用,那将会很有帮助。 在此先感谢

【问题讨论】:

欢迎来到 SO!请分享你也尝试过的东西。 ***.com/help/how-to-ask 我编写了一个自定义检测器,用于查找 system.out.println 的使用情况。但它给出了很多误报。例如它在以下语句中显示错误 (UploadForm object : uploadFormObj.getAllObjInExcel())。 【参考方案1】:

以下是用于检测 system.out.printl 的示例代码,但它显示了许多误报错误

  package com.h3xstream.findsecbugs;

import org.apache.bcel.Constants;

import edu.umd.cs.findbugs.BugInstance;
import edu.umd.cs.findbugs.BugReporter;
import edu.umd.cs.findbugs.Priorities;
import edu.umd.cs.findbugs.bcel.OpcodeStackDetector;
import edu.umd.cs.findbugs.classfile.ClassDescriptor;
import edu.umd.cs.findbugs.classfile.FieldDescriptor;

public class CallToSystemOutPrintlnDetector2 extends OpcodeStackDetector 

    private BugReporter bugReporter;

    public CallToSystemOutPrintlnDetector2(BugReporter bugReporter) 
        super();
        this.bugReporter = bugReporter;

    

    public void sawOpcode(int seen) 
        if (seen == Constants.GETSTATIC) 
            try 
                FieldDescriptor operand = getFieldDescriptorOperand();
                ClassDescriptor classDescriptor = operand.getClassDescriptor();
                if ("java/lang/System".equals(classDescriptor.getClassName())
                        && ("err".equals(operand.getName()) || "out"
                                .equals(operand.getName()))) 

                    bugReporter
                            .reportBug(new BugInstance(this,
                                    "MY_CALL_TO_SYSTEM_OUT_BUG",
                                    Priorities.NORMAL_PRIORITY)
                                    //
                                    .addClass(this).addMethod(this)
                                    .addSourceLine(this));
                
             catch (Exception e) 
                // ignore
            
        
    


【讨论】:

以上是关于如何为 find sec bug 插件编写自定义检测器?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 find-sec-bugs 中仅运行已定义的检测器

如何为 ember.js 创建自定义适配器?

如何为 iPhone 创建自定义 Interface Builder 插件?

如何为spring数据编写自定义模块

如何为复杂对象编写自定义 JSON 解码器?

如何为自定义 XCTest 断言编写自动化测试?