Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mycert/espot
ESPot - ElasticSearch Honeypot
https://github.com/mycert/espot
Last synced: 25 days ago
JSON representation
ESPot - ElasticSearch Honeypot
- Host: GitHub
- URL: https://github.com/mycert/espot
- Owner: mycert
- Created: 2014-08-15T04:15:32.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-25T07:10:30.000Z (over 10 years ago)
- Last Synced: 2024-10-30T15:51:03.557Z (about 1 month ago)
- Language: JavaScript
- Size: 199 KB
- Stars: 27
- Watchers: 9
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-honeypot - **15**星 - ElasticSearch Honeypot (<a id="a53d22b9c5d09dc894413453f4755658"></a>未分类)
README
ESPot - ElasticSearch Honeypot
==============================
An Elasticsearch honeypot written in NodeJS, to capture every attempts to exploit [CVE-2014-3120].Prerequisite
============
* NodeJS - v0.10.x
* NodeJS Package Manager - npm v1.4.xInstall
========
Download and extract to /opt/espot, then run followwing command:$ cd /opt/espot
$ npm install
$ mv config.js-sample config.js
Configure config.jsmodule.exports = {
default_response: 'default', // default = 1.1.1, available = 0.90.0, 0.90.5, 1.1.1, 1.2.1, 1.2.2, 1.3.1
logging: {
sqlite: {
enable: true,
dbpath: __dirname + "/logs/attack.db"
},
http_push: {
enable: false,
url: "http://localhost/path/path?query=string"
}
},
tz: 'GMT+8' // Timezone
};Misc
====
### HTTP Push ###ESPot will send post request with following json data to provided url in config.js
{
payload: ,
payload_key: ,
ip: ,
timestamp: ,
raw_request:
}### Run as deamon ###
If you would like to run ESPot as deamon, you will need [forever]$ npm install -g forever
$ forever start app.jsLicense
========
Source code of ESPot is released under the [General Public License version 3].[CVE-2014-3120]:http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-3120
[General Public License version 3]:http://www.gnu.org/licenses/gpl-3.0.html
[forever]:https://github.com/nodejitsu/forever