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.
github.com/hebs-web-design/hugo-modules/alpinejs/carousel
A simple carousel using AlpineJS and Tailwind CSS classes.
Load the Alpine data:
import Alpine from 'alpinejs';
import carousel from './alpinejs/carousel';
Alpine.data('carousel', carousel);
Alpine.start();
Build your carousel:
{{- with .Site.Data.list }}
<div class="hidden -translate-x-full"><!-- extra classes --></div>
<div class="relative overflow-hidden w-64 h-32 mx-auto" x-data="carousel($root)">
{{- range $n, $item := . }}
<div class="absolute inset-0 w-full h-full flex items-center justify-center transition-all ease-in-out duration-1000 transform{{ if eq $n 0 }} translate-x-0{{ else }} translate-x-full{{ end }}">
<div>{{ $item }}</div>
</div>
{{- end }}
</div>
{{- end }}
The x-data
takes the following arguments:
carousel(element, interval = 5000)
FAQs
Unknown package
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.