求PHP 網站擷取用戶端MAC地址的提案

來源:互聯網
上載者:User
求PHP 網站擷取用戶端MAC地址的方案
現在有個PHP網站,想獲得訪問客戶的MAC地址,哪位大拿有什麼好的解決方案,請告訴小弟,謝謝了。
------解決方案--------------------
………………

這個是不可能的。

你所能擷取到的只能是用戶端的IP地址、瀏覽器資訊。

MAC地址肯定擷取不到,除非你讓用戶端安控制項……
------解決方案--------------------
除非執行段bat或者shell指令碼擷取
------解決方案--------------------
用exec 執行命令 試試
------解決方案--------------------
讓使用者自己輸入,這是目前最好的辦法
------解決方案--------------------
你要有方法了,記得貼出來哦
------解決方案--------------------
define ('EXEC_TMP_DIR', 'C:\WINDOWS\Temp');

function windExec($cmd,$mode=''){

$cmdline = "cmd /C $cmd";
if ($mode=='FG'){
$outputfile = EXEC_TMP_DIR."\\".time() . ".txt";
$cmdline .= " > $outputfile";
$m = true;
}
else $m = false;


$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run($cmdline, 0, $m);

if ($outputfile){
$retStr = file_get_contents($outputfile);
unlink($outputfile);
}
else $retStr = "";

return $retStr;

}

echo windExec('ipconfig/all','FG');

這window XP可以,我已經做了測試.在我的機子上面可以..我覺得已改window 都可以,只是temp檔案的位置可能不一樣
------解決方案--------------------
define ('EXEC_TMP_DIR', 'C:\WINDOWS\Temp');

function windExec($cmd,$mode=''){

$cmdline = "cmd /C $cmd";
if ($mode=='FG'){
$outputfile = EXEC_TMP_DIR."\\".time() . ".txt";
$cmdline .= " > $outputfile";
$m = true;
}
else $m = false;


$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run($cmdline, 0, $m);

if ($outputfile){
$retStr = file_get_contents($outputfile);
unlink($outputfile);
}
else $retStr = "";

return $retStr;

}

echo windExec('ipconfig/all','FG');
在我的機子上面可以,估計window都可以,只是要改哈temp檔案的位置.
------解決方案--------------------
引用:
define ('EXEC_TMP_DIR', 'C:\WINDOWS\Temp');

function windExec($cmd,$mode=''){

$cmdline = "cmd /C $cmd";
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.