6 lines
130 B
Plaintext
6 lines
130 B
Plaintext
|
#!/usr/bin/bash
|
||
|
while read -r URL;
|
||
|
do
|
||
|
openssl s_client -brief -connect $URL:443 < /dev/null;
|
||
|
done < ./https_urls_freepoteries
|