wget with https on ESXI 6.7 U3

  • Thread starter Thread starter panks21
  • Start date Start date
  • Replies Replies 16
  • Views Views 9,823
Your best bet is to download from a http source. Forcing lower version will not work since supporting lower version is a vulnerability for a publicly hosted servers.

Alternate is to try any other download utility available on esxi.
 
Maybe server is negotiating higher ssl or tls version which esxi wget doesn't support

It uses busybox. what option would work out of the below??

Code:
[root@localhost:~] wget --help
BusyBox v1.29.3 (2021-01-17 01:25:00 PST) multi-call binary.

Usage: wget [-c|--continue] [--spider] [-q|--quiet] [-O|--output-document FILE]
    [-o|--output-file FILE] [--header 'header: value'] [-Y|--proxy on/off]
    [--no-check-certificate]
    [-P DIR] [-S|--server-response] [-U|--user-agent AGENT] URL...

Retrieve files via HTTP or FTP

    --spider    Only check URL existence: $? is 0 if exists
    --no-check-certificate    Don't validate the server's certificate
    -c        Continue retrieval of aborted transfer
    -q        Quiet
    -P DIR        Save to DIR (default .)
    -S            Show server response
    -O FILE        Save to FILE ('-' for stdout)
    -o FILE        Log messages to FILE
    -U STR        Use STR for User-Agent header
    -Y on/off    Use proxy
[root@localhost:~]
 
Got a response on reddit... ESXI doesn't like certificate
Thanks for all the suggestions

Code:
[root@localhost:/vmfs/volumes/613f8040-7d767b5c-98a1-90e2ba68ddb0/iso_images] wget "https://cdimage.kali.org/kali-2021.2/kali-linux-2021.2-installer-amd64.iso" --no-check-certificate
Connecting to cdimage.kali.org (192.99.200.113:443)
Connecting to kali.download (104.18.103.100:443)
saving to 'kali-linux-2021.2-installer-amd64.iso'
kali-linux-2021.2-in   3% |******                                                                                                                                                                                                        |  136M  0:14:24 ETA
 
Try the no check certificate option?
 
Ah ok... that option works?
 
Back