Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@medv/finder
Advanced tools
CSS Selector Generator
npm install @medv/finder
import finder from '@medv/finder'
document.addEventListener('click', event => {
const selector = finder(event.target)
console.log(selector)
})
Example of generated selector:
.blog > article:nth-child(3) .add-comment
finder
takes configuration object as second parameters. Here is example of all params with default values:
const selector = finder(event.target, {
root: document.body,
className: (name) => true,
tagName: (name) => true,
seedMinLength: 1,
optimizedMinLength: 2,
threshold: 1000
})
root: Element
Root of search, defaults to document.body
.
className: (name: string) => boolean
Check if this class name can be used. For example you can restrict using is-* class names:
const selector = finder(event.target, {
className: name => !name.startsWith('is-')
})
tagName: (name: string) => boolean
Check if tag name can be used, same as className
.
seedMinLength: number
Minimum length of levels in fining selector. Starts from 1
.
For more robust selectors give this param value around 4-5 depending on depth of you DOM tree.
If finder
hits root
this param is ignored.
optimizedMinLength: number
Minimum length for optimising selector. Starts from 2
.
For example selector body > div > div > p
can be optimized to body p
.
threshold: number
Max number of selectors to check before falling into nth-child
usage.
Checking for uniqueness of selector is very costs operation, if you have DOM tree depth of 5, with 5 classes on each level,
that gives you more than 3k selectors to check.
finder
uses two step approach so it's reaching this threshold in some cases twice.
Default 1000
is good enough in most cases.
optimal-select
fails to generate selectors some times, and some times generates not unique selectors.
finder
generates shorter selectors than optimal-select. Also optimal-select now does not have tests and we have :)
For example, on github.com page:
finder | optimal-select | |
---|---|---|
fails | 0 | 42 |
shortest | 404 | 38 |
longest | .story:nth-child(3) .d-lg-flex:nth-child(2) > .width-full:nth-child(1) | [class="circle d-flex flex-column flex-justify-center text-center p-4 mx-auto mt-6 mb-3 m-md-3 bg-orange box-shadow-extra-large"] [class="d-block f0-light text-white lh-condensed-ultra mb-2"] |
size | 2.9 kB | 4.58 kB |
Generate the unique selectors in your browser by using Chrome Extension
MIT
FAQs
CSS Selector Generator
The npm package @medv/finder receives a total of 84,501 weekly downloads. As such, @medv/finder popularity was classified as popular.
We found that @medv/finder demonstrated a healthy version release cadence and project activity because the last version was released less than 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 threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.