Skip to content

Dionaea: Move credentials in IDEA to a top-level key "Credentials"

Pavel Valach requested to merge credentials_format_dionaea into master

This is a proposed change that would store the credentials at the top level key "Credentials" of the IDEA event JSON, in this way:

{
...
"Credentials":
	[
		{
			"Username": "paulos",
			"Password": "changeme"
		}
	]
...
}

In the future, this allows for inclusion of supplemental information such as public keys, domain, or other types of credentials. It felt correct to give it its own key to differentiate from the "Attach" collection, where the content is strictly string, while here, a JSON object is used directly.

Edited by Pavel Valach

Merge request reports