2020-06-30 12:50:28 +02:00
|
|
|
include::../description.adoc[]
|
|
|
|
|
|
|
|
include::../ask-yourself.adoc[]
|
|
|
|
|
|
|
|
include::../recommended.adoc[]
|
|
|
|
|
|
|
|
== Sensitive Code Example
|
|
|
|
|
2023-01-09 15:29:41 +01:00
|
|
|
[source,apex]
|
2020-06-30 12:50:28 +02:00
|
|
|
----
|
|
|
|
public class MyClient {
|
|
|
|
public void SendRequest(){
|
|
|
|
HttpRequest req = new HttpRequest();
|
|
|
|
req.setEndpoint('http://example.com'); // Sensitive
|
|
|
|
// ...
|
|
|
|
}
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
|
2022-02-04 17:28:24 +01:00
|
|
|
[source,apex]
|
2020-06-30 12:50:28 +02:00
|
|
|
----
|
|
|
|
public class MyClient {
|
|
|
|
public void SendRequest(){
|
|
|
|
HttpRequest req = new HttpRequest();
|
2023-01-09 15:29:41 +01:00
|
|
|
req.setEndpoint('https://example.com');
|
2020-06-30 12:50:28 +02:00
|
|
|
// ...
|
|
|
|
}
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
include::../exceptions.adoc[]
|
|
|
|
|
2024-05-06 07:56:31 +01:00
|
|
|
include::../see.adoc[]
|
|
|
|
|
2020-06-30 12:50:28 +02:00
|
|
|
|
2021-09-20 15:38:42 +02:00
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
|
|
|
|
'''
|
|
|
|
== Implementation Specification
|
|
|
|
(visible only on this page)
|
|
|
|
|
2023-05-25 14:18:12 +02:00
|
|
|
=== Message
|
|
|
|
|
|
|
|
Replace this http request with an https equivalent.
|
|
|
|
|
2021-09-20 15:38:42 +02:00
|
|
|
|
|
|
|
endif::env-github,rspecator-view[]
|