> php教程 > PHP源码 > 본문

PHP는 텔넷 연결, 명령 전송, 반환 값 획득 및 기타 기능을 구현하는 데 사용됩니다!

大家讲道理
풀어 주다: 2016-11-11 09:48:59
원래의
2005명이 탐색했습니다.

<?php
error_reporting(-1);
  
class Telnet {
 var $sock = NULL;
   
 function telnet($host,$port) {
  $this->sock = fsockopen($host,$port);
  socket_set_timeout($this->sock,2,0);
 }
  
 function close() {
  if ($this->sock)  fclose($this->sock);
  $this->sock = NULL;
 }
   
 function write($buffer) {
  $buffer = str_replace(chr(255),chr(255).chr(255),$buffer);
  fwrite($this->sock,$buffer);
 }
   
 function getc() {
  return fgetc($this->sock);
 }
  
 function read_till($what) {
  $buf = &#39;&#39;;
  while (1) {
   $IAC = chr(255);
     
   $DONT = chr(254);
   $DO = chr(253);
     
   $WONT = chr(252);
   $WILL = chr(251);
     
   $theNULL = chr(0);
   
   $c = $this->getc();
     
   if ($c === false) return $buf;
   if ($c == $theNULL) {
    continue;
   }
   
   if ($c == "1") {
    continue;
   }
  
   if ($c != $IAC) {
    $buf .= $c;
    
    if ($what == (substr($buf,strlen($buf)-strlen($what)))) {
     return $buf;
    }
    else {
     continue;
    }
   }
  
   $c = $this->getc();
     
   if ($c == $IAC) {
   $buf .= $c;
   }
   else if (($c == $DO) || ($c == $DONT)) {
    $opt = $this->getc();
    // echo "we wont ".ord($opt)."\n";
    fwrite($this->sock,$IAC.$WONT.$opt);
   }
   elseif (($c == $WILL) || ($c == $WONT)) {
    $opt = $this->getc();
    // echo "we dont ".ord($opt)."\n";
    fwrite($this->sock,$IAC.$DONT.$opt);
   }
   else {
    // echo "where are we? c=".ord($c)."\n";
   }
  }
 }
}
  
/*
$telnet = new telnet("192.168.0.1",23);
echo $telnet->read_till("login: ");
$telnet->write("kongxx\r\n");
echo $telnet->read_till("password: ");
$telnet->write("KONGXX\r\n");
echo $telnet->read_till(":> ");
$telnet->write("ls\r\n");
echo $telnet->read_till(":> ");
echo $telnet->close();
  
*/
로그인 후 복사

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!