/usr/share/doc/echoping/examples/test-echoping-crypto is in echoping 6.0.2-10.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/sh
# $Id: test-echoping-crypto 377 2007-03-12 20:48:05Z bortz $
echo ""
echo "Since this tests tries remote servers, a failure is not always "
echo " echoping's fault: it may be a network problem."
./echoping -C -h / www.gandi.net
echo ""
# We need to iterate to catch some SSL programming errors. See bug #130151
#./echoping -C -h / -n 2 www.modssl.org
./echoping -C -h / -n 2 www.verisign.com
echo ""
# bug #230384
./echoping -C -h / -n 2 www.ssl.de
|