• Stars
    star
    163
  • Rank 231,141 (Top 5 %)
  • Language
    Python
  • Created over 4 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

a burp extension to find where use fastjson

Fastjson-Scanner

闲来无事,在家写了个fastjson后端组件探测,用于探测后端是否使用fastjson。

使用的poc如下:

fastjson_poc = '{{"@type":"java.net.URL","val":"http://%s"}:"x"}' % val

优点

不仅能够探测POST中的json数据,还能够判断GET中的json数据,支持urlencode、urldecode等。

两种数据对应格式如下:

GET:

GET /?json={"fastjson":"example"}

POST:

POST /

...


{"fastjson":"example"}

使用方法

导入插件即可默认开始使用,对数据包进行被动扫描,由于使用的是burp自带的dnslog,所以稍微会有电脑延时,代码里写了sleep 10来获取result。

first

当导入数据包后,在burp内可以看到FastjsonScanner这个窗口,代表导入成功,当探测成功后,会在其中显示对应的数据包以及参数:

second