S-152: WordPress Plugin AdServe Vulnerability


 
Thread Tools Search this Thread
Special Forums Cybersecurity Security Advisories (RSS) S-152: WordPress Plugin AdServe Vulnerability
# 1  
Old 01-31-2008
S-152: WordPress Plugin AdServe Vulnerability

WordPress plugin AdServe is prone to an SQL-injection vulnerability because it fails to sufficiently sanitize user-supplied data before using it in an SQL query. The risk is LOW. Exploiting this issue could allow an attacker to compromise the application, access or modify data, or exploit latent vulnerabilities in the underlying database.


More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. What is on Your Mind?

Cybersecurity - Wordpress Plugin Developer Wanted

https://www.unix.com/members/1-albums112-picture680.png (0 Replies)
Discussion started by: Neo
0 Replies
Login or Register to Ask a Question
Mojolicious::Plugin::PODRenderer(3pm)			User Contributed Perl Documentation		     Mojolicious::Plugin::PODRenderer(3pm)

NAME
Mojolicious::Plugin::PODRenderer - POD renderer plugin SYNOPSIS
# Mojolicious my $route = $self->plugin('PODRenderer'); my $route = $self->plugin(PODRenderer => {name => 'foo'}); my $route = $self->plugin(PODRenderer => {preprocess => 'epl'}); $self->render('some_template', handler => 'pod'); %= pod_to_html "=head1 TEST C<123>" # Mojolicious::Lite my $route = plugin 'PODRenderer'; my $route = plugin PODRenderer => {name => 'foo'}; my $route = plugin PODRenderer => {preprocess => 'epl'}; $self->render('some_template', handler => 'pod'); %= pod_to_html "=head1 TEST C<123>" DESCRIPTION
Mojolicious::Plugin::PODRenderer is a renderer for true Perl hackers, rawr! The code of this plugin is a good example for learning to build new plugins, you're welcome to fork it. OPTIONS
Mojolicious::Plugin::PODRenderer supports the following options. "name" # Mojolicious::Lite plugin PODRenderer => {name => 'foo'}; Handler name. "no_perldoc" # Mojolicious::Lite plugin PODRenderer => {no_perldoc => 1}; Disable perldoc browser. "preprocess" # Mojolicious::Lite plugin PODRenderer => {preprocess => 'epl'}; Name of handler used to preprocess POD. HELPERS
Mojolicious::Plugin::PODRenderer implements the following helpers. "pod_to_html" %= pod_to_html '=head2 lalala' <%= pod_to_html begin %>=head2 lalala<% end %> Render POD to HTML. METHODS
Mojolicious::Plugin::PODRenderer inherits all methods from Mojolicious::Plugin and implements the following new ones. "register" my $route = $plugin->register($app, $conf); Register renderer in Mojolicious application. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojolicious::Plugin::PODRenderer(3pm)