This script tries to guess Drupal plugin versions from droopescan output
All you have to do is pipe the JSON output from droopescan to the scripts stdin
droopescan scan drupal -u http://drupal.inlanefreight.local -o json | python3 guesser.py
The script compares the available files found by droopescan to all tagged releases on git.drupalcode.org - trying to guess the version. It also tells if a guessed release is tagged as "insecure"
I wanted a script to automate looking up plugin versions - also:
unfortunately the code style does not fit into the droopescan project thats why I decided to do it like this