
Research
6 Malicious Packagist Themes Ship Trojanized jQuery and FUNNULL Redirect Payloads
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.
eleventy-plugin-googlestaticmaps
Advanced tools
An Eleventy plugin to make it easier to use Google Static Maps
This simple plugin adds an Eleventy shortcode for Google Static Maps. This service lets you add simple Google Maps images to your site without needing a JavaScript client in order to render it.
The maps are static (hence the name) but perfect for adding simple maps to your site.
First, install the plugin:
npm i eleventy-plugin-googlestaticmaps
Then add it to your .eleventy.js:
const mapPlugin = require('eleventy-plugin-googlestaticmap');
Then to use it, get your key from Google's console and pass it to the plugin:
const GOOGLE_MAPS_KEY = process.env.GOOGLE_MAPS_KEY;
module.exports = function(eleventyConfig) {
eleventyConfig.addPlugin(mapPlugin, {
key:GOOGLE_MAPS_KEY
});
};
The shortcode staticmap is now available in your templates. The arguments are:
| Argument | Required | Default |
|---|---|---|
| address | true | |
| width | false | 500 |
| height | false | 500 |
| zoom | false | 13 |
| maptype | false | "roadmap" |
Examples:
<img src="{% staticmap "lafayette, la" %}">
<p>
<img src="{% staticmap "bellingham, wa" 900 900 %}" width="900" height="900">
</p>
<p>
<img src="{% staticmap "moscow" 400 400 13 "satellite" %}">
</p>
FAQs
An Eleventy plugin to make it easier to use Google Static Maps
The npm package eleventy-plugin-googlestaticmaps receives a total of 0 weekly downloads. As such, eleventy-plugin-googlestaticmaps popularity was classified as not popular.
We found that eleventy-plugin-googlestaticmaps demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.

Security News
The GCVE initiative operated by CIRCL has officially opened its publishing ecosystem, letting organizations issue and share vulnerability identifiers without routing through a central authority.

Security News
The project is retiring its odd/even release model in favor of a simpler annual cadence where every major version becomes LTS.