
Research
npm Malware Targets Telegram Bot Developers with Persistent SSH Backdoors
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
honkit-plugin-elasticsearch
Advanced tools
This plugin provides a backend for the search plugin.
Gitbook comes with default search option.
In order to use this plugin, need to disable lunr
plugins and add elasticsearch
as bellow:
"plugins": [
"-lunr",
"elasticsearch"
]
add the following plugin configurations in book.json
{
"pluginsConfig": {
"elasticsearch": {
"host" : "http://your-elasticsearch:9200",
"index" : "your-index",
"apiKey" : "your-apikey",
"maxResults" : 30,
}
}
}
Building your gitbook will generate a search index file in _book
directory.
Insert the index file into your elasticsearch.
curl -XPOST "http://your-elasticsearch:9200/your-index/_bulk" -H 'Content-Type: application/json' --data-binary @_book/search_index.json
You can specify explicit keywords for any page. When searching for these keywords, the page will rank higher in the results.
---
search:
keywords: ['keyword1', 'keyword2', 'etc.']
---
# My Page
This page will rank better if we search for 'keyword1'.
You can disable the indexing of a specific page by adding a YAML header to the page:
---
search: false
---
# My Page
This page is not indexed in Elasticsearch.
FAQs
GitBook search plugin for Elasticsearch
We found that honkit-plugin-elasticsearch 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
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
Security News
pip, PDM, pip-audit, and the packaging library are already adding support for Python’s new lock file format.
Product
Socket's Go support is now generally available, bringing automatic scanning and deep code analysis to all users with Go projects.