SSH2: limit the size of data that expect() looks at

This commit is contained in:
terrafrost 2015-07-14 19:05:52 -05:00
parent cdda621903
commit 4dc79b96ed
1 changed files with 1 additions and 1 deletions

View File

@ -2670,7 +2670,7 @@ class Net_SSH2
$match = $expect;
while (true) {
if ($mode == NET_SSH2_READ_REGEX) {
preg_match($expect, $this->interactiveBuffer, $matches);
preg_match($expect, substr($this->interactiveBuffer, -1024), $matches);
$match = isset($matches[0]) ? $matches[0] : '';
}
$pos = strlen($match) ? strpos($this->interactiveBuffer, $match) : false;