pop3pot 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.
- pop3pot-2.0.0/CHANGELOG.md +64 -0
- pop3pot-2.0.0/LICENSE +674 -0
- pop3pot-2.0.0/MANIFEST.in +9 -0
- pop3pot-2.0.0/PKG-INFO +152 -0
- pop3pot-2.0.0/README.md +19 -0
- pop3pot-2.0.0/core/__init__.py +0 -0
- pop3pot-2.0.0/core/config.py +50 -0
- pop3pot-2.0.0/core/logfile.py +74 -0
- pop3pot-2.0.0/core/output.py +39 -0
- pop3pot-2.0.0/core/paths.py +53 -0
- pop3pot-2.0.0/core/protocol.py +151 -0
- pop3pot-2.0.0/core/tools.py +170 -0
- pop3pot-2.0.0/honeypot.py +117 -0
- pop3pot-2.0.0/output_plugins/README.md +21 -0
- pop3pot-2.0.0/output_plugins/__init__.py +0 -0
- pop3pot-2.0.0/output_plugins/couch.py +68 -0
- pop3pot-2.0.0/output_plugins/datadog.py +74 -0
- pop3pot-2.0.0/output_plugins/discord.py +138 -0
- pop3pot-2.0.0/output_plugins/elastic.py +137 -0
- pop3pot-2.0.0/output_plugins/hpfeed.py +44 -0
- pop3pot-2.0.0/output_plugins/influx2.py +66 -0
- pop3pot-2.0.0/output_plugins/jsonlog.py +36 -0
- pop3pot-2.0.0/output_plugins/kafka.py +57 -0
- pop3pot-2.0.0/output_plugins/localsyslog.py +66 -0
- pop3pot-2.0.0/output_plugins/mongodb.py +83 -0
- pop3pot-2.0.0/output_plugins/mysql.py +213 -0
- pop3pot-2.0.0/output_plugins/nlcvapi.py +119 -0
- pop3pot-2.0.0/output_plugins/postgres.py +157 -0
- pop3pot-2.0.0/output_plugins/redisdb.py +47 -0
- pop3pot-2.0.0/output_plugins/rethinkdblog.py +46 -0
- pop3pot-2.0.0/output_plugins/slack.py +94 -0
- pop3pot-2.0.0/output_plugins/socketlog.py +40 -0
- pop3pot-2.0.0/output_plugins/sqlite.py +144 -0
- pop3pot-2.0.0/output_plugins/telegram.py +141 -0
- pop3pot-2.0.0/output_plugins/textlog.py +46 -0
- pop3pot-2.0.0/output_plugins/xmpp.py +193 -0
- pop3pot-2.0.0/pop3pot/__init__.py +25 -0
- pop3pot-2.0.0/pop3pot/cli.py +512 -0
- pop3pot-2.0.0/pop3pot/data/Dockerfile +56 -0
- pop3pot-2.0.0/pop3pot/data/docs/INSTALL.md +426 -0
- pop3pot-2.0.0/pop3pot/data/docs/INSTALLWIN.md +436 -0
- pop3pot-2.0.0/pop3pot/data/docs/PLUGINS.md +21 -0
- pop3pot-2.0.0/pop3pot/data/docs/TODO.md +8 -0
- pop3pot-2.0.0/pop3pot/data/docs/datadog/README.md +32 -0
- pop3pot-2.0.0/pop3pot/data/docs/discord/README.md +58 -0
- pop3pot-2.0.0/pop3pot/data/docs/geoipupdtask.ps1 +270 -0
- pop3pot-2.0.0/pop3pot/data/docs/mysql/README.md +176 -0
- pop3pot-2.0.0/pop3pot/data/docs/mysql/READMEWIN.md +157 -0
- pop3pot-2.0.0/pop3pot/data/docs/mysql/mysql.sql +85 -0
- pop3pot-2.0.0/pop3pot/data/docs/postgres/README.md +184 -0
- pop3pot-2.0.0/pop3pot/data/docs/postgres/READMEWIN.md +196 -0
- pop3pot-2.0.0/pop3pot/data/docs/postgres/postgres.sql +73 -0
- pop3pot-2.0.0/pop3pot/data/docs/slack/README.md +68 -0
- pop3pot-2.0.0/pop3pot/data/docs/sqlite3/README.md +131 -0
- pop3pot-2.0.0/pop3pot/data/docs/sqlite3/READMEWIN.md +123 -0
- pop3pot-2.0.0/pop3pot/data/docs/sqlite3/sqlite3.sql +69 -0
- pop3pot-2.0.0/pop3pot/data/docs/telegram/README.md +103 -0
- pop3pot-2.0.0/pop3pot/data/etc/honeypot.cfg +417 -0
- pop3pot-2.0.0/pop3pot/data/etc/honeypot.cfg.base +411 -0
- pop3pot-2.0.0/pop3pot/data/test/.gitignore +5 -0
- pop3pot-2.0.0/pop3pot/data/test/README.md +37 -0
- pop3pot-2.0.0/pop3pot/data/test/baseline +64 -0
- pop3pot-2.0.0/pop3pot/data/test/test.py +179 -0
- pop3pot-2.0.0/pop3pot/honeypot.py +117 -0
- pop3pot-2.0.0/pop3pot.egg-info/PKG-INFO +152 -0
- pop3pot-2.0.0/pop3pot.egg-info/SOURCES.txt +71 -0
- pop3pot-2.0.0/pop3pot.egg-info/dependency_links.txt +1 -0
- pop3pot-2.0.0/pop3pot.egg-info/entry_points.txt +2 -0
- pop3pot-2.0.0/pop3pot.egg-info/requires.txt +155 -0
- pop3pot-2.0.0/pop3pot.egg-info/top_level.txt +3 -0
- pop3pot-2.0.0/setup.cfg +7 -0
- pop3pot-2.0.0/setup.py +303 -0
|
@@ -0,0 +1,64 @@
|
|
|
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 number
|
|
18
|
+
* Fixed the exposed port in the `Dockerfile`
|
|
19
|
+
* Much improved `Dockerfile`, uses a hardened Python image
|
|
20
|
+
* Got rid of `getlist()`
|
|
21
|
+
* Updated the documentation with information how to start the honeypot at boot
|
|
22
|
+
time
|
|
23
|
+
* Fixed bugs in the Discord, PostgreSQL, Slack, and Telegram output plugins
|
|
24
|
+
* Fixed a bug in the reporting (`ip` was referenced before being determined)
|
|
25
|
+
* Better error checking if another process is already listening to the same port
|
|
26
|
+
* Better Python 2.x/3.x compatibility
|
|
27
|
+
* Completely rewritten `Dockerfile`, uses hardened images
|
|
28
|
+
|
|
29
|
+
## [1.0.0]
|
|
30
|
+
|
|
31
|
+
### Added in version 1.0.0
|
|
32
|
+
|
|
33
|
+
* Initial release
|
|
34
|
+
* Implemented the honeypot using the Twisted framework
|
|
35
|
+
* Made the honeypot compatible with Python 3.x
|
|
36
|
+
* Config file support
|
|
37
|
+
* Various command-line options
|
|
38
|
+
* Log rotation
|
|
39
|
+
* Support for the `report_public_ip` config file option
|
|
40
|
+
* A script for starting, stopping, and restarting the honeypot
|
|
41
|
+
* Documentation
|
|
42
|
+
* Output plugin support
|
|
43
|
+
* Output plugins for
|
|
44
|
+
* CouchDB
|
|
45
|
+
* Datadog
|
|
46
|
+
* Discord
|
|
47
|
+
* Elasticsearch
|
|
48
|
+
* HPFeeds
|
|
49
|
+
* InfluxDB 2.0 (Python 3.6+ only)
|
|
50
|
+
* JSON
|
|
51
|
+
* Kafka
|
|
52
|
+
* MongoDB
|
|
53
|
+
* MySQL
|
|
54
|
+
* NLCV API
|
|
55
|
+
* PostgeSQL
|
|
56
|
+
* Redis
|
|
57
|
+
* RethinkDB
|
|
58
|
+
* Slack
|
|
59
|
+
* Socket
|
|
60
|
+
* SQLite3
|
|
61
|
+
* Syslog
|
|
62
|
+
* Telegram
|
|
63
|
+
* text
|
|
64
|
+
* XMPP
|