The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Plack::Middleware::Security::Simple - A simple security filter for Plack

VERSION

version v0.2.0

SYNOPSIS

  use Plack::Builder;

  builder {

    enable "HTTPExceptions", rethrow => 1;

    enable "Security::Simple",
        rules => [
            PATH_INFO => qr{^/cgi-bin/},
            PATH_INFO => qr{\.(php|asp)$},
        ];

   ...

  };

DESCRIPTION

This module provides a simple security filter for PSGI-based applications, so that you can filter out obvious exploit-seeking scripts.

ATTRIBUTES

rules

This is a set of rules. It should be an array-reference or Hash::Match object containing matches against keys in the Plack environment.

handler

This is a function that is called when a match is found.

It takes the Plack environment as an argument, and returns a Plack::Response, or throws an exception for Plack::Middleware::HTTPExceptions.

The default handler will log a warning to the psgix.logger, and throw a HTTP::Exception for HTTP 400 (Bad Request).

SEE ALSO

Hash::Match

Plack

PSGI

SOURCE

The development version is on github at https://github.com/robrwo/Plack-Middleware-Security-Simple and may be cloned from git://github.com/robrwo/Plack-Middleware-Security-Simple.git

BUGS

Please report any bugs or feature requests on the bugtracker website https://github.com/robrwo/Plack-Middleware-Security-Simple/issues

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

AUTHOR

Robert Rothenberg <rrwo@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2014,2018-2020 by Robert Rothenberg.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)