Skip to content

Latest commit

 

History

History
454 lines (350 loc) · 20.4 KB

CHANGELOG.md

File metadata and controls

454 lines (350 loc) · 20.4 KB

CHANGELOG

3.3.0 (2024-03-01)

Bump version to be in sync with the main intelmq release

3.2.0 (2023-07-19)

Configuration

  • Fixed generating paths with doubled slashes when to save configurations.

3.0.1 (2021-09-02)

Pages

  • Login: Show error messages as returned from the API instead of a constant string (PR#277 by Sebastian Wagner, fixes intelmq-api#35).

Configuration

  • Fix working with edges between bots, by transmitting new edges to the server with the new API (PR#264 by Mikk Margus Möll).
  • Correctly hide the destination_queues parameter in the bot editor (PR#264 by Mikk Margus Möll).
  • Restore sane default bot IDs (PR#264 by Mikk Margus Möll, fixes #263).
  • Removed redundant pipeline.js file (PR#264 by Mikk Margus Möll).
  • Fix a race condition trying to call both the /runtime and /positions API endpoints at the same time, when /runtime is updating runtime.yaml at the same time that /positions is trying to parse it (PR#264 by Mikk Margus Möll).
  • internal improvements (PR#264 by Mikk Margus Möll):
    • edge IDs are now ${source_node}|${destination_node}|${edge_name}.
    • some loops which previously iterated over every single edge should be a bit faster now.
    • various tweaks, like reducing the scope of variables and using string templates instead of string concatenation.
  • Fix saving new bots, led to an JS exception (PR#273 by Sebastian Wagner, fixes #272).
  • Open bot documentation in a new page (PR#274 by Birger Schacht, fixes #262).
  • Prohibit the user from creating a bot with an ID collision (PR#276 by Mikk Margus Möll, fixes #152).
  • Ask the user for confirmation to exit the page in case of unsaved changes (PR#276 by Mikk Margus Möll, fixes #212)

Monitor

  • ALLOWED_PATH and CONTROLLER_CMD are defined in a separate JavaScript file, rather than being templated into the HTML, fixing Content-Security-Policy issues (PR#264 by Mikk Margus Möll, fixes #183).
  • Fix undeclared variable for showing multi-line log lines (PR#286 by Jeremias Pretto).

Known issues

  • Graph jumps around on "Add edge" (#148).
  • Monitor page: Automatic log refresh reset log page to first one (#190).
  • Load error if a bot has not optional parameters field in runtime configuration (#237).
  • Better error message for missing authentication (#238).
  • Configuration page: Keyboard shortcuts don't work (#260).
  • Edit Defaults: Documentation link just reloads (#261).

3.0.0 (2021-07-02)

Pages

  • Adapt the manager for the new API (PR#259 by Birger Schacht): IntelMQ changed the way it handles the configuration of bots, queues and default values. IntelMQ-API followed this change and now only provides endpoints for the runtime and the position. This commit implements this change in the JavaScript code and also updates various functions to reflect other minor changes (i.e. the bot id is now called bot_id instead of id).

Configuration

  • Add a link pointing to the module documentation to the settings overlay of every bot (PR#256 by Birger Schacht).
  • BOTS file uses now correct API endpoint (PR#252 by Sebastian Waldbauer).

About

  • The versions-section now lists IntelMQ, IntelMQ API and IntelMQ Manager (by Sebastian Wagner, fixes #251).

Documentation

  • Make project reuse compliant (PR#258 by Birger Schacht, fixes #218): Add missing license entries to .reuse/dep5 and delete the license files reuse interprets as bad (the copyright is listed in the dep5 file, so there is no need for having a separate license file for every copyright).

Known issues

  • Graph jumps around on "Add edge" (#148).
  • wrong error message for new bots with existing ID (#152).
  • Monitor page: Automatic log refresh reset log page to first one (#190).
  • Load error if a bot has not optional parameters field in runtime configuration (#237).
  • Better error message for missing authentication (#238).
  • Reload page after login (#243).
  • Configuration page: Keyboard shortcut for adding queues crashes Firefox (#260).

2.3.1 (2021-03-25)

Configuration

  • Add authentication token in save-data request (PR#245 by Marcos Gonzalez, fixes #244).
  • Fix "Clear Configuration" link destination (PR#249 by Sebastian Wagner, fixes #248).

Monitor

  • Fix link to configuration page of bot (PR#249 by Sebastian Wagner, fixes #248).

Known issues

  • Graph jumps around on "Add edge" (#148).
  • wrong error message for new bots with existing ID (#152).
  • Monitor page: Automatic log refresh reset log page to first one (#190).
  • Load error if a bot has not optional parameters field in runtime configuration (#237).
  • Better error messag for missing authentication (#238).
  • Reload page after login (#243).
  • Debian packages usability: webserver not required, causing missing webserver configuration (#246).

2.3.0 (2021-03-04)

Backend

  • The backend has been rewritten and changed from PHP to Python (PR#197 by Bernhard Herzog and Bernhard Reiter, #80)
  • The backend has then been moved to a seperate repository and is now called intelmq-api: https://github.com/certtools/intelmq-api (PR#226)
  • The name intelmq-manager now refers to the web frontend only

intelmq-manager

  • The intelmq-manager html files are now being distributed as an archive of static files. They are still built using mako, but this is done during the build of the source distribution.

Landing page

Configuration

  • Remove the hover function which displayed the hovered bot's configuration (#213, PR#216 by Birger Schacht).

Documentation

  • Add a link to the failure tips (PR#215 by Edvard Rejthar).
  • SQLite failure tip (PR#217 by Edvard Rejthar).

Known issues

  • Graph jumps around on "Add edge" (#148).
  • wrong error message for new bots with existing ID (#152).
  • Monitor page: Automatic log refresh reset log page to first one (#190).
  • Load error if a bot has not optional parameters field in runtime configuration (#237).

2.2.1 (2020-07-30)

This IntelMQ Manager version requires IntelMQ >= 2.2.1.

Backend

  • Fix loading paths from intelmqctl executable (PR #205 by Einar Felipe Lanfranco).

Documentation

  • User Guide:
    • Add section on configuration paths.
    • Add section on named queues / paths.
  • Readme:
    • Update screenshots (#201, PR#207 by Mladen Markovic).

Known issues

  • Graph jumps around on "Add edge" (#148).
  • wrong error message for new bots with existing ID (#152).
  • Monitor page: Automatic log refresh reset log page to first one (#190).

2.2.0 (2020-06-23)

This IntelMQ Manager version requires IntelMQ >= 2.2.0.

Backend

  • config: Get file paths from intelmctl debug --get-paths if possible and fall back to hard-coded paths otherwise. Thereby environment variables influencing the paths are respected (#193).

Pages

About

  • Show output of intelmqctl debug.

Documentation

  • Update release from intelmq's release documentation.
  • Update Installation documentation: Fix & update dependencies and supported operating systems.

Packaging

  • Update default positions.conf to the default runtime/pipeline configuration of intelmq >= 2.1.1.

Known issues

  • Missing CSRF protection (#111).
  • Graph jumps around on "Add edge" (#148).
  • wrong error message for new bots with existing ID (#152).
  • ALLOWED_PATH= violates CSP (#183).
  • Monitor page: Automatic log refresh reset log page to first one (#190).

2.1.1 (2020-04-27)

Bernhard Herzog (Intevation) discovered that the backend incorrectly handled messages given by user-input in the "send" functionality of the Inspect-tool of the Monitor component. An attacker with access to the IntelMQ Manager could possibly use this issue to execute arbitrary code with the privileges of the webserver (CVE-2020-11016).

Backend

  • Fix misspelling of the environmental variable INTELMQ_MANGER_CONTROLLER_CMD to INTELMQ_MANAGER_CONTROLLER_CMD (an 'a' was missing).
  • Fix handling of POST variable msg of the message-sending functionality available in the Inspect-tool.

Pages

Monitor

  • Fix running commands with the "inspect" widget by fixing the definition of the CONTROLLER_CMD in the template (PR #194).

Documentation

  • Update supported operating systems in Installation documentation (i.a. PR #191).

Known issues

  • Missing CSRF protection (#111).
  • Graph jumps around on "Add edge" (#148).
  • wrong error message for new bots with existing ID (#152).
  • ALLOWED_PATH= violates CSP (#183).
  • Monitor page: Automatic log refresh reset log page to first one (#190).

2.1.0 (2019-10-15)

Backend

  • Fix mispelling of the environmental variable INTELMQ_MANGER_CONTROLER_CMD to INTELMQ_MANGER_CONTROLLER_CMD (you might be required to add the double 'l' to your nginx/apache server configuration)
  • When displaying a command to be replicated by debugging user, the string "sudo -u {webserver user}" string is prepended so that linux user do not have to bother with sudoing himself on the commonly used user "www-data" – which often can't be sudoed to (no bash provided due to good security measures). (Used in monitor and error reporting.)

Frontend

  • Error reporting
    • Click will enlarge the dialog that contains much more useful info, notably the very command that failed so that it can be easily reproduced.
    • Error messages are shuffled only when minimized, not when maximized. That would disturb the user trying to read the details.
    • Invalid Syntax Error message removed. Till now, all error messages generated the string that JSON received is invalid – that wasn't needed, we knew it's invalid because it contained string message.
    • Double click does not close log window anymore since it would interfere with the user trying to select whole text by mouse.
    • Escape minimizes the reporting.
    • For common seen errors, a tip is displayed (preferable with a link to the Github manual).

Pages

Configuration

  • Node group Collector now may connect to Expert and Expert can connect to Parser, however you receive a warning that it is not very common.

2.0.0 (2019-05-22)

Backend

  • Some AJAX requests are marked as to-be-cached for a little amount of time so that server load decreases when you need many tabs open.

Pages

Configuration

  • "Save Configuration" button reloads the bots whose destination queues changed (#175).
  • Allow standard vis.js arrow and +/- navigation when network chart is focused (#176).
  • Underscored letters denote shortcuts - you can now edit the network without wandering the mouse all around the screen (#176).
  • Correctly load JSON parameters when editing a bot: content instead of '[object Object]' string.
  • Handle not explicitly given internal queues.
  • Physics / Live button are now rememberable in the positions.conf file on the server.
  • When changing state or being disabled or erroneous, bot receives dashed border.
  • You are allowed to create multiple edges between the same nodes - correctly displayed. If the edges should have the same paths, rename dialog appears.

Management

  • Auto-reloading
  • Clicking an action on a bot will make group panel correspond immediately
  • Clicking an action on a panel will make group in the table correspond immediately

Monitor

  • Correctly display JSON parameters: content instead of '[object Object]' string.
  • Reloading logs fixed
  • Reloading logs every 3 sec instead of 300 sec
  • Auto-reloading logs after bot started/stopped

Documentation

  • Add SECURITY.md file.

Known issues

  • Missing CSRF protection (#111).
  • Graph jumps around on "Add edge" (#148).
  • wrong error message for new bots with existing ID (#152).

1.1.0 (2018-11-12)

  • Add generic MIT license text to make reuse license checker happy (#140).

Backend

  • Using LESS for writing CSS (so CSS is now readonly)
  • Fix on several places: intervals won't flood server if there is a lag, they'll wait till previous request has finished. Auto-delay/boost depending on server lag.

Frontend

  • Error reporting in a less-disturbing text box rather than an tab-wide javascript alert. Click to enlarge, double click to hide.
  • Much more detailed Error reporting. What was earlier just mere 'SyntaxError: JSON.parse ...' has now included 'Failed to execute intelmqctl:~/.local/bin/intelmqctl --type json list queues' - see? That's a full command that'll help the developer so much in debugging. (Long error reports got automatically truncated to 200 characters.)
  • If an error appears again and again (redis down?) it blinks instead of spamming you, updates its time and show number of times it has been thrown.
  • Current tab marked in menu

Pages

Configuration

  • New menu item linking selected bot with the monitor (just an icon to preserve space on precious menu bar). Supports ctrl+click to new tab on the whole button area.
  • New menu item to duplicate current bot, its queues included (and focus the new one); the new bot is selected and focused so that the user finds it on a big plan. It is inserted instead of the add button when a bot is selected.
  • You may now see live data, each bot has its queue length in the label
  • Button labels (Add bot, Add queue instead of Add node, Add edge) now makes more sense and won't shock a newcomer
  • Clearly visible bot statuses; if bot is not running, its colour is dimmed.
  • Manager now supports named queue paths. They are displayed along the edges and editable.
  • Double click edits the bot or the queue
  • Code cleanup: New modal window for performing multiple dialog actions. Intercepting visjs internals without using external Hammer library.
  • Enter key submits the edit bot dialog.
  • Clicking on the side-menu bot name cycles amongst bot instances in the canvas.
  • Got rid of the dumb "#load" and "#new" parameter → "#new" converted into a standard URL parameter "configuration=new".
  • Button to turn on/off physics
  • Detection for bots not configured in runtime but in pipeline configuration (#166).
  • Runtime parameters with the names 'group', 'name' or 'module' were not editable (they are read-only for the 'generic' section) (#172).
  • Message counter for removed queues is correctly reset (#158).

Management

  • Control buttons (start/stop...) now are not only part of the management tab but are common even for configuration tab and inspection panel in monitor tab. They need less configuration (thanks to $(document).on global configuration feature) and works better with less code used (single method instead of four of them). There is also a new red state 'error' for non-standard problems or invalid output from intelmqctl.
  • Clicking bot name support ctrl+click to new tab
  • Table doesn't redraw all the time (so that a highlighting of a browser search is preserved while clicking on a button)
  • It is now possible to start/stop a group of bots easily. Additional panels are linked, so that if you eg. start all the experts, but let other bots stopped, Experts panel shows that all bots are running and Botnet panel shows that only some bots are running.

Monitor

  • Fixed bot crawling in Monitor section (F5 will take you on the same page, not on the main monitoring page, permanent links, history browsing)
  • Prefer updating the destination queues overview table over redrawing it all the time (so that you can select some text)
  • Reloading a page sometimes caused a disturbing 'Error loading' alert in Firefox if an AJAX request had not yet been completed
  • Fixed bug: when clicking on bot destination queue in bot detail, we won't end in an undefined bot
  • Inspect panel allows you to communicate via debug functions of intelmqctl (see and inject messages, process single message and see output). Ctrl+Enter hits the Process button (hint included in textarea placeholder). Checkbox 'Inject message from above' marked on first text ever written to message textarea.
  • The new parameters panel that displays the bot's parameters on the bot's monitor page. For parameters which are filenames, the content of these files will be shown as text if they reside in the allowed paths (set in config.php).
  • When needed, Path column appears, resizing the Queues panel accordingly.
  • Connected with the configuration panel → a link appears next to the bot title that takes you directly to the bot

Known issues

  • Missing CSRF protection (#111).
  • Graph jumps around on "Add edge" (#148).
  • wrong error message for new bots with existing ID (#152).

1.0.2 (2018-09-24)

Backend

  • Emit a more specific error message for cases like #160.
  • The timeout for calls to intelmqctl has been raised to 20s (#164).

Pages

Configuration

  • Underscore is now allowed for new parameter names (#153).

Monitor

  • Fix link to monitor page (#157).

Documentation

  • Add a FAQ and add a section about the docker issue (#160).
  • Add instructions for Debian 9, Ubuntu 18.04, and openSUSE Leap 42.3, 15.0 (#168).

Packaging

  • Include a positions file matching the default configuration of intelmq (#171).

Known issues

  • Missing CSRF protection (#111).
  • Missing copyright notices (#140).
  • Graph jumps around on "Add edge" (#148).
  • wrong error message for new bots with existing ID (#152).
  • Queue size for deleted queue remains displayed (#158).

1.0.1 (2018-04-23)

The version is compatible with intelmq >= 1.0.3

Backend

  • Fix version number.

Known issues

  • Missing CSRF protection (#111).
  • Missing copyright notices (#140).
  • Graph jumps around on "Add edge" (#148).
  • new runtime parameters with _ not possible (#153).
  • wrong error message for new bots with existing ID (#152).

1.0.0 (2018-04-23)

The version is compatible with intelmq >= 1.0.3

Backend

  • Set content type correctly for JSON data in configuration loading (#112)

Pages

  • All pages are now deliverd by php, reducing the amount of duplicate code drastically.

Landing page

  • Added a new block for the new check page, changed the formatting a bit.

Configuration

  • Fixed handling of special parameter run_mode (#150)
  • Intelmqctl controller may be set via an env variable INTELMQ_MANGER_CONTROLLER_CMD

Check

  • Added, showing the output of intelmqctl check (#118).

Documentation

  • Note on header Content-Security-Policy (#113)
  • Note on security considerations in Readme to avoid misunderstandings
  • Remove compatibility warning from README

Third-party libraries

  • reverted update jQuery to 3.2.1
  • reverted update metisMenu to 2.7.0

Licenses

  • Licenses of used and included software is now inventarized and properly declared in LICENSES/ (#134)

Packaging

  • fix packaging of positions.conf file for deb-packages (#133).

Known issues

  • Missing CSRF protection (#111).
  • Missing copyright notices (#140).
  • Graph jumps around on "Add edge" (#148).
  • new runtime parameters with _ not possible (#153).
  • wrong error message for new bots with existing ID (#152).

0.3.1 (2017-09-26)

Configuration

  • Fixed validation on files before saving them, this has rejected valid data

0.3 (2017-09-25)

  • Partly support for CentOS/RHEL 7 (#55, #103)
  • Note on security considerations in Readme to avoid misunderstandings
  • Show versions of intelmq and intelmq manager on about page
  • Update vis.js to current version
  • update jQuery to 3.2.1
  • update metisMenu to 2.7.0

Configuration

  • interface for defaults.conf (#45)
  • drag&drop (#105, #41)
  • fix #96
  • save buttons starts blinking after changes (#41)
  • Allow redrawing of botnet on demand
  • Save/load position of bots in/from /opt/intelmq/etc/manager/positions.conf File needs to be writeable
  • parameters from defaults are shown for new bots (#107)
  • parameters are grouped by type: generic, runtime, defaults
  • better feedback on errors with backend (#69, #99)
  • pressing ESC in forms equals to pressing the cancel button
  • Edit node window is now much bigger
  • pressing enter in 'add key' window equals to pressing ok button

Management

  • Reload and restart have been added as actions on bots and the whole botnet (#114)
  • A click on the bot name opens the monitor page of the bot

Monitor

  • clearing queues is possible in general and specific view for all queues (#54)

Backend

  • Fix regex checks on bot ids and log line number in controller, they have not been effective
  • fix overflow in extended message box (#49)

0.2.1 (2017-06-20)

  • Fix syntax error in pipeline.js preventing loading of configuration page

0.2.0 (2017-06-20)

  • first release