
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
dls-graphics
Advanced tools
Shared graphic resources for Baidu Light DLS.
npm i --save-dev dls-graphics
import { loading } from 'dls-graphics'
console.log(loading)
/*
{
contents: '<g style="transform-origin:50% 50%;animation:spin-359eb...',
attrs: {
width: '40',
height: '40',
class: 'dls-loading',
viewBox: '0 0 64 64'
}
}
*/
For example, to use it in a React component:
import { loading } from 'dls-graphics'
export function IconLoading() {
return (
<svg
{...loading.attrs}
dangerouslySetInnerHTML={{ __html: loading.contents }}
/>
)
}
To get <style>
contents extracted outside SVG data, you can use:
import { loading, loadingCss } from 'dls-graphics/dist/separate'
console.log(loading)
console.log(loadingCss)
/*
{
contents: '<g style="transform-origin:50% 50%;animation:spin-359eb...',
attrs: {
width: '40',
height: '40',
class: 'dls-loading',
viewBox: '0 0 64 64'
}
}
@keyframes spin-359eb{0%{transform:rotate(0deg)}to{transform...
*/
All graphics are also distributed as SVG files. You can acquire these minified SVG source to use properly. eg. import and render into your HTML file with webpack's HtmlWebpackPlugin
, or use with some custom SVG loader to convert them directly into components.
Standalone SVGs resides at dls-graphics/dist
.
If you want to use SVGs with <style>
contents extracted into separate CSS files, you can look into dls-graphics/dist/separate
.
blank
(blank.svg)
clientError
(client-error.svg)
forbidden
(forbidden.svg)
noResults
(no-results.svg)
notFound
(not-found.svg)
reviewError
(review-error.svg)
reviewPending
(review-pending.svg)
reviewSuccess
(review-success.svg)
serverError
(server-error.svg)
spotBarChart
(spot-bar-chart.svg)
spotCleared
(spot-cleared.svg)
spotFunnelChart
(spot-funnel-chart.svg)
spotGaugeChart
(spot-gauge-chart.svg)
spotImageError
(spot-image-error.svg)
spotLineChart
(spot-line-chart.svg)
spotLoadError
(spot-load-error.svg)
spotMap
(spot-map.svg)
spotNetworkError
(spot-network-error.svg)
spotNoAccess
(spot-no-access.svg)
spotNoContent
(spot-no-content.svg)
spotNoFavorites
(spot-no-favorites.svg)
spotNoHistory
(spot-no-history.svg)
spotNoImage
(spot-no-image.svg)
spotNoInternet
(spot-no-internet.svg)
spotNoMessages
(spot-no-messages.svg)
spotNoResults
(spot-no-results.svg)
spotNoStore
(spot-no-store.svg)
spotNoVideo
(spot-no-video.svg)
spotPieChart
(spot-pie-chart.svg)
spotPresentation
(spot-presentation.svg)
spotRadarChart
(spot-radar-chart.svg)
spotRelationshipChart
(spot-relationship-chart.svg)
spotServerError
(spot-server-error.svg)
spotTryLater
(spot-try-later.svg)
spotVideoError
(spot-video-error.svg)
spotWordCloud
(spot-word-cloud.svg)
imagePlaceholder
(image-placeholder.svg)
loading
(loading.svg)
partialBlankBrush
(partial-blank-brush.svg)
partialBlank
(partial-blank.svg)
partialError
(partial-error.svg)
partialForbidden
(partial-forbidden.svg)
underReview
(under-review.svg)
1.4.3
crypto
module is imported in our dist files.FAQs
Graphics materials for Baidu Light DLS.
The npm package dls-graphics receives a total of 16 weekly downloads. As such, dls-graphics popularity was classified as not popular.
We found that dls-graphics 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
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.