thispc / psiphon

A multi-functional version of a popular network circumvention tool
GNU General Public License v3.0
229 stars 59 forks source link

OpenSSL version mismatch #23

Open sjasct opened 6 years ago

sjasct commented 6 years ago

Hi,

Trying to run this on Ubuntu 18.04 and I'm getting this instead

Trying to connect to DE : 82.165.162.179
DEBUG: OSSH connection: End Of File (EOF). Exception style platform.
<pexpect.pty_spawn.spawn object at 0x7fca9d75be50>
command: ./ssh
args: [u'./ssh', u'-C', u'-D', u'127.0.0.1:5437', u'-N', u'-p', u'53', u'-z', u'-Z', u'fd014715d28e6b5f958191b378b153369be7ea3bf42e015f613579e90bdc2bd8', u'psiphon_ssh_3cabe01da250daa3@82.165.162.179']
buffer (last 100 chars): ''
before (last 100 chars): 'OpenSSL version mismatch. Built against 1000106f, you have 100020ef\r\r\n'
after: <class 'pexpect.exceptions.EOF'>
match: None

I've tried updating OpenSSL via apt as this SO post stated but still to no avail.

Any help is appreciated, thanks.

rr4e commented 6 years ago

没用的 说什么openssl header在库里不存在 即使强行make也会报错无法生成ssh.app

rr4e commented 6 years ago

有一个人说你得用0.9以下版本的ssl才行

reSHARMA commented 5 years ago

They ship openssh-5.9p1/ cd psiphon/openssh-5.9p1/ ./configure make You will get ~/psiphon/openssh-5.9p1/ssh replace this with ~/psiphon/ssh

ebubekirtrkr commented 5 years ago

this one has solved my problem this

englianhu commented 3 years ago

this one has solved my problem this

https://github.com/thispc/psiphon/issues/22#issuecomment-834708762, thanks

englianhu commented 3 years ago

They ship openssh-5.9p1/ cd psiphon/openssh-5.9p1/ ./configure make You will get ~/psiphon/openssh-5.9p1/ssh replace this with ~/psiphon/ssh

I stucked on below section https://github.com/thispc/psiphon

openssh-5.9p1$ cd ..
psiphon$ rm ssh
psiphon$ cp openssh-5.9p1/ssh .

Screenshot_20210508_042547

ssh$ cd ..
psiphon$ rm ssh
psiphon$ cp ssh/ssh .

Below shows the error where we can see from above image

root@******/psiphon/ssh# cd ..
root@******/psiphon# rm ssh
rm: cannot remove 'ssh': Is a directory
root@******/psiphon# ls
Dockerfile  SocksiPy     psi_client.py           server_list
LICENSE     psi_api.py   psi_ssh_connection.py   servers.dat
README.md   psi_api.pyc  psi_ssh_connection.pyc  ssh
root@******/psiphon# 

Below shows OS information

englianhu@Scibrokes-Trading:~$ cat /etc/os-release
NAME="Ubuntu"
VERSION="20.04.2 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.2 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal

after changed from

cd psiphon/openssh-5.9p1/
./configure
make

to

cd psiphon/ssh/
./configure
make

successfully make https://github.com/thispc/psiphon/issues/23#issuecomment-834709237