Kir*_*ill 6 php authentication automation curl do-while
这是交易.我要求监控某些受密码保护的网页以进行更改,并在页面大小与我所知(即已修改)不同时播放声音警报.这是我提出的一大堆代码.
<?php
$e = curl_init();
curl_setopt($e, CURLOPT_URL, 'http://example.com/Account/LogOn');
curl_setopt($e, CURLOPT_POST, 1);
curl_setopt($e, CURLOPT_POSTFIELDS, 'UserName=xxx@example.com&Password=password');
curl_setopt($e, CURLOPT_COOKIEJAR, 'cookie.txt');
curl_setopt($e, CURLOPT_REFERER, 'http://example.com');
curl_setopt($e, CURLOPT_RETURNTRANSFER, 1);
curl_exec($e);
$sizevalue = 2399;
do {
curl_setopt($e, CURLOPT_URL, 'http://example.com/panel.php');
$content = curl_exec($e);
$numberofchars = strlen($content);
sleep(15);
} while ($numberofchars = $sizevalue);
curl_close($e);
echo '
<audio controls="controls" autoplay="autoplay">
<source src="/path/to/your/audio.mp3" type="audio/mp3">
<source src="/path/to/your/audio.ogg" type="audio/ogg">
<embed src="/path/to/your/audio.mp3">
</audio>';
php?>
Run Code Online (Sandbox Code Playgroud)
问题1.如果我错了,请纠正我,但据我所知,不是连接服务器,只发布一次用户名和密码,保持连接处于活动状态并使用该auth密钥cookie.txt进行后续操作,它会不断地将用户名和密码发送到每个登录表单.转动周期.我该如何解决?
问题2.我需要脚本给我一些临时状态,因为目前如果不满足某些条件它基本上变成无限循环,托管脚本的服务器给我超时错误.
问题3.实现声音警报的最简单方法是什么?OGG文件播放?Youtube重定向?
问题1:curl_multi_exec在你的情况下并不是真的有必要。保持卷曲手柄打开就足够了。
问题 2:sleep()orusleep()可以很好地实现此目的
问题 3:您可以只输出 html 标记。另一种选择是嵌入自动播放警报声音的 Flash 文件或视频。取决于它在哪里运行以及出于什么目的。
请注意,此类脚本最好不要在浏览器中运行。最好设置一个 cron 脚本,按设定的时间间隔检查 url,并且不使用do while循环或sleep.
这是使用这些更正和一些示例编写的代码。
<?php
set_time_limit(0); // this script will now run forever. but a safer value might be something like X hours or X number of minutes.
$e = curl_init();
curl_setopt($e, CURLOPT_URL, 'http://example.com/Account/LogOn');
curl_setopt($e, CURLOPT_POST, true);
curl_setopt($e, CURLOPT_POSTFIELDS, 'UserName=xxx@example.com&Password=password');
// you'll need both CURLOPT_COOKIEJAR and CURLOPT_COOKIEFILE if you plan on NOT using curl's internal cookie handling
curl_setopt($e, CURLOPT_COOKIEJAR, 'cookie.txt'); // this is where we write the cookie data
curl_setopt($e, CURLOPT_COOKIEFILE, 'cookie.txt'); // this is where we read the cookie data to use
curl_setopt($e, CURLOPT_REFERER, 'http://example.com/');
curl_setopt($e, CURLOPT_RETURNTRANSFER, true);
// you can omit the next two lines if you think they won't be needed
curl_setopt($e, CURLOPT_FOLLOWLOCATION, true); // in case the remote server does some kind of http redirection, like a 301 redirect
curl_setopt($e, CURLOPT_MAXREDIRS, 3); // The maximum amount of HTTP redirections to follow, in case the remote server is badly configured and has an endless redirection loop
curl_exec($e);
$sizevalue = 2399;
$maximum_checks = 30; // I've added this as a cap for the loop, so that you only run it this many times.
$checks = 0;
$seconds = 15;
do {
$checks++;
curl_setopt($e, CURLOPT_URL, 'http://example.com/panel.php');
$content = curl_exec($e);
$numberofchars = strlen($content);
// optionally... instead of the strlen method above you could also use
// http://php.net/manual/en/function.curl-getinfo.php
if (!curl_errno($e)) {
$info = curl_getinfo($e);
echo 'content-length of download, read from Content-Length: field :' . $info['download_content_length']."<br>\n";
$numberofchars = $info['download_content_length'];
}
if ($checks === $maximum_checks) {
exit('No changes after '.($seconds * $maximum_checks).' seconds<br>'.PHP_EOL);
}
sleep($seconds); // wait for 15 seconds
} while ($numberofchars != $sizevalue); // fix up your TRUTH expression, don't forget it is != for proper comparison in your case. Without it you go into an infinite loop.
curl_close($e);
// if our php script got this far then
echo '
<audio controls="controls" autoplay="autoplay">
<source src="/path/to/your/audio.mp3" type="audio/mp3">
<source src="/path/to/your/audio.ogg" type="audio/ogg">
<embed src="/path/to/your/audio.mp3">
</audio>';
?>
Run Code Online (Sandbox Code Playgroud)