第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

這個(gè)php登錄系統(tǒng)安全嗎?

這個(gè)php登錄系統(tǒng)安全嗎?

PHP
慕斯王 2023-03-04 15:02:41
這個(gè)登錄頁(yè)面是否安全,正在研究 sql 注入,如果是的話,他們是否存在漏洞,我該如何管理它?我之前將用戶詳細(xì)信息加密到一個(gè)文件中并存儲(chǔ)在本地。我也用localhost,想著換個(gè)域。將用戶詳細(xì)信息存儲(chǔ)在文件中是否存在任何問題?請(qǐng)無視html<?phpsession_start();?><html>     <body>          <form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">          <input type="text" name="Username"value="">          <?php if ($_SERVER["REQUEST_METHOD"] == "POST"){          $user = $_REQUEST['Username'];          }  ?>          <form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">          <input type="password" name="Password"value="">          <?php if ($_SERVER["REQUEST_METHOD"] == "POST"){          $password = $_REQUEST['Password'];          }              if (isset($_POST['submit'])) {               $file = $user.".txt";               if (file_exists($file)){                  $contents = file_get_contents($file);                  $ciphering = "AES-128-CTR";                   $iv_length = openssl_cipher_iv_length($ciphering);                   $options = 0;                   $decryption_iv = '#secret#';                   $decryption_key = "#key#";                     $decryption= openssl_decrypt ($contents, $ciphering,                    $decryption_key, $options, $decryption_iv);                    if($decryption==$password){                        echo("details match");                        setcookie("username", $user,time()+2000);                        $_SESSION["logged_in"] = true;                        $_SESSION["username"] = $user;                        header("Location:/login/new folder/findchat.php?username");                        exit();                     }                     else{                          echo('Complete im not a robot');                     }                        }          else{echo("pasword or username is not valid");}          }          ?>          <input type="submit"value="submit"name="submit">     </body></html>抱歉我的拼寫錯(cuò)誤,謝謝
查看完整描述

1 回答

?
料青山看我應(yīng)如是

TA貢獻(xiàn)1772條經(jīng)驗(yàn) 獲得超8個(gè)贊

哇,這太可怕了。有很多漏洞。乍一看,這些是讓我眼前一亮的:


<form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">

這很容易受到 XSS 攻擊,就像這樣:http://example.com/badlogin.php/"><script>alert("xss")</script>


$file = $user.".txt";

if (file_exists($file)){

   $contents = file_get_contents($file);

瑣碎的目錄遍歷。


$decryption= openssl_decrypt ($contents, $ciphering,  

$decryption_key, $options, $decryption_iv);  

if($decryption==$password){

您應(yīng)該散列密碼,而不是加密它們。


您唯一沒有的漏洞是 SQL 注入,那是因?yàn)槟鷽]有使用任何 SQL。


查看完整回答
反對(duì) 回復(fù) 2023-03-04
  • 1 回答
  • 0 關(guān)注
  • 169 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)