
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Lastic is a command line tool that allows you to make Elasticsearch API calls.
Lastic exists to make it easy to send curl like requests to the AWS Elasticsearch service which requires AWS Signature Version 4 to authenticate. Also, since this tool is Elasticsearch specific it includes some specific features to make working with Elasticsearch easier.
# install it (globally)
$ npm install lastic -g
# show the help
$ lastic --help
# config it
$ lastic save-defaults -m GET -h search-es-87sdgf8s.us-east-1.es.amazonaws.com -s https -a
# use it
$ lastic -p /users/user/_search?q=name:fred -o table -f name,email,age
To query Elasticsearch with Lastic no command argument is required.
lastic -m GET -s http -h localhost:9200 -p /users/user/_search?q=name:fred
To make your life easier, you can save the flags that don't change very often as your defaults.
lastic save-defaults -m GET -s http -h localhost:9200
Now you can simply execute the above query like this..
lastic -p /users/user/_search?q=name:fred
Lastic will use default values for any required flags that are missing. The defaults can be modified using the command listed below.
lastic save-defaults -m GET -h search-es-87sdgf8s.us-east-1.es.amazonaws.com -s https -a
lastic show-defaults
Lastic has three output formats: default, raw and table. The output format can be specified with the -o flag. If you only wish to view a subset of the response the -f flag can be used to specify the fields to view. The fields flag only works with search results and with the default and table output formats.
-f flag.-f flag. Only works with search results.Example
lastic -p /users/user/_search?q=name:fred -o table -f name,email,age
Note: AWS credentials are only needed when using the
-aflag.
Lastic uses your same AWS credentials that the AWS CLI uses. It will look for your Access Key ID and Secret Access Key located at ~/.aws/credentials. If you are already using the AWS CLI, then you shouldn't need to do anything additional.
You can read more about how to set this up in the AWS CLI Getting Started Guide
FAQs
A command line tool for Elasticsearch with AWS support
We found that lastic 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.