-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
247 lines (153 loc) · 4.79 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [4.1.0]
### Added
- added multicore arg for experimental multiprocessing
### Changed
- change deprecated psutil process connections function
## [4.0.0] - 2024-01-16
### Added
- addons: docker hub Dockerfile
### Changed
- [breaking] project renaming, please welcome: paranoya
- be verbose about skipping files in program directory
## [3.2.2] - 2024-01-16
### Added
- chroot helper script
- custom yara rules: malpedia/signator-rules
### Changed
- code refactoring
### Removed
- removed invalid --update args from loki.py, use upgrader.py instead
- custom Yara-Rules/rules, causing overflows
## [3.2.1] - 2024-01-13
### Added
- flatpak gen_python3-requirements.sh helper script
### Changed
- docker deploy.sh script
### Fixed
- flatpak files regression
## [3.2.0] - 2024-01-13
### Added
- progress bar can be enabled with --progress (experimental)
- lib/lokiargs.py
- lib/constants.py
- lib/lokivenv.py
- new option: --followlinks allow to force Loki to follow symlinks
- new option: --custom allows the use of custom yara rulesets
- custom yara rules sources
### Changed
- code refactoring
### Removed
- removed obsolete pyinstaller options from the build.sh
- lib/venv.py
### Fixed
- obsolete python2 options
## [3.1.1] - 2024-01-11
### Fixed
- build script regression
## [3.1.0] - 2024-01-11
### Added
- deployment script deploy.sh which installs deps and venv
- venv autosetup and detection
- upgrader script signal handling
- custom modules import validation
- new local module: lib/venv.py
### Changed
- loki no longer changes background inside the terminal
### Fixed
- stripping empty space in cmdline
- cache files preventing upgrade if signature-base is not present
### Removed
- venv.sh replaced with deploy.sh
## [3.0.0] - 2024-01-10
### Added
- build.sh improvements and new options
### Changed
- [breaking] --onlyrelevant replaced with --silent
- [breaking] loki.py has been converted to Linux new lines ending
- updated docker files
- updated openrc/init script
- minified/stripped yara test sample
### Fixed
- upgrader handling github rate limits
## [2.0.0] - 2024-01-09
### Added
- new dependency: requests
- docker files improvements
### Changed
- [breaking] loki-client.py renamed to client.py
- [breaking] loki-upgrader.py renamed to upgrader.py
- [breaking] --log-file arg replaced with --logfile
- [breaking] upgrader --clean arg replaced with --force
- heavy refactoring of the upgrader, helpers and lokilogger lib files
- initial refactoring of the loki.py
- netaddr replaced with ipaddress
- updated requirements.txt
- updated docker files
- updated flatpak files
- urllib.request.urlopen replaced with requests
- build.sh updated
- upgrader now works independently of lib files
- improved welcome message
### Removed
- [breaking] syslog and remote logging due to the obsolete dependency
- removed dep: netaddr
- removed dep: rfc5424-logging-handler
### Security
- removed shell subprocess calls
### Fixed
- packages generated by build.sh not including lib
- upgrader not handling pipes properly
## [1.0.3] - 2024-01-06
### Added
- added handling ascii welcome for smaller terminals
- binary upgrader handling
- pyinstaller build bash script
- venv setup bash script
- added certifi and ssl context for upgrader
### Changed
- change upgrader log name to loki-upgrader.log
- loki-client.py now has argparse, check --help for usage
### Removed
- removed obsolete python2 modules imports
### Fixed
- incorrect version number
## [1.0.2] - 2024-01-05
### Changed
- improved pidfile and socket error handling
- get rid of wildcard imports
### Fixed
- missing module name
- fixed upgrader clean mode
## [1.0.1] - 2024-01-05
### Fixed
- missing module name
## [1.0.0] - 2024-01-04
### Changed
- code refactoring and cleanup
- dropping support for non-linux platforms
- loki-upgrader program updates now uses Loki-daemonized repo
- loki_client.py renamed to loki-client.py to match loki-upgrader.py convention
- docker, flatpak, init files and img moved to ./addons/
- example excludes disabled by default
### Removed
- removed any non-linux code
- removed non-linux deps
- removed patch file as it no longer makes sense due to the depth of changes
- future module no longer used, removed from requirements.txt
## [0.51.0-d2] - 2024-01-04
### Added
- added missing exceptions
- added stripping socket data
- flatpak builder files
## [0.51.0-d1] - 2024-01-03
### Added
- first release
- focuses on Linux
- single file scan if given path is a file
- daemon mode
- exclude files by hash
- initial implementation of process scanning under Linux