Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

If the nvt preference is "file" type, encode it into Base64 format. #784

Merged
merged 3 commits into from
Oct 10, 2019

Conversation

jjnicola
Copy link
Member

Also the ssh key sent for authenticated scans will be encoded.

src/manage.c Outdated
@@ -3787,7 +3787,8 @@ target_osp_ssh_credential (target_t target)
const char *private_key = credential_iterator_private_key (&iter);
osp_credential_set_auth_data (osp_credential,
"private",
private_key);
g_base64_encode ((guchar *) private_key,
strlen(private_key)));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
strlen(private_key)));
strlen (private_key)));

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, the memory of private_key was managed as part of iter, but g_base64_encode
allocates new memory, so isn't this a leak?

src/manage.c Outdated
@@ -4091,6 +4092,8 @@ launch_osp_openvas_task (task_t task, target_t target, const char *scan_id,
osp_value = g_strdup (split_value[0]);
g_strfreev (split_value);
}
else if (strcmp (type, "file") == 0)
osp_value = g_base64_encode ((guchar*) value, strlen(value));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
osp_value = g_base64_encode ((guchar*) value, strlen(value));
osp_value = g_base64_encode ((guchar*) value, strlen (value));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants