sqlmapapi指令函数

进入到C:/Python2/lib/utils/api.py,其中比较常用的核心方法如下:
用户方法:
@get("/task/new"):创建新的任务ID
@get("/task//delete"):删除任务ID
管理函数:
@get("/admin//list"):查看用户的任务列表(任务ID数量及状态)
  sqlmapapi指令函数_第1张图片
@get("/admin//flush"):清空任务列表全部历史任务
核心交互函数:
@get("/option//list"):列出某个任务ID的配置项
@post("/option//get"):Get the value of an option (command line switch) for a certain task ID
@post("/option//set"):Set an option (command line switch) for a certain task ID
@post("/scan//start"):发起扫描
@get("/scan//stop"):结束扫描
@get("/scan//kill"):Kill a scan 阻断扫描
@get("/scan//status"):返回扫描状态
@get("/scan//data"):获取扫描数据
扫描日志处理函数:
@get("/scan//log//"):获取日志信息的子集
@get("/scan//log"):获取扫描日志信息

处理output目录下文件的函数:

@get("/download///"):下载文件,系统文件位置在C:\Users\用户名\.sqlmap\output目录下


你可能感兴趣的:(sqlmap)