c0ny1/java-object-searcher

一直在Evaluating... 没有输出结果

r0ckysec opened this issue · 2 comments

请教一下,在定位BeanShell1信息泄露复现时,一直没有结果,是我姿势哪里有问题吗
image

师傅,解决了吗

修改SearchRequstByBFS和SearchRequstByDFS构造函数:

public SearchRequstByBFS(Object target){
  this.target = target;
  //把当前的元素加入到队列尾
  q.offer(new NodeT.Builder().setChain("").setField_name("TargetObject").setField_object(target).build());
}

添加addKey()

public void addKey(Keyword keyword){
  this.keys.add(keyword);
}