强制门户身份验证后存储的 cookie 消失

Stored cookie dissapearing after captive portal authentication

必填"I'm new at this".

我遇到了一个问题,即在强制门户登录后 cookie 似乎没有持续存在。 我在我们的网络服务器上设置了一个强制门户,在 2 个 cookie 上存储 mac 和一个唯一 ID,将它们重定向到其他地方以进行身份​​验证,然后它们返回到我们的网络服务器,我们在其中查找该 uid 和return 一个独特的代码。 在 windows 计算机上测试它工作正常,但是在 android phone 上它没有。 似乎在 android phone 上,我可以看到在带有 wifi 热点的默认浏览器上设置了 cookie,因为我已经使该页面回显了该值。 但是当我在 chrome 浏览器中手动输入 url 时,它显示 cookie 不再设置为任何值。 在 2 android phones 和我的 windows 笔记本电脑上测试了这个(再次工作正常)。 对此有什么想法吗?

这可能看起来像一团糟。

这是他们登陆的第一页:

$sql = "select uid from table where mac =('$client_mac_address')";
$uidResult = $conn->query($sql);
if($uidResult->num_rows > 0) {
    while($row = mysqli_fetch_array($uidResult)) {
        $cookie_uid = "UID";
        echo $row['uid'];
        setcookie($cookie_uid,$row['uid'],time() + (86400 * 30),"/");
        if(!isset($_COOKIE[$cookie_uid])) {
            echo "Cookie named '" . $cookie_uid . "' is not set!";
        } else {
            echo "Cookie '" . $cookie_uid . "' is set!<br>";
            echo "Value is: " . $_COOKIE[$cookie_uid];
            echo $_COOKIE[$cookiename];
        }
    }
};

这是他们登陆的最后一页 我先得到他们的 MAC,然后用它来查找 uid:

<?php

$cookiename = "UID";
if(!isset($_COOKIE[$cookiename])) {
    echo "Cookie '" . $cookiename . "' isn't set <br>";
} else {
    echo "Cookie '" . $cookiename . "' is set <br>";
    echo "Value: " . $_COOKIE[$cookiename];
}

?>

<script>
function getCookie(UID) {
  var name = UID + "=";
  var decodedCookie = decodeURIComponent(document.cookie);
  var ca = decodedCookie.split(';');
  for(var i = 0; i <ca.length; i++) {
    var c = ca[i];
    while (c.charAt(0) == ' ') {
      c = c.substring(1);
    }
    if (c.indexOf(name) == 0) {
      return c.substring(name.length, c.length);
    }
  }
  return "";
}

function getCode(){
    var uid = getCookie("UID");
    if (uid == "") {
        return;
        console.log("empty");
    } else {
        if (window.XMLHttpRequest) {
            // code for IE7+, Firefox, Chrome, Opera, Safari
            xmlhttp = new XMLHttpRequest();
    } else {
        // code for IE6, IE5
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange = function() {
        if (this.readyState == 4 && this.status == 200) {
            document.getElementById("divCode").innerHTML = this.responseText;
            console.log("on ready");
        }
    };
    xmlhttp.open("GET","getCode.php?q="+uid,true);
    console.log("open");
    xmlhttp.send();
    console.log("send");
    }           
}

</script>

它转到服务器上的 php 文件来处理获取请求:

$q = intval($_GET['q']);
echo "$q";
$servername = "localhost";
$username = "user";
$password = "password";
$dbname = "dbname";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
if (!$conn) {
    die('can't connect: ' . mysqli_error($conn));
}
mysqli_select_db($conn,"table");
$sql="SELECT code FROM table WHERE uid = ".$q;
$result = mysqli_query($conn,$sql);

echo "<table>
<tr>
<th>Code</th>
</tr>";
while($row = mysqli_fetch_array($result)) {
    echo "<tr>";
    echo "<td>" . $row['code'] . "</td>";
    echo "</tr>";
}
echo "</table>";
mysqli_close($conn);

Captive Portal 将 cookie 存储在沙盒环境中,它不会与 android 和 ios 中的普通浏览器共享。