pjlpot 2.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pjlpot-2.0.0/CHANGELOG.md +91 -0
- pjlpot-2.0.0/LICENSE +674 -0
- pjlpot-2.0.0/MANIFEST.in +9 -0
- pjlpot-2.0.0/PKG-INFO +160 -0
- pjlpot-2.0.0/README.md +26 -0
- pjlpot-2.0.0/core/__init__.py +0 -0
- pjlpot-2.0.0/core/config.py +50 -0
- pjlpot-2.0.0/core/logfile.py +74 -0
- pjlpot-2.0.0/core/output.py +39 -0
- pjlpot-2.0.0/core/paths.py +54 -0
- pjlpot-2.0.0/core/protocol.py +997 -0
- pjlpot-2.0.0/core/tools.py +170 -0
- pjlpot-2.0.0/honeypot.py +118 -0
- pjlpot-2.0.0/output_plugins/README.md +21 -0
- pjlpot-2.0.0/output_plugins/__init__.py +0 -0
- pjlpot-2.0.0/output_plugins/couch.py +68 -0
- pjlpot-2.0.0/output_plugins/datadog.py +74 -0
- pjlpot-2.0.0/output_plugins/discord.py +130 -0
- pjlpot-2.0.0/output_plugins/elastic.py +137 -0
- pjlpot-2.0.0/output_plugins/hpfeed.py +43 -0
- pjlpot-2.0.0/output_plugins/influx2.py +63 -0
- pjlpot-2.0.0/output_plugins/jsonlog.py +36 -0
- pjlpot-2.0.0/output_plugins/kafka.py +57 -0
- pjlpot-2.0.0/output_plugins/localsyslog.py +63 -0
- pjlpot-2.0.0/output_plugins/mongodb.py +83 -0
- pjlpot-2.0.0/output_plugins/mysql.py +200 -0
- pjlpot-2.0.0/output_plugins/nlcvapi.py +119 -0
- pjlpot-2.0.0/output_plugins/postgres.py +141 -0
- pjlpot-2.0.0/output_plugins/redisdb.py +47 -0
- pjlpot-2.0.0/output_plugins/rethinkdblog.py +46 -0
- pjlpot-2.0.0/output_plugins/slack.py +86 -0
- pjlpot-2.0.0/output_plugins/socketlog.py +40 -0
- pjlpot-2.0.0/output_plugins/sqlite.py +131 -0
- pjlpot-2.0.0/output_plugins/telegram.py +133 -0
- pjlpot-2.0.0/output_plugins/textlog.py +38 -0
- pjlpot-2.0.0/output_plugins/xmpp.py +185 -0
- pjlpot-2.0.0/pjlpot/__init__.py +26 -0
- pjlpot-2.0.0/pjlpot/cli.py +519 -0
- pjlpot-2.0.0/pjlpot/data/Dockerfile +56 -0
- pjlpot-2.0.0/pjlpot/data/docs/INSTALL.md +425 -0
- pjlpot-2.0.0/pjlpot/data/docs/INSTALLWIN.md +435 -0
- pjlpot-2.0.0/pjlpot/data/docs/PLUGINS.md +21 -0
- pjlpot-2.0.0/pjlpot/data/docs/TODO.md +8 -0
- pjlpot-2.0.0/pjlpot/data/docs/datadog/README.md +32 -0
- pjlpot-2.0.0/pjlpot/data/docs/discord/README.md +58 -0
- pjlpot-2.0.0/pjlpot/data/docs/geoipupdtask.ps1 +270 -0
- pjlpot-2.0.0/pjlpot/data/docs/mysql/README.md +176 -0
- pjlpot-2.0.0/pjlpot/data/docs/mysql/READMEWIN.md +157 -0
- pjlpot-2.0.0/pjlpot/data/docs/mysql/mysql.sql +55 -0
- pjlpot-2.0.0/pjlpot/data/docs/postgres/README.md +184 -0
- pjlpot-2.0.0/pjlpot/data/docs/postgres/READMEWIN.md +196 -0
- pjlpot-2.0.0/pjlpot/data/docs/postgres/postgres.sql +50 -0
- pjlpot-2.0.0/pjlpot/data/docs/slack/README.md +68 -0
- pjlpot-2.0.0/pjlpot/data/docs/sqlite3/README.md +131 -0
- pjlpot-2.0.0/pjlpot/data/docs/sqlite3/READMEWIN.md +123 -0
- pjlpot-2.0.0/pjlpot/data/docs/sqlite3/sqlite3.sql +46 -0
- pjlpot-2.0.0/pjlpot/data/docs/telegram/README.md +103 -0
- pjlpot-2.0.0/pjlpot/data/etc/honeypot.cfg +422 -0
- pjlpot-2.0.0/pjlpot/data/etc/honeypot.cfg.base +417 -0
- pjlpot-2.0.0/pjlpot/data/responses/csconfig +165 -0
- pjlpot-2.0.0/pjlpot/data/responses/device.html +5 -0
- pjlpot-2.0.0/pjlpot/data/responses/hostmanifest +13 -0
- pjlpot-2.0.0/pjlpot/data/test/.gitignore +6 -0
- pjlpot-2.0.0/pjlpot/data/test/README.md +36 -0
- pjlpot-2.0.0/pjlpot/data/test/baseline +1582 -0
- pjlpot-2.0.0/pjlpot/data/test/input +966 -0
- pjlpot-2.0.0/pjlpot/data/test/test.py +83 -0
- pjlpot-2.0.0/pjlpot/honeypot.py +118 -0
- pjlpot-2.0.0/pjlpot.egg-info/PKG-INFO +160 -0
- pjlpot-2.0.0/pjlpot.egg-info/SOURCES.txt +75 -0
- pjlpot-2.0.0/pjlpot.egg-info/dependency_links.txt +1 -0
- pjlpot-2.0.0/pjlpot.egg-info/entry_points.txt +2 -0
- pjlpot-2.0.0/pjlpot.egg-info/requires.txt +156 -0
- pjlpot-2.0.0/pjlpot.egg-info/top_level.txt +3 -0
- pjlpot-2.0.0/setup.cfg +7 -0
- pjlpot-2.0.0/setup.py +304 -0
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [2.0.0]
|
|
9
|
+
|
|
10
|
+
### Added in version 2.0.0
|
|
11
|
+
|
|
12
|
+
* Made the project installable from PyPI
|
|
13
|
+
* `.gitlab-ci.yml` file to scan for secrets
|
|
14
|
+
|
|
15
|
+
### Changed in version 2.0.0
|
|
16
|
+
|
|
17
|
+
* Increased the version nuber
|
|
18
|
+
* Got rid of `getlist()`
|
|
19
|
+
* Fixed bugs in the Discord, PostgreSQL, Slack, and Telegram output plugins
|
|
20
|
+
* Fixed a bug in the reporting (`ip` was being referenced before being determined)
|
|
21
|
+
* Better error checking if another process is already listening to the same port
|
|
22
|
+
* Better Python 2.x/3.x compatibility
|
|
23
|
+
* Completely rewritten `Dockerfile`, uses hardened images
|
|
24
|
+
|
|
25
|
+
## [1.0.1]
|
|
26
|
+
|
|
27
|
+
### Changed in version 1.0.1
|
|
28
|
+
|
|
29
|
+
* Increased the version number
|
|
30
|
+
* Made the test script compatible with Python 2.x
|
|
31
|
+
* Increased the version number
|
|
32
|
+
* Fixed the exposed port in the `Dockerfile`
|
|
33
|
+
* Updated the documentation with information how to start the honeypot at boot
|
|
34
|
+
time
|
|
35
|
+
|
|
36
|
+
### Added in version 1.0.1
|
|
37
|
+
|
|
38
|
+
* Capturing of the files uploaded via `FSDOWNLOAD`
|
|
39
|
+
* Implemented a file system
|
|
40
|
+
* Support for the commands
|
|
41
|
+
* `DEFAULT`
|
|
42
|
+
* `ENTER` (`LANGUAGE` is ignored)
|
|
43
|
+
* `EOJ` (ignored)
|
|
44
|
+
* `FSAPPEND`
|
|
45
|
+
* `FSDOWNLOAD`
|
|
46
|
+
* `FSDELETE`
|
|
47
|
+
* `FSDIRLIST`
|
|
48
|
+
* `FSMKDIR`
|
|
49
|
+
* `FSQUERY`
|
|
50
|
+
* `FSUPLOAD`
|
|
51
|
+
* `JOB` (ignored)
|
|
52
|
+
* `USTATUS` (ignored)
|
|
53
|
+
* `USTATUSOFF`
|
|
54
|
+
* Support for raw printing of text and PostScript files
|
|
55
|
+
|
|
56
|
+
## [1.0.0]
|
|
57
|
+
|
|
58
|
+
### Added in version 1.0.0
|
|
59
|
+
|
|
60
|
+
* Initial release
|
|
61
|
+
* Implemented the honeypot using the Twisted framework
|
|
62
|
+
* Made the honeypot compatible with Python 3.x
|
|
63
|
+
* Config file support
|
|
64
|
+
* Various command-line options
|
|
65
|
+
* Log rotation
|
|
66
|
+
* Support for the `report_public_ip` config file option
|
|
67
|
+
* A script for starting, stopping, and restarting the honeypot
|
|
68
|
+
* Documentation
|
|
69
|
+
* Output plugin support
|
|
70
|
+
* Output plugins for
|
|
71
|
+
* CouchDB
|
|
72
|
+
* Datadog
|
|
73
|
+
* Discord
|
|
74
|
+
* Elasticsearch
|
|
75
|
+
* HPFeeds
|
|
76
|
+
* InfluxDB 2.0 (Python 3.6+ only)
|
|
77
|
+
* JSON
|
|
78
|
+
* Kafka
|
|
79
|
+
* MongoDB
|
|
80
|
+
* MySQL
|
|
81
|
+
* NLCV API
|
|
82
|
+
* PostgeSQL
|
|
83
|
+
* Redis
|
|
84
|
+
* RethinkDB
|
|
85
|
+
* Slack
|
|
86
|
+
* Socket
|
|
87
|
+
* SQLite3
|
|
88
|
+
* Syslog
|
|
89
|
+
* Telegram
|
|
90
|
+
* text
|
|
91
|
+
* XMPP
|