
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
elasticsearch-indexstager
Advanced tools
Elasticsearch index management, for stage/promote pattern.
See also:
A busy ES installation needs to stay up and serving requests. If you need to build a new index, you can "stage" it alongside the live index, and then "promote" the stage to be live. This allows for zero downtime cutovers of new indices.
require 'elasticsearch'
require 'elasticsearch/index_stager'
client = Elasticsearch::Client.new log: true
stager = Elasticsearch::IndexStager.new(index_name: 'foo', es_client: client)
client.index(index: stager.tmp_index_name, type: 'article', id: 1, body: { title: 'Test' })
stager.alias_stage_to_tmp_index
results = client.search(index: stager.stage_index_name, body: { query: { match: { title: 'test' } } })
stager.promote
results = client.search(index: stager.index_name, body: { query: { match: { title: 'test' } } })
This project is in the worldwide public domain. As stated in CONTRIBUTING:
This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.
All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.
FAQs
Unknown package
We found that elasticsearch-indexstager 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.