-
Notifications
You must be signed in to change notification settings - Fork 155
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
Conversation
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))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
strlen(private_key))); | |
strlen (private_key))); |
There was a problem hiding this comment.
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)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
osp_value = g_base64_encode ((guchar*) value, strlen(value)); | |
osp_value = g_base64_encode ((guchar*) value, strlen (value)); |
Also the ssh key sent for authenticated scans will be encoded.