这是我想用php完成的(可能使用exce()?):
使用名为proxychains的程序telnet到whois注册商:
proxychains telent whois.someregistrar 43
如果失败 - >再试一次
将域名提供给连接:
somedomainname.com
我没有使用shell脚本的经验,所以我如何捕获事件 在哪个telnet连接并挂起输入,我如何“喂”它?
我完全离开这里还是这是正确的方法呢?
编辑:我看到python有一个很好的方法来使用expect
来处理这个问题答案 0 :(得分:1)
这是一个基本的工作示例。
<?php
$whois = 'whois.isoc.org.il'; // server to connect to for whois
$data = 'drew.co.il'; // query to send to whois server
$errFile = '/tmp/error-output.txt'; // where stderr gets written to
$command = "proxychains telnet $whois 43"; // command to run for making query
// variables to pass to proc_open
$cwd = '/tmp';
$env = null;
$descriptorspec = array(
0 => array("pipe", "r"), // stdin is a pipe that the child will read from
1 => array("pipe", "w"), // stdout is a pipe that the child will write to
2 => array("file", "/tmp/error-output.txt", "a") // stderr is a file to write to
);
// process output goes here
$output = '';
// store return value on failure
$return_value = null;
// open the process
$process = proc_open($command, $descriptorspec, $pipes, $cwd, $env);
if (is_resource($process)) {
echo "Opened process...\n";
$readBuf = '';
// infinite loop until process returns
for(;;) {
usleep(100000); // dont consume too many resources
// TODO: implement a timeout
$stat = proc_get_status($process); // get info on process
if ($stat['running']) { // still running
$read = fread($pipes[1], 4096);
if ($read) {
$readBuf .= $read;
}
// read output to determine if telnet connected successfully
if (strpos($readBuf, "Connected to $whois") !== false) {
// write our query to process and append newline to initiate
fwrite($pipes[0], $data . "\n");
// read the output of the process
$output = stream_get_contents($pipes[1]);
break;
}
} else {
// process finished before we could do anything
$output = stream_get_contents($pipes[1]); // get output of command
$return_value = $stat['exitcode']; // set exit code
break;
}
}
echo "Execution completed.\n";
if ($return_value != null) {
var_dump($return_value, file_get_contents($errFile));
} else {
var_dump($output);
}
// close pipes
fclose($pipes[1]);
fclose($pipes[0]);
// close process
proc_close($process);
} else {
echo 'Failed to open process.';
}
这应该从命令行运行,但不一定是这样。我试着评论它相当不错。基本上在开始时您可以设置whois服务器和要查询的域。
该脚本使用proc_open打开一个调用telnet的proxychains
进程。它会检查进程是否已成功打开,如果是,请检查其状态是否正在运行。在运行时,它将telnet的输出读入缓冲区并查找字符串telnet输出以指示我们已连接。
一旦检测到telnet已连接,它会将数据写入进程,后跟换行符(\n
),然后从telnet数据所在的管道中读取数据。一旦发生这种情况,它就会突破循环并关闭进程并处理。
您可以从$errFile
指定的文件中查看代理链的输出。这包含连接失败时的连接信息和调试信息。
可能需要进行一些额外的错误检查或进程管理才能使其更加健壮,但如果将其置于函数中,您应该能够轻松调用它并检查返回值以查看是否查询成功。
希望能给你一个很好的起点。
另请查看我的另一个proc_open
工作示例的答案,此示例实现了超时检查,以便在命令未在一定时间内完成时可以保释:Creating a PHP Online Grading System on Linux: exec Behavior, Process IDs, and grep