Security Advisories (3)
CVE-2016-0747 (2016-02-15)

The resolver in nginx before 1.8.1 and 1.9.x before 1.9.10 does not properly limit CNAME resolution, which allows remote attackers to cause a denial of service (worker process resource consumption) via vectors related to arbitrary name resolution.

CVE-2016-0746 (2016-02-15)

Use-after-free vulnerability in the resolver in nginx 0.6.18 through 1.8.0 and 1.9.x before 1.9.10 allows remote attackers to cause a denial of service (worker process crash) or possibly have unspecified other impact via a crafted DNS response related to CNAME response processing.

CVE-2016-0742 (2016-02-15)

The resolver in nginx before 1.8.1 and 1.9.x before 1.9.10 allows remote attackers to cause a denial of service (invalid pointer dereference and worker process crash) via a crafted UDP DNS response.

NAME

Here::Template - heredoc templates

SYNOPSIS

use Here::Template;

print <<'TMPL';

    Hello, my pid is <?= $$ ?>
    Let's count to 10: <? for (1..10) { ?>$_ <? } ?>

TMPL

DESCRIPTION

Simple Filter::Util::Call based implementation of heredoc templates.

To enable templates in some heredoc use quoted heredoc mark that contains TMPL. Output is added to the buffer $here. You can append data there as well:

print <<'TMPL';

    Hello, my pid is <?= $$ ?>
    Let's count to 10: <? for (1..10) { $here.= "$_" } ?>

TMPL

EXPORT

This module doesn't export anything by default.

Special argument relaxed can be used to disable strict and warnings inside templates. E.g.:

use strict;
use warnings; 

use Here::Template 'relaxed';

print <<'TMPL';

    Let's count to 10: <? 
        for $k (1..10) { 
            $here .= "$k ";
        }
    ?>

TMPL

AUTHOR

Alexandr Gomoliako <zzz@zzz.org.ua>

LICENSE

Copyright 2011-2012 Alexandr Gomoliako. All rights reserved.

This module is free software. It may be used, redistributed and/or modified under the same terms as perl itself.