[Solved] OpenSSL/Wget


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers [Solved] OpenSSL/Wget
# 1  
Old 07-09-2013
[Solved] OpenSSL/Wget

Hi,

I'm having an issue with wget/SSL. Let me clarify I have very little understanding of Openssl. I'm trying to wget a file from a remote server

Code:
wget -v  --user=UNAME --password='Pass@word' https://densky.keurua.it/out/2013070...2045480693.xml

I get the following error message
Code:
--12:19:57--  https://densky.keurua.it/out/2013070...2045480693.xml
Resolving densky.keurua.it... ##.##.###.###
Connecting to densky.keurua.it|##.##.###.###|:443... connected.
Unable to establish SSL connection.

Im using RHEL 5.3 and openssl version 0.9.8e-7.el5. The version of wget is GNU Wget 1.10.2 (Red Hat modified)

I have done some search on google and found nothing helpful.

Thanks
Maverick
# 2  
Old 07-09-2013
It doesn't seem to work in a web browser either, so I'm not going to blame wget here.
# 3  
Old 07-10-2013
Just for clarification: "wget" is just another browser - one, which can be used inside a script instead of interactively so. If there is no regular "http"- (or "https"-) connection possible it won't work. Simply put, if you can't see the page using Mozilla (Chrome, Opera, IE, ...) you can't get it with "wget" either.

This has nothing to do with "OpenSSL". Are you sure you need "wget" to get the file or should that be "sftp", "scp" or something such?

I hope this helps.

bakunin
# 4  
Old 07-10-2013
The issue is now resolved. It was an issue with proxy authentication.

Moderator's Comments:
Mod Comment edit by bakunin: thanks for the update. Changed thread title accordingly.

Last edited by bakunin; 07-10-2013 at 01:49 PM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Openssl upgrade

Hello Admins. I need to upgrade the openssl version in Solaris 10 due to vulnerabilities. When I checked the current version, it shows: bash-3.2# openssl version OpenSSL 1.0.2n 7 Dec 2017 bash-3.2# which openssl /usr/bin/openssl When I installed the new one, its getting... (0 Replies)
Discussion started by: snchaudhari2
0 Replies

2. Shell Programming and Scripting

Wget - working in browser but cannot download from wget

Hi, I need to download a zip file from my the below US govt link. https://www.sam.gov/SAMPortal/extractfiledownload?role=WW&version=SAM&filename=SAM_PUBLIC_MONTHLY_20160207.ZIP I only have wget utility installed on the server. When I use the below command, I am getting error 403... (2 Replies)
Discussion started by: Prasannag87
2 Replies

3. Cybersecurity

OpenSSL

I just started playing around with Unix's OpenSSL utility. I can't seem to get the hang of it, and the man page isn't helping much. I wanted to experiment with file encryption, so I created a dummy text file with one line of text and tried to encrypt it using DES. I used the following command: ... (2 Replies)
Discussion started by: Ultrix
2 Replies

4. Red Hat

Openssl vulnerabilities

Hi there, The following openssl package are installed on the machine (openssl-1.0.0-27.el6_4.2.x86_64). It isn't the last version but I need to known if this content Vulnerabilities... How to check that on RedHat? Could you please tell me how to find this information?? Thankx (3 Replies)
Discussion started by: hiero_nymus
3 Replies

5. Shell Programming and Scripting

[Solved] Wget command to download file

Hi I am trying to download the file using wget command. But The password was created as pwd$$ for the user xyz. When i give the command as below it is not downloading the file. Will the password has $$ causing this issue. wget... (0 Replies)
Discussion started by: ksmbabu
0 Replies

6. Solaris

Openssl 0.9.8r

Hi Peeps, Having trouble compiling openssl 0.9.8r on Solaris 10 x86. The make test fails when running the shatests (segmentation faults). There is a PROBLEM file that references a file called values.c. Anyone know whereabouts in the source tree you put this file as the file doesn't tell you... (2 Replies)
Discussion started by: callmebob
2 Replies

7. UNIX for Advanced & Expert Users

Using openssl

All, I am new to openssl and I have not been able to figure out exactly how to use it. What I need to do is to create a shell script which FTPS's (SFTP is not allowed on my project) a file to a mainframe. The mainframe will not initiate a session with my server. Question. Are the packages... (7 Replies)
Discussion started by: MichaelInDC
7 Replies

8. Shell Programming and Scripting

[solved] merging two files and writing to another file- solved

i have two files as file1: 1 2 3 file2: a b c and the output should be: file3: 1~a 2~b 3~c (1 Reply)
Discussion started by: mlpathir
1 Replies

9. UNIX for Advanced & Expert Users

openssl help

I ungraded my openssl on sun solaris 8 from openssl 0.9.6c to openssl 0.9.6g the ungrade went fine but when I tried to ssh in to server, I received the following error message "ld.so.1: ./sshd: fatal: relocation error: file /usr/local/ssl/lib/libcrypto.so.0.9.6: symbol main: referenced symbol... (2 Replies)
Discussion started by: hassan2
2 Replies
Login or Register to Ask a Question