mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
0d3c1c8b1a
This change fixes stderr to be unbuffered. Added hardware AES on ARM64 to help safeguard against timing attacks. The curl.com command will be somewhat more pleasant to use.
23 lines
471 B
Bash
Executable file
23 lines
471 B
Bash
Executable file
#!/bin/sh
|
|
m=zero
|
|
make -j16 m=$m o/$m/tool/curl/curl.com || exit
|
|
for t in expired \
|
|
wrong.host \
|
|
self-signed \
|
|
untrusted-root \
|
|
revoked \
|
|
dh480 \
|
|
dh512 \
|
|
no-common-name \
|
|
no-subject \
|
|
incomplete-chain \
|
|
superfish \
|
|
captive-portal \
|
|
edellroot \
|
|
mitm-software \
|
|
rc4; do
|
|
u=https://$t.badssl.com/
|
|
echo
|
|
echo $u
|
|
o/$m/tool/curl/curl.com $u
|
|
done
|