rspec/rules/S4825/vbnet/rule.adoc

48 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-06-30 12:49:37 +02:00
include::../description.adoc[]
include::../ask-yourself.adoc[]
include::../recommended.adoc[]
== Sensitive Code Example
----
Dim client As System.Net.Http.HttpClient
' All the following are Sensitive
client.GetAsync(...)
client.GetByteArrayAsync(...)
client.GetStreamAsync(...)
client.GetStringAsync(...)
client.SendAsync(...)
client.PostAsync(...)
client.PutAsync(...)
client.DeleteAsync(...)
Dim webclient As System.Net.WebClient
' All the following are Sensitive, although they may be false positives if the URI scheme is "ftp" or "file"
webclient.Download*(...) ' Any method starting with "Download"
webclient.Open*(...) ' Any method starting with "Open"
webclient.Upload*(...) ' Any method starting with "Upload"
' All the following are Sensitive, although they may be false positives if the URI scheme is "ftp" or "file"
System.Net.WebRequest.Create(...)
System.Net.WebRequest.CreateDefault(...)
' The following is always Sensitive
System.Net.WebRequest.CreateHttp(...)
' === RestSharp ===
' Sensitive, as well as any other instantiation of the RestSharp.IRestRequest interface.
Dim rsRequest = new RestSharp.RestRequest(...)
----
include::../see.adoc[]
ifdef::rspecator-view[]
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::rspecator-view[]