bcquality/microsoft/knowledge/security/validate-user-configurable-urls-before-http-calls.bad.al
Jesper Schulz-Wedde 5bcdc55df9 Sync knowledge articles with review agent instructions
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-05 14:08:32 +02:00

10 lines
213 B
AL

codeunit 50241 "Sec Sample Url Bad"
{
procedure Sync(ServiceUrl: Text)
var
Client: HttpClient;
Response: HttpResponseMessage;
begin
Client.Get(ServiceUrl, Response);
end;
}