Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
jinja2-ansible-filters
Advanced tools
Jinja2 Ansible Filters is a port of the ansible filters provided by Ansible's templating engine.
This repository is not inteded to supplant ansible functionality however there are a lot of filters ansible provides that are not present in upstream Jinja2 so you may find these helpful.
Due to naming conflicts with Jinja2 builtin filters, these filters have been prefixed with ans_
so:
Additionally any filter naming collisions detected at runtime will be renamed to ans_filter and a warning message raised for each.
Several heavy filters have been omitted due to their extensive dependency on ansible core:
pip install jinja2-ansible-filters
from jinja2 import Environment
...
env = Environment(extensions=['jinja2_ansible_filters.AnsibleCoreFiltersExtension'])
...
# OR
from jinja2_ansible_filters import AnsibleCoreFiltersExtension
env = Environment(extensions=[AnsibleCoreFiltersExtension])
...
cookiecutter.json
{
"_extensions": ["jinja2_ansible_filters.AnsibleCoreFiltersExtension"]
}
Due to multiple licenses in the Ansible source the licenses have both been included in LICENSE as well as proper attribution. Additionally license stubs where preserved with the source files they covered in the origional ansible repository.
(c) 2019, Nick Shobe nickshobe@gmail.com (c) 2016, Toshio Kuratomi a.badger@gmail.com (c) 2012-2014, Michael DeHaan michael.dehaan@gmail.com
This code is derived from Ansible's template Jinja2 filters
It contains source released under two licenses GPL3 and BSD license Applicable licenses have been added to the respective files that they apply to.
This code is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Ansible. If not, see http://www.gnu.org/licenses/.
BSD License
Some of this code was ported from Ansible, but is an independent component. This particular file snippet, and this file snippet only, is BSD licensed. Modules you write using this snippet, which is embedded dynamically by Ansible still belong to the author of the module, and may assign their own license to the complete work.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
FAQs
A port of Ansible's jinja2 filters without requiring ansible core.
We found that jinja2-ansible-filters demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.