phpseclib is a PHP library that provides pure-PHP implementations of: - BigIntegers - RSA - SSH2 - SFTP - X.509 - Symmetric key encryption - AES - Rijndael - DES - 3DES - RC4

learn more… | top users | synonyms

0
votes
2answers
33 views

PHP OpenSSL - openssl_private_encrypt crashes webpage

This has been reported at bugs.php.net. If I replace libeay32.dll and ssleay32.dll in xampp/apache/bin with the same files in xampp/php/ then it works but I CANNOT use SSL I need to use SSL, has ...
0
votes
0answers
17 views

SSH2 PECL / phpseclib firewall blocking getaddrinfo fail

I have a PHP based SFTP application I created and it has been working great. Now I have to put it on a server that has a firewall. I get this error: Message: ssh2_connect(): ...
-1
votes
1answer
21 views

phpseclib Warning: unpack() [function.unpack]: Type C: not enough inpu

Some SFTP credential works fine for below open source, but some credential throwing below error. what is the root cause for the below error, i saw some threads they posted some workouts, but those ...
0
votes
0answers
17 views

RSA encrypt/decrypt with phpseclib and Cryptico

I'm desperately searching for a way to encrypt/decrypt data between javascript using Cryptico and decrypt/encrypt using phpseclib.
1
vote
1answer
77 views

Uploading a file to a SFTP server

I'm trying to connect to a SFTP server and upload a file through php. I've installed php lib (php_ssh2) but it's failing at this point: <?php $connection = ssh2_connect('shell.example.com', 22); ...
0
votes
2answers
39 views

Java multipart RSA decryption

I am encrypting data with phpseclib on a server $rsa->loadKey($encryptkey); $rsa->setEncryptionMode(CRYPT_RSA_ENCRYPTION_PKCS1); $ciphertext = $rsa->encrypt($str); and receiving it in my ...
1
vote
1answer
38 views

not everything in phpdoc header showing up

I'm trying to create some documentation using phpDocumentor (phpdoc -d . -t output) on phpseclib's Math_BigInteger and had a few questions. Here's the header: /** * Pure-PHP arbitrary precision ...
0
votes
1answer
32 views

phpseclib - Entering value to prompt

I can't find examples related to this problem. I want to enter values to prompt that comes after I send a command I send this command: $ssh->exec('sudo pure-pw useradd '.$server_dir.' -u ftpuser ...
0
votes
1answer
37 views

How to verify if SCP was successful?

I'm using http://phpseclib.sourceforge.net/ to make an SSH connection to my server, then execute an SCP command to transfers to a remote server. The library's exec() method returns a string (looks ...
1
vote
2answers
56 views

how can I run a perl script which needs root?

I need to execute a perl script located in /root/scripts/ from php using ssh from another computer or from the same computer. The thing is that I just don't know how to make php log into roots account ...
0
votes
1answer
64 views

remote files have 0 bytes when uploaded via sftp with phpseclib

i have Server 2008 R2 with xampp (1.7.7) running. i try to use sftp with phpseclib. when i load the php page manually, all works fine. when the page is loaded via cronjob, i get 0 Byte files on the ...
2
votes
1answer
113 views

How to download a file from an SFTP server using PHP

I'm looking to allow a user to download a file directly from an sftp server, but in the browser. I've found methods to read the file and echo the string (connections using ssh2.sftp or phpseclib) but ...
1
vote
3answers
49 views

encrypt vs sign, rare output with Crypt_RSA

I am trying to sign a string with: $rsa = new Crypt_RSA(); //$rsa->setPassword('*****'); $rsa->loadKey(file_get_contents('i.pem')); // private key $plaintext = ...
0
votes
0answers
51 views

Incompatible AES implementation between phpseclib and crypt-js

i have two scripts, one in PHP : require_once('Crypt/AES.php'); $iv = substr(base64_encode(crypt_random($min = 0, $max = 0xEFFFFFFF).crypt_random($min = 0, $max = 0xEFFFFFFF)),0,16); $a = ...
1
vote
2answers
91 views

Uploading files using SCP using phpseclib

I need to create 2 functions: one to upload files using SFTP and another using SCP. I'm using phpseclib and the put method; I believe I have the SFTP function done. Now, I'm trying to do the SCP ...
4
votes
1answer
38 views

Why is phpseclib not signing this cert corrrectly?

I try to sign a key with phpseclib and when I decode the result with openssl I get the following: 140513785948000:error:0D07209B:asn1 encoding routines:ASN1_get_object:too long:asn1_lib.c:142: ...
-3
votes
1answer
88 views

PHP encryption/decryption using RSA differs between PHP and Java [closed]

I want to create script which encrypt the plain text using public key and decrypt using private key. I used phpseclic library but the encryption cipher text shows this: §ñŽÔÌpn9ˆéí>piKÈ¡.
1
vote
4answers
129 views

phpseclib sftp connect with private key and password

Is there anyway to connect the sftp with both private key and ftp password by using phpseclib or any other method.
0
votes
3answers
207 views

C# encrypt PHP decrypt using RSA

I'm trying to build a simple RSA encryption decrpytion process between C# and PHP. I've accomplished encrypting in PHP and decrpyt in C# with phpseclib(http://phpseclib.sourceforge.net/). However I'm ...
1
vote
1answer
128 views

Trouble with RSA using phpseclib in PHP

I'm trying to use the RSA implementation in phpseclib, I thought it would be easier to do the code once in a function and re-use the function. When I've tried texting the code I get a error saying ...
0
votes
1answer
97 views

Creating a bash file with variables with PHP and phpseclib

I need to create a bash file with PHP using the phpseclib library. This is the code I am using now: $ssh->exec("cat > $sPath$sSavingCode <<EOF screen -dmS $1 java -Xincgc -Xmx200M -jar ...
0
votes
1answer
89 views

Calling openssl_pkey_get_private() on just created private key via Copy and Paste

The following code creates a public/private key pair, opens the key using openssl_pkey_get_private() function successfully and emits the key pair to the display. A previously created key is then copy ...
5
votes
5answers
646 views

Encryption PHP, Decryption Java

I have a web-service in php that generates a keypair to encrypt a message, and one application in java that retrives the privatekey and decrypt the message. For php I'm using ...
0
votes
1answer
109 views

Run a command on a SSH screen through SSH with phpseclib

I have a PHP script that starts a detached screen through SSH: $ssh->exec("screen -m -d -S ".$user); I now need to execute a command in that screen without being in that screen. I have the code ...
0
votes
1answer
114 views

Creating a SSH screen through PHP with phpseclib

I have a PHP script in which I am trying to create a screen on my ssh server with the PHP SSH library phpseclib. This is the function that I am using to try to create the screen: function ...
1
vote
2answers
208 views

Server fails when downloading large files with PHP

I'm using the SFTP functions of PHPSecLib to download files from an FTP server. The line $sftp->get($fname); works if the file is up to 200MB, but if it's 300MB, the browser responds with ...
2
votes
1answer
115 views

How do i use phpseclib to upload file from my php server -> someOther server?

I'm trying to upload a file from my php server to some other server (my workplace is quite lame enough to block ssh traffic) Anyway, here's what I'm trying to do: (at: /public_html/manage.php ...
0
votes
0answers
138 views

PHP Script Stalls After using phpseclib $sftp->get

I am using phpseclib to download a file from a remote server. When the script is run through the command line, the file is downloaded completely, but the script seems to hang. Here's my code: ...
0
votes
1answer
248 views

PHP validate client signature using client public key

Hi I'm building REST service and planning to erase language restriction for developing both client and server from this project, the REST server currently written using PHP. For security I'm ...
0
votes
1answer
134 views

phpseclib is using openssl during create key?

I was under the impression that phpseclib didn't need openssl however when I try the following code... $rsa = new Crypt_RSA(); $key = $rsa->createKey(); I get the following error as IF it is ...
0
votes
2answers
55 views

how to serialize phpseclib?

I have been trying to serialize phpseclib connection since I am loading some php pages from ajax and I dont want to reconnect again and again. **Page 1 - define SSH2 First** ...
0
votes
2answers
229 views

How to validate signature with phpseclib, in a XML signature message?

I tested the final XML signature file and it sends, "invalid signatures", why? Information: I have prepared this inf. to be signed with XML signature: <?xml version="1.0" encoding="UTF-8" ...
0
votes
1answer
139 views

How I can encrypt message in Java, given PHP Public key (PHPSeclib)? [closed]

I have a public Key from PHP as XML format (phpseclib) I want encrypt the data in JAVA, How I can do this, I am PHP programmer I want to test RSA in different environment.
0
votes
1answer
69 views

how to get public key with Crypt_RSA

I have coded a simple test, but it sent me: "Unverified", I guess because I am using the whole certificate instead of the public key. What method gives me public key? $rsa = new Crypt_RSA(); ...
0
votes
0answers
103 views

Using phpseclib's write() command failing on HP Procurve

I have the following code to connect to a procurve switch: $ssh = new Net_SSH2($hostname); if (!$ssh->login($username, $password)) { //if you can't log on... echo("Error: Authentication ...
0
votes
1answer
112 views

Key length issue: AES encryption on phpseclib and decryption on PyCrypto

I am working on a data intensive project where I have been using PHP for fetching data and encrypting it using phpseclib. A chunk of the data has been encrypted in AES with the ECB mode -- however the ...
0
votes
2answers
154 views

Incompatible AES implementation between Botan and phpseclib

I'm using Botan library for AES encryption/decryption in C++. I cannot use the output of Botan in phpseclib with accurate results. I would appreciate if someone points me a working code for ...
3
votes
4answers
273 views

using phpseclib with net_ssh how to su to root using $ssh->exec

So i need to execute one command but it will only run if i su to root (or sudo ) but I can't seem to figure out how to send the command to su to root (i can log in and execute other commands with ...
0
votes
1answer
52 views

phpseclib exec() is returning unformatted text?

I'm trying to execute the below code against a HP C7000 Onboard Administrator include('Net/SSH2.php'); $ssh = new Net_SSH2('OA'); if (!$ssh->login('username', 'password')) { exit('Login ...
0
votes
1answer
119 views

phpseclib Unable to request pseudo-terminal (SFTP)

include('Net/SFTP.php'); $sftp = new Net_SFTP($ftp_server,225); if(!$sftp->login($ftp_user, $ftp_pass)){ print_r($sftp->getErrors()); exit('Login Failed'); } I always get: Notice: Unable ...
2
votes
2answers
101 views

Implementing PHP code into a function

I have some code that I want to make into a function, as I want to use it with different parts of my code and on different pages, and I don't want to have to have the code everywhere. I am using the ...
4
votes
2answers
267 views

PHP FTP/SFTP switch class

OK, so accessing other servers from your own via either ftp or sftp... I have written a small class to handle either.. It is obviously new and could easily be improved so thought i would throw it out ...
1
vote
2answers
180 views

Cannot get phpseclib to connect - error 10060

I cannot get my local environment, Win7 running easyPHP 12, to connect to my server, ubuntu 11.04. I connect to my server via sftp with filezilla fine, i can connect to my server via ssh with putty ...
2
votes
1answer
453 views

phpseclib or ssh2 pecl extension

My post from yesterday: phpseclib sftp port number Ok, so yesterday I started learning about SSH / SFTP with php. I searched a bunch of forum posts and surmised that i needed to download the ...
0
votes
3answers
393 views

set_include_path(get_include_path() . PATH_SEPARATOR . 'phpseclib');

I have stumbled upon two functions i have never used before in php set_include_path(); get_include_path(); I am currently looking to implement the phpseclib onto a project I am working on.. As i ...
0
votes
1answer
71 views

User phpseclib0.3.1 - sftp get - When I leave local file blank, I don't get correct content of file

If I use a local filename, the filename is properly copied, however, if you leave local filename empty, you are supposed to receive the content of the file. Example code: $stat = ...
0
votes
1answer
112 views

Banner Timeout Error on SSH Connection in PHP

I recently downloaded the phpseclib0.3.1 library for PHP which should allow me to connect to my EC2 instances via SSH. However, I'm getting trapped with a "Banner Timeout" error message. When I call: ...
0
votes
1answer
83 views

PHP NET_SSH Read and Write not working as intended

I'm trying to connect to a mysql database through an SSH connection using NET_SSH. I'm using the interactive shell with read and write. My code looks like this: echo '<pre>'; $ssh ...
0
votes
3answers
195 views

Phpseclib KeyUsage

Default certificate file created by PhpSecLib has keyUsage set to: All rules of applications. How could I set keyUsage to digitalSignature that Windows Crypto Shell will show: Ensures the Identity of ...
0
votes
1answer
133 views

phpseclib signing CSR with own CA

I want to sign a CSR with my CA. I took some parts of this code from phpseclib: X.509 Examples <?php include('File/X509.php'); include('Crypt/RSA.php'); $c = $_POST['csr']; $CAPrivKey = new ...

1 2