0
我試圖讓一個雙語因素認證(雙語)認證的雙語攻擊者工作。每次我發送一個POST來嘗試身份驗證,它都會以400(錯誤請求)失敗。以下是我試過的最新版本的代碼:雙因素認證(Duo)的雙語攻擊(二)
use Goutte\Client;
$client = new Client();
$res = $client->request('POST', 'https://example.com/cosign.cgi', [
'body' => 'login=theuser&password=thepassword&service=theservice&passcode=8675309',
]);
返回的錯誤頁面的正文說明需要啓用cookie。然而,在$ client中啓用了cookie。