How can i detecte a poodle vulnarabitiy and other ssl attacks using a TLSx ? #661
Replies: 2 comments
|
This discussion closed automatically due to inactivity. Feel free to reopen or start new if still relevant. |
0 replies
|
tlsx can help detect POODLE and other SSL/TLS vulnerabilities, but it's a TLS scanner, not a vulnerability scanner — you need to check the cipher suites and protocol versions it reports. Detecting POODLE (CVE-2014-3566): POODLE exploits SSLv3 with CBC ciphers. Check if SSLv3 is enabled: echo "target.com" | tlsx -ssl -tls-versionIf SSLv3 is listed → vulnerable to POODLE. Detecting weak configurations: # Check all supported TLS versions and ciphers
echo "target.com" | tlsx -ce -tv -json | jq '{host: .host, versions: .tls_version, ciphers: .cipher}'
# Specifically check for weak/deprecated protocols
echo "target.com" | tlsx -min-version ssl30 -max-version tls10
# Check for specific weak ciphers
echo "target.com" | tlsx -ce -json | jq '.cipher_enum[] | select(contains("RC4") or contains("DES") or contains("CBC") or contains("NULL"))'Common SSL/TLS attacks to check for:
Better tools for full SSL vuln scanning:
# testssl.sh example
testssl.sh --poodle --beast --freak --sweet32 target.com
# sslyze
sslyze target.com --sslv3 --heartbleed --robottlsx is great for enumeration (what ciphers/versions does the target support), but for vulnerability assessment, use testssl.sh or nuclei SSL templates. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
How can i detecte a poodle vulnarabitiy and other ssl attacks using a TLSx ?
if can't using tlsx ,do you have any other toold can help me for this goal ?
All reactions