Patch is updated but still shown failed

Having the same issue, pretty annoying seeing these alerts in my inbox. What can be done? Site in question has all updates validated on magereport, is this a false positive like in the past?

I have had several false positives that after a week they simply go away, as in Magento made a fix in the scanning for that particular patch.

Our server is pretty tight, is the problem that they can not check to see if all the files have been updated?

--update--

I wanted to follow up with my solution as it may help others.

One of the changes the SUPEE-11314 introduces is the customer password strength enforcement: After the patch is applied - the new customer registration form password field at '/customer/account/create/' should have 'min-pass-length-#' class (# - is a number). Since almost all stores use some custom theme and it is obviously not get modified by the patch - the template changes should be applied manually.

I changed my custom theme register.phtml and the one register.phtml the ReCaptcha plugin is using. This resolved my issue. You will want to use the following on both of those.

<li class="fields">
                    <div class="field">
                        <label for="password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
                        <div class="input-box">
                            <?php $minPasswordLength = $this->getMinPasswordLength(); ?>
                            <input type="password"
                                   name="password"
                                   id="password"
                                   title="<?php echo $this->quoteEscape($this->__('Password')) ?>"
                                   class="input-text required-entry validate-password min-pass-length-<?php echo $minPasswordLength ?>" />
                            <p class="form-instructions">
                                <?php echo Mage::helper('customer')->__('The minimum password length is %s', $minPasswordLength) ?>
                            </p>
                        </div>
                    </div>
                    <div class="field">
                        <label for="confirmation" class="required"><em>*</em><?php echo $this->__('Confirm Password') ?></label>
                        <div class="input-box">
                            <input type="password" name="confirmation" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Confirm Password')) ?>" id="confirmation" class="input-text required-entry validate-cpassword" />
                        </div>
                    </div>
                </li>