Terminate immediately if a fuzzing harness tries to perform a DNS lookup (belt and suspenders).
Obviously this should never happen, but if it does happen we want immediate termination instead of a DNS lookup :)
Terminate immediately if a fuzzing harness tries to perform a DNS lookup (belt and suspenders).
Obviously this should never happen, but if it does happen we want immediate termination instead of a DNS lookup :)
29@@ -27,8 +30,15 @@ void FuzzFrameworkRegisterTarget(std::string_view name, TypeTestOneInput target,
30
31 static TypeTestOneInput* g_test_one_input{nullptr};
32
33+std::vector<CNetAddr> TerminateOnDNSLookup(const std::string&, bool) {
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
No conflicts as of last run.
CConnman::OpenNetworkConnection()
, it called CConnman::ConnectNode()
which called Lookup()
with the default fNameLookup
which is true
.
practicalswift
MarcoFalke
DrahtBot
vasild
Labels
Tests