Skip to content

一键识别、提取 Java SpringBoot 项目的所有路由信息。One-click identification and extraction of all routing information of Java SpringBoot projects.

Notifications You must be signed in to change notification settings

Tr0e/RouteScanner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

Background

本项目的目标是通过自动化脚本一键识别、提取 Java SpringBoot 项目的所有路由信息,方便识别、梳理代码审计的工作量,并统计审计进度和覆盖率。

The goal of this project is to use automated scripts to identify and extract all routing information of the Java SpringBoot project in one click, to facilitate the identification and sorting of code audit workload, and to count audit progress and coverage.

Implement

截至 20240906,已实现 SpringBoot 项目如下相关路由信息的收集:

  1. Maven项目文件夹名(Project);
  2. 项目级的上下文值 context;
  3. 类级别的父级路由 parent_route;
  4. 函数级的子路由;
  5. 路由对应接口支持的 HTTP 请求类型;
  6. 路由对应函数的返回值、函数名、函数具体参数;
  7. 路由对应函数上方的所有注解信息;
  8. 路由定义所在的类的具体路径信息;

WebGoat 项目为例,首版本具体的效果图如下(也可参见本项目的效果演示 xlsx 文件):

在这里插入图片描述

而最新版本的效果以 https://github.com/elunez/eladmin 为例: image

详细实现信息请参见我的博客:SpringBoot项目路由信息自动化提取脚本

How to use

输入你本地保存的 SpringBoot 项目源码的根路径即可,比如'D:\Code\Java\WebGoat-2023.8'(支持路径下包含多个项目,可同时扫描),随后会自动进行扫描并输出统计表格。

python .\scan_routes.py -h                                          
usage: scan_routes.py [-h] [-sheet SHEET] [-dir DIR]

options:
  -h, --help    show this help message and exit
  -sheet SHEET  Use "one" or "more" to specify whether the generated routing information is concentrated in one sheet or divided into multiple sheets by project.
  -dir DIR      Specify the code path to be scanned

Update

  • 20240829,首版本开发完成;
  • 20240830,修复父级路由识别的已知Bug;
  • 20240831,添加对多个maven项目同时扫描的功能;
  • 20240906,支持通过参数设置将所有路由集中在一个sheet,新增Project、Annotation(注解)两列;

More

本项目实现了对 Java SpringBoot 项目一键自动化识别、统计路由信息,并生成可视化的统计表格,此类项目在 Github 上较少,故开源代码为社区做点微薄贡献。因当前的实验数据并不是很多,其它 Java 源代码项目中也可能出现不适配的情况,后续有时间的话会持续优化、完善,欢迎提交 issues。

About

一键识别、提取 Java SpringBoot 项目的所有路由信息。One-click identification and extraction of all routing information of Java SpringBoot projects.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages