Plugin Directory

Changeset 1723410


Ignore:
Timestamp:
09/01/2017 07:50:46 PM (8 years ago)
Author:
Cimmo
Message:

Fixed XSS security vulnerability that can be triggered by other admin users (credit to Zach Julian)

Location:
cimy-swift-smtp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cimy-swift-smtp/trunk/README_OFFICIAL.txt

    r1719020 r1723410  
    6363CHANGELOG:
    6464v3.0.0 - /08/2017
    65 - Updated Swift Mailer to 6.0.1 (dropped support for PHP <=5.x)
     65- Updated Swift Mailer to 6.0.1 (dropped support for PHP <=5.x and WordPress <= 3.x)
     66- Fixed XSS security vulnerability that can be triggered by other admin users (credit to Zach Julian)
    6667
    6768v2.6.3 - 10/05/2017
  • cimy-swift-smtp/trunk/swift_engine.php

    r1719010 r1723410  
    323323    catch (Exception $e) {
    324324        $result = false;
    325         if ($echo_error)
    326             echo $e->getMessage();
     325        if ($echo_error) {
     326            echo esc_html_x($e->getMessage());
     327        }
    327328    }
    328329
Note: See TracChangeset for help on using the changeset viewer.