123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401 |
- <?php
- /**
- * Pure-PHP ssh-agent client.
- *
- * PHP versions 4 and 5
- *
- * Here are some examples of how to use this library:
- * <code>
- * <?php
- * include 'System/SSH/Agent.php';
- * include 'Net/SSH2.php';
- *
- * $agent = new System_SSH_Agent();
- *
- * $ssh = new Net_SSH2('www.domain.tld');
- * if (!$ssh->login('username', $agent)) {
- * exit('Login Failed');
- * }
- *
- * echo $ssh->exec('pwd');
- * echo $ssh->exec('ls -la');
- * ?>
- * </code>
- *
- * LICENSE: Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- *
- * @category System
- * @package System_SSH_Agent
- * @author Jim Wigginton <terrafrost@php.net>
- * @copyright 2014 Jim Wigginton
- * @license http://www.opensource.org/licenses/mit-license.html MIT License
- * @link http://phpseclib.sourceforge.net
- * @internal See http://api.libssh.org/rfc/PROTOCOL.agent
- */
- /**#@+
- * Message numbers
- *
- * @access private
- */
- // to request SSH1 keys you have to use SSH_AGENTC_REQUEST_RSA_IDENTITIES (1)
- define('SYSTEM_SSH_AGENTC_REQUEST_IDENTITIES', 11);
- // this is the SSH2 response; the SSH1 response is SSH_AGENT_RSA_IDENTITIES_ANSWER (2).
- define('SYSTEM_SSH_AGENT_IDENTITIES_ANSWER', 12);
- define('SYSTEM_SSH_AGENT_FAILURE', 5);
- // the SSH1 request is SSH_AGENTC_RSA_CHALLENGE (3)
- define('SYSTEM_SSH_AGENTC_SIGN_REQUEST', 13);
- // the SSH1 response is SSH_AGENT_RSA_RESPONSE (4)
- define('SYSTEM_SSH_AGENT_SIGN_RESPONSE', 14);
- /**#@-*/
- /**@+
- * Agent forwarding status
- *
- * @access private
- */
- // no forwarding requested and not active
- define('SYSTEM_SSH_AGENT_FORWARD_NONE', 0);
- // request agent forwarding when opportune
- define('SYSTEM_SSH_AGENT_FORWARD_REQUEST', 1);
- // forwarding has been request and is active
- define('SYSTEM_SSH_AGENT_FORWARD_ACTIVE', 2);
- /**#@-*/
- /**@+
- * Signature Flags
- *
- * See https://tools.ietf.org/html/draft-miller-ssh-agent-00#section-5.3
- *
- * @access private
- */
- define('SYSTEM_SSH_AGENT_RSA2_256', 2);
- define('SYSTEM_SSH_AGENT_RSA2_512', 4);
- /**#@-*/
- /**
- * Pure-PHP ssh-agent client identity object
- *
- * Instantiation should only be performed by System_SSH_Agent class.
- * This could be thought of as implementing an interface that Crypt_RSA
- * implements. ie. maybe a Net_SSH_Auth_PublicKey interface or something.
- * The methods in this interface would be getPublicKey, setSignatureMode
- * and sign since those are the methods phpseclib looks for to perform
- * public key authentication.
- *
- * @package System_SSH_Agent
- * @author Jim Wigginton <terrafrost@php.net>
- * @access internal
- */
- class System_SSH_Agent_Identity
- {
- /**
- * Key Object
- *
- * @var Crypt_RSA
- * @access private
- * @see self::getPublicKey()
- */
- var $key;
- /**
- * Key Blob
- *
- * @var string
- * @access private
- * @see self::sign()
- */
- var $key_blob;
- /**
- * Socket Resource
- *
- * @var resource
- * @access private
- * @see self::sign()
- */
- var $fsock;
- /**
- * Signature flags
- *
- * @var int
- * @access private
- * @see self::sign()
- * @see self::setHash()
- */
- var $flags = 0;
- /**
- * Default Constructor.
- *
- * @param resource $fsock
- * @return System_SSH_Agent_Identity
- * @access private
- */
- function __construct($fsock)
- {
- $this->fsock = $fsock;
- }
- /**
- * PHP4 compatible Default Constructor.
- *
- * @see self::__construct()
- * @param resource $fsock
- * @access public
- */
- function System_SSH_Agent_Identity($fsock)
- {
- $this->__construct($fsock);
- }
- /**
- * Set Public Key
- *
- * Called by System_SSH_Agent::requestIdentities()
- *
- * @param Crypt_RSA $key
- * @access private
- */
- function setPublicKey($key)
- {
- $this->key = $key;
- $this->key->setPublicKey();
- }
- /**
- * Set Public Key
- *
- * Called by System_SSH_Agent::requestIdentities(). The key blob could be extracted from $this->key
- * but this saves a small amount of computation.
- *
- * @param string $key_blob
- * @access private
- */
- function setPublicKeyBlob($key_blob)
- {
- $this->key_blob = $key_blob;
- }
- /**
- * Get Public Key
- *
- * Wrapper for $this->key->getPublicKey()
- *
- * @param int $format optional
- * @return mixed
- * @access public
- */
- function getPublicKey($format = null)
- {
- return !isset($format) ? $this->key->getPublicKey() : $this->key->getPublicKey($format);
- }
- /**
- * Set Signature Mode
- *
- * Doesn't do anything as ssh-agent doesn't let you pick and choose the signature mode. ie.
- * ssh-agent's only supported mode is CRYPT_RSA_SIGNATURE_PKCS1
- *
- * @param int $mode
- * @access public
- */
- function setSignatureMode($mode)
- {
- }
- /**
- * Set Hash
- *
- * ssh-agent doesn't support using hashes for RSA other than SHA1
- *
- * @param string $hash
- * @access public
- */
- function setHash($hash)
- {
- $this->flags = 0;
- switch ($hash) {
- case 'sha1':
- break;
- case 'sha256':
- $this->flags = SYSTEM_SSH_AGENT_RSA2_256;
- break;
- case 'sha512':
- $this->flags = SYSTEM_SSH_AGENT_RSA2_512;
- break;
- default:
- user_error('The only supported hashes for RSA are sha1, sha256 and sha512');
- }
- }
- /**
- * Create a signature
- *
- * See "2.6.2 Protocol 2 private key signature request"
- *
- * @param string $message
- * @return string
- * @access public
- */
- function sign($message)
- {
- // the last parameter (currently 0) is for flags and ssh-agent only defines one flag (for ssh-dss): SSH_AGENT_OLD_SIGNATURE
- $packet = pack('CNa*Na*N', SYSTEM_SSH_AGENTC_SIGN_REQUEST, strlen($this->key_blob), $this->key_blob, strlen($message), $message, $this->flags);
- $packet = pack('Na*', strlen($packet), $packet);
- if (strlen($packet) != fputs($this->fsock, $packet)) {
- user_error('Connection closed during signing');
- return false;
- }
- $temp = fread($this->fsock, 4);
- if (strlen($temp) != 4) {
- user_error('Connection closed during signing');
- return false;
- }
- $length = current(unpack('N', $temp));
- $type = ord(fread($this->fsock, 1));
- if ($type != SYSTEM_SSH_AGENT_SIGN_RESPONSE) {
- user_error('Unable to retreive signature');
- [2020-12-13 01:26:28] local.ERROR: include_once(Math/BigInteger.php): failed to open stream: No such file or directory {"exception":"[object] (ErrorException(code: 0): include_once(Math/BigInteger.php): failed to open stream: No such file or directory at /www/wwwroot/suichou_api/thrid/phpseclib1/Crypt/RSA.php:501)
- [stacktrace]
- #0 /www/wwwroot/suichou_api/thrid/phpseclib1/Crypt/RSA.php(501): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'include_once(Ma...', '/www/wwwroot/su...', 501, Array)
- #1 /www/wwwroot/suichou_api/thrid/phpseclib1/Crypt/RSA.php(501): include_once()
- #2 /www/wwwroot/suichou_api/app/Dao/PaymentCenter/Platform/Sxbank/SxBankApi.php(153): Crypt_RSA->__construct()
- #3 /www/wwwroot/suichou_api/app/Http/Controllers/TestController.php(15): App\\Dao\\PaymentCenter\\Platform\\Sxbank\\SxBankApi->sendSms(NULL)
- #4 [internal function]: App\\Http\\Controllers\\TestController->sxtest(Object(Illuminate\\Http\\Request))
- #5 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): call_user_func_array(Array, Array)
- #6 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(45): Illuminate\\Routing\\Controller->callAction('sxtest', Array)
- #7 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Route.php(219): Illuminate\\Routing\\ControllerDispatcher->dispatch(Object(Illuminate\\Routing\\Route), Object(App\\Http\\Controllers\\TestController), 'sxtest')
- #8 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Route.php(176): Illuminate\\Routing\\Route->runController()
- #9 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Router.php(680): Illuminate\\Routing\\Route->run()
- #10 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(30): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))
- #11 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(104): Illuminate\\Routing\\Pipeline->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))
- #12 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Router.php(682): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))
- #13 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Router.php(657): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))
- #14 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Router.php(623): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))
- #15 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Router.php(612): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request))
- #16 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(176): Illuminate\\Routing\\Router->dispatch(Object(Illuminate\\Http\\Request))
- #17 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(30): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))
- #18 /www/wwwroot/suichou_api/app/Http/Middleware/CommonHandle.php(77): Illuminate\\Routing\\Pipeline->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))
- #19 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(163): App\\Http\\Middleware\\CommonHandle->handle(Object(Illuminate\\Http\\Request), Object(Closure))
- #20 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(53): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))
- #21 /www/wwwroot/suichou_api/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Routing\\Pipeline->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))
- #22 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(163): Fideloper\\Proxy\\TrustProxies->handle(Object(Illuminate\\Http\\Request), Object(Closure))
- #23 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(53): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))
- #24 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Routing\\Pipeline->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))
- #25 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(163): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle(Object(Illuminate\\Http\\Request), Object(Closure))
- #26 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(53): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))
- #27 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Routing\\Pipeline->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))
- #28 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(163): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle(Object(Illuminate\\Http\\Request), Object(Closure))
- #29 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(53): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))
- #30 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Routing\\Pipeline->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))
- #31 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(163): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle(Object(Illuminate\\Http\\Request), Object(Closure))
- #32 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(53): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))
- #33 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(62): Illuminate\\Routing\\Pipeline->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))
- #34 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(163): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))
- #35 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(53): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))
- #36 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(104): Illuminate\\Routing\\Pipeline->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))
- #37 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))
- #38 /www/wwwroot/suichou_api/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(116): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request))
- #39 /www/wwwroot/suichou_api/public/index.php(67): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))
- #40 {main}
- "}
- [2020-12-13 01:26:28] local.ERROR: 访问路径:http://www.sc.cn/sx , 访问IP:172.17.0.1接口报错信息: include_once(Math/BigInteger.php): failed to open stream: No such file or directory ,报错行数:501
- if (!$ssh->_send_binary_packet($packet)) {
- return false;
- }
- $response = $ssh->_get_channel_packet($request_channel);
- if ($response === false) {
- return false;
- }
- $ssh->channel_status[$request_channel] = NET_SSH2_MSG_CHANNEL_OPEN;
- $this->forward_status = SYSTEM_SSH_AGENT_FORWARD_ACTIVE;
- return true;
- }
- /**
- * On successful channel open
- *
- * This method is called upon successful channel
- * open to give the SSH Agent an opportunity
- * to take further action. i.e. request agent forwarding
- *
- * @param Net_SSH2 $ssh
- * @access private
- */
- function _on_channel_open($ssh)
- {
- if ($this->forward_status == SYSTEM_SSH_AGENT_FORWARD_REQUEST) {
- $this->_request_forwarding($ssh);
- }
- }
- /**
- * Forward data to SSH Agent and return data reply
- *
- * @param string $data
- * @return data from SSH Agent
- * @access private
- */
- function _forward_data($data)
- {
- if ($this->expected_bytes > 0) {
- $this->socket_buffer.= $data;
- $this->expected_bytes -= strlen($data);
- } else {
- $agent_data_bytes = current(unpack('N', $data));
- $current_data_bytes = strlen($data);
- $this->socket_buffer = $data;
- if ($current_data_bytes != $agent_data_bytes + 4) {
- $this->expected_bytes = ($agent_data_bytes + 4) - $current_data_bytes;
- return false;
- }
- }
- if (strlen($this->socket_buffer) != fwrite($this->fsock, $this->socket_buffer)) {
- user_error('Connection closed attempting to forward data to SSH agent');
- return false;
- }
- $this->socket_buffer = '';
- $this->expected_bytes = 0;
- $temp = fread($this->fsock, 4);
- if (strlen($temp) != 4) {
- user_error('Connection closed while reading data response');
- return false;
- }
- $agent_reply_bytes = current(unpack('N', $temp));
- $agent_reply_data = fread($this->fsock, $agent_reply_bytes);
- if (strlen($agent_reply_data) != $agent_reply_bytes) {
- user_error('Connection closed while reading data response');
- return false;
- }
- $agent_reply_data = current(unpack('a*', $agent_reply_data));
- return pack('Na*', $agent_reply_bytes, $agent_reply_data);
- }
- }
|