Advertisement
Guest User

Detecting CVE-2014-0224 on a list of hosts

a guest
Jun 20th, 2014
429
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.40 KB | None | 0 0
  1. $ for host in www.tripwire.com www.google.com; do ./OSSL_CCS_InjectTest.py $host; done
  2. ***CVE-2014-0224 Detection Tool v0.3***
  3. Brought to you by Tripwire VERT (@TripwireVERT)
  4. [TLSv1.2] www.tripwire.com:443 rejected early CCS
  5. [TLSv1.1] www.tripwire.com:443 rejected early CCS
  6. [TLSv1] www.tripwire.com:443 rejected early CCS
  7. [SSLv3] www.tripwire.com:443 rejected early CCS
  8. No need to patch.
  9. ***CVE-2014-0224 Detection Tool v0.3***
  10. Brought to you by Tripwire VERT (@TripwireVERT)
  11. [TLSv1.2] www.google.com:443 rejected early CCS
  12. [TLSv1.1] www.google.com:443 rejected early CCS
  13. [TLSv1] www.google.com:443 rejected early CCS
  14. [SSLv3] www.google.com:443 rejected early CCS
  15. No need to patch.
  16.  
  17. $ cat - > hostlist
  18. www.tripwire.com
  19. www.google.com
  20.  
  21. $ for host in $(cat hostlist); do ./OSSL_CCS_InjectTest.py $host; done
  22. ***CVE-2014-0224 Detection Tool v0.3***
  23. Brought to you by Tripwire VERT (@TripwireVERT)
  24. [TLSv1.2] www.tripwire.com:443 rejected early CCS
  25. [TLSv1.1] www.tripwire.com:443 rejected early CCS
  26. [TLSv1] www.tripwire.com:443 rejected early CCS
  27. [SSLv3] www.tripwire.com:443 rejected early CCS
  28. No need to patch.
  29. ***CVE-2014-0224 Detection Tool v0.3***
  30. Brought to you by Tripwire VERT (@TripwireVERT)
  31. [TLSv1.2] www.google.com:443 rejected early CCS
  32. [TLSv1.1] www.google.com:443 rejected early CCS
  33. [TLSv1] www.google.com:443 rejected early CCS
  34. [SSLv3] www.google.com:443 rejected early CCS
  35. No need to patch.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement