Skip to content

Instantly share code, notes, and snippets.

@xenobyte
Created December 20, 2016 09:54
Show Gist options
  • Save xenobyte/438cd16cbac92e7537f4f6fbdcfdc160 to your computer and use it in GitHub Desktop.
Save xenobyte/438cd16cbac92e7537f4f6fbdcfdc160 to your computer and use it in GitHub Desktop.
Check Tomcat-Installation against CVE-2016-8735
#!/bin/sh
for i in $(locate "*.jar");
do echo $i; jar -tvf $i | grep -Hsi JmxRemoteLifecycleListener;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment