Skip to content

Commit 92bd7fa

Browse files
committed
updated
1 parent 40a3111 commit 92bd7fa

File tree

4 files changed

+17
-24
lines changed

4 files changed

+17
-24
lines changed

README.md

+17-10
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,25 @@ sqlmapapi 服务器端在后台运行,日志输出到`api_serv.log`
2323

2424
#目录结构说明
2525
- `sqlmap_web/`
26-
~~- `api_serv_conf.php` API服务器配置~~
26+
- `api_serv.log` 本地API服务器日志文件
2727
- `dist/` 包含前端框架bootstrap,jQuery等
28-
- `/js/front.js` 一些按钮的异步请求,tasks_list, new_task等等
29-
~~- `admin_list.php` 任务列表请求~~
30-
~~- `front.htm` 前端页面~~
31-
~~- `flush_tasks.php` 清除列表请求~~
32-
~~- `handler.php` 表单数据分析,变更为JSON数据格式,发送到API服务器~~
28+
- `/js/front.js` 页面的异步请求,tasks_list, new_task等等
29+
- `/css/style.css` 页面css
30+
- include/
31+
- `api_serv_conf.php` API服务器配置
32+
- `connect_db.php` 数据库连接
33+
- handle/
34+
- `admin_list.php` 任务列表请求
35+
- `flush_tasks.php` 清除列表请求
36+
- `handler.php` 表单数据分析,封装为JSON数据格式,发送到API服务器
37+
- `request_function.php` 请求函数
38+
- `scan_data.php` 扫描结果请求
39+
- `scan_log.php` 扫描日志请求
40+
- `scan_status.php` 扫描状态请求
41+
- `scan_result.php` 直接向sqlmapipc数据库查询任务结果请求
3342
- `README.md` README文件
34-
~~- `request_function.php` 请求函数~~
35-
~~- `scan_data.php` 扫描结果请求~~
36-
~~- `scan_log.php` 扫描日志请求~~
37-
~~- `scan_status.php` 扫描状态请求~~
43+
- `index.htm` 首页
44+
- `start_api_serv.sh` 启动脚本
3845
- `set_options.txt` sqlmapapi请求参数合集,供参考
3946

4047

handle/hello.php

-1
This file was deleted.

include/connect_db.php

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22
//include '/var/www/sqlmap_web/include/myDB.php';
3-
include './myDB.php';
43

54
//$handle = fopen("/var/www/sqlmap_web/api_serv.log", "r");
65
$handle = fopen("../api_serv.log", "r");

include/myDB.php

-12
This file was deleted.

0 commit comments

Comments
 (0)