Fuzz introspector
For issues and ideas: https://github.com/ossf/fuzz-introspector/issues

Project functions overview

The following table shows data about each function in the project. The functions included in this table correspond to all functions that exist in the executables of the fuzzers. As such, there may be functions that are from third-party libraries.

For further technical details on the meaning of columns in the below table, please see the Glossary .

Func name Functions filename Args Function call depth Reached by Fuzzers Runtime reached by Fuzzers Combined reached by Fuzzers Fuzzers runtime hit Func lines hit % I Count BB Count Cyclomatic complexity Functions reached Reached by functions Accumulated cyclomatic complexity Undiscovered complexity

Fuzzer details

Fuzzer: fuzz_mgmt_serialization

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 66 60.0%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 44 40.0%
All colors 110 100

Fuzz blockers

The following nodes represent call sites where fuzz blockers occur.

Amount of callsites blocked Calltree index Parent function Callsite Largest blocked function
43 27 azure.mgmt.dynatrace._serialization.Deserializer._deserialize call site: 00027 azure.mgmt.dynatrace._serialization.Deserializer.deserialize_data
12 11 azure.mgmt.dynatrace._serialization.Deserializer._deserialize call site: 00011 azure.mgmt.dynatrace._serialization.Deserializer._deserialize
5 101 azure.mgmt.dynatrace._serialization.Deserializer._instantiate_model call site: 00101 attrs.get
2 83 azure.mgmt.dynatrace._serialization.Deserializer._build_additional_properties call site: 00083 azure.mgmt.dynatrace._serialization._decode_attribute_map_key
1 71 azure.core.exceptions.raise_with_traceback call site: 00071 azure.mgmt.dynatrace._serialization.Deserializer._deserialize
1 74 azure.mgmt.dynatrace._serialization.Deserializer._deserialize call site: 00074 azure.mgmt.dynatrace._serialization.Deserializer.deserialize_enum
1 77 azure.mgmt.dynatrace._serialization.Deserializer._deserialize call site: 00077 _LOGGER.warning
1 86 azure.mgmt.dynatrace._serialization._decode_attribute_map_key call site: 00086 attribute_map.values

Runtime coverage analysis

Covered functions
293
Functions that are reachable but not covered
60
Reachable functions
70
Percentage of reachable functions covered
14.29%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/ 1
...fuzz_mgmt_serialization 8
azure.mgmt.dynatrace.models._models_py3 1
azure.mgmt.dynatrace._serialization 60
azure.core.exceptions 1

Analyses and suggestions

Optimal target analysis

Remaining optimal interesting functions

The following table shows a list of functions that are optimal targets. Optimal targets are identified by finding the functions that in combination, yield a high code coverage.

Func name Functions filename Arg count Args Function depth hitcount instr count bb count cyclomatic complexity Reachable functions Incoming references total cyclomatic complexity Unreached complexity
azure.core.tracing.decorator.distributed_trace.decorator.wrapper_use_tracer azure.core.tracing.decorator 2 ['N/A', 'N/A'] 9 0 3 6 5 207 0 687 606
azure.core.pipeline.transport._requests_asyncio.AsyncioRequestsTransport.send azure.core.pipeline.transport._requests_asyncio 4 ['N/A', 'N/A', 'N/A', 'N/A'] 4 0 5 5 5 68 0 218 179
azure.core.pipeline.policies._retry_async.AsyncRetryPolicy.send azure.core.pipeline.policies._retry_async 2 ['N/A', 'N/A'] 7 0 6 7 6 51 0 171 144
azure.core.tracing.decorator_async.distributed_trace_async.decorator.wrapper_use_tracer azure.core.tracing.decorator_async 2 ['N/A', 'N/A'] 8 0 3 6 5 178 0 599 95
azure.core.pipeline.policies._authentication_async.AsyncBearerTokenCredentialPolicy.send azure.core.pipeline.policies._authentication_async 2 ['N/A', 'N/A'] 13 0 7 3 4 36 0 120 90
azure.core.utils._pipeline_transport_rest_shared._parts_helper azure.core.utils._pipeline_transport_rest_shared 1 ['N/A'] 10 0 2 2 4 33 2 106 77
azure.core.pipeline.transport._aiohttp.AioHttpTransport.send azure.core.pipeline.transport._aiohttp 5 ['N/A', 'N/A', 'N/A', 'N/A', 'N/A'] 4 0 4 8 6 50 0 162 75
azure.core.pipeline.transport._base.PipelineClientBase._request azure.core.pipeline.transport._base 8 ['N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A'] 4 0 8 7 6 46 8 151 71
azure.common.client_factory.get_client_from_cli_profile azure.common.client_factory 2 ['N/A', 'N/A'] 3 0 4 6 5 21 0 71 62
azure.mgmt.dynatrace._serialization.Serializer.serialize_object azure.mgmt.dynatrace._serialization 3 ['N/A', 'N/A', 'N/A'] 6 0 2 13 8 83 1 279 58

Implementing fuzzers that target the above functions will improve reachability such that it becomes:

Functions statically reachable by fuzzers
22.0%
224 / 1041
Cyclomatic complexity statically reachable by fuzzers
24.0%
843 / 3474

All functions overview

If you implement fuzzers for these functions, the status of all functions in the project will be:

Func name Functions filename Args Function call depth Reached by Fuzzers Runtime reached by Fuzzers Combined reached by Fuzzers Fuzzers runtime hit Func lines hit % I Count BB Count Cyclomatic complexity Functions reached Reached by functions Accumulated cyclomatic complexity Undiscovered complexity

Runtime coverage analysis

This section shows analysis of runtime coverage data.

For futher technical details on how this section is generated, please see the Glossary .

Complex functions with low coverage

Func name Function total lines Lines covered at runtime percentage covered Reached by fuzzers
azure.mgmt.dynatrace._serialization.Serializer._serialize 79 26 32.91% ['fuzz_mgmt_serialization']
azure.mgmt.dynatrace._serialization.Serializer.serialize_iter 36 0 0.0% []
azure.mgmt.dynatrace._serialization.Serializer.serialize_object 40 0 0.0% []
azure.mgmt.dynatrace._serialization.xml_key_extractor 45 6 13.33% ['fuzz_mgmt_serialization']
azure.mgmt.dynatrace._serialization.Deserializer._deserialize 50 24 48.0% ['fuzz_mgmt_serialization']
azure.core.utils._pipeline_transport_rest_shared._prepare_multipart_body_helper 31 2 6.451% ['fuzz_mgmt_serialization']
azure.core.serialization.as_attribute_dict 31 0 0.0% []
typing_extensions.ParamSpec 1787 516 28.87% ['fuzz_mgmt_serialization']
azure.core.pipeline.policies._distributed_tracing.DistributedTracingPolicy.on_request 36 0 0.0% []
azure.core.pipeline.policies._distributed_tracing.DistributedTracingPolicy.end_span 35 0 0.0% []
azure.core.pipeline.policies._universal.NetworkTraceLoggingPolicy.on_request 33 0 0.0% []
azure.core.pipeline.policies._universal.HttpLoggingPolicy.on_request 58 0 0.0% []
azure.core._pipeline_client_async.AsyncPipelineClient._build_pipeline 37 0 0.0% []
azure.core._pipeline_client.PipelineClient._build_pipeline 36 0 0.0% []
azure.core.pipeline.policies._retry_async.AsyncRetryPolicy.send 39 0 0.0% []
azure.core.pipeline.policies._retry.RetryPolicyBase.increment 35 0 0.0% []
azure.core.pipeline.policies._retry.RetryPolicy.send 39 0 0.0% []
azure.mgmt.dynatrace.operations._monitors_operations.MonitorsOperations._create_or_update_initial 35 5 14.28% ['fuzz_mgmt_serialization']
azure.mgmt.dynatrace.operations._monitors_operations.MonitorsOperations.get_sso_details 34 5 14.70% ['fuzz_mgmt_serialization']
azure.mgmt.dynatrace.operations._tag_rules_operations.TagRulesOperations._create_or_update_initial 35 5 14.28% ['fuzz_mgmt_serialization']
azure.mgmt.dynatrace.operations._single_sign_on_operations.SingleSignOnOperations._create_or_update_initial 35 5 14.28% ['fuzz_mgmt_serialization']
azure.core.tracing.decorator.distributed_trace.decorator.wrapper_use_tracer 41 2 4.878% ['fuzz_mgmt_serialization']

Files and Directories in report

This section shows which files and directories are considered in this report. The main reason for showing this is fuzz introspector may include more code in the reasoning than is desired. This section helps identify if too many files/directories are included, e.g. third party code, which may be irrelevant for the threat model. In the event too much is included, fuzz introspector supports a configuration file that can exclude data from the report. See the following link for more information on how to create a config file: link

Files in report

Source file Reached by Covered by
[] []
isodate [] []
azure.mgmt.dynatrace.operations [] []
calendar [] []
azure.common.client_factory [] []
...fuzz_mgmt_serialization ['fuzz_mgmt_serialization'] []
[] []
azure.core.pipeline._tools_async [] []
azure.core.tracing.common [] []
azure.core.pipeline.transport._requests_asyncio [] []
azure.core.pipeline.policies._authentication_async [] []
azure.core._pipeline_client [] []
azure.profiles [] []
azure.core.paging [] []
azure.core._match_conditions [] []
azure.core.rest._http_response_impl [] []
azure.core [] []
azure.core.utils._utils [] []
azure.core.pipeline._base_async [] []
azure.core.rest._aiohttp [] []
azure.core.pipeline.transport._bigger_block_size_http_adapters [] []
io [] []
azure.core.pipeline.transport._base [] []
azure.mgmt.core.policies [] []
opentelemetry [] []
azure.core.configuration [] []
azure.core.pipeline.policies._retry_async [] []
azure.mgmt.dynatrace.aio.operations._single_sign_on_operations [] []
azure.core.async_paging [] []
azure.core.rest [] []
azure.core.polling.async_base_polling [] []
azure.core.pipeline.transport._aiohttp [] []
zlib [] []
pickle [] []
azure.mgmt.core.policies._authentication [] []
http [] []
azure.core.rest._rest_py3 [] []
azure.core.tracing.decorator [] []
azure.core.tracing.ext [] []
azure.core.polling [] []
azure.core.utils._pipeline_transport_rest_shared [] []
azure.core.tracing [] []
azure.mgmt.dynatrace.models._patch [] []
aiohttp [] []
azure.mgmt.core.policies._base [] []
azure.mgmt.dynatrace.aio._patch [] []
azure.mgmt.core._pipeline_client [] []
azure [] []
collections [] []
azure.mgmt.dynatrace.models._dynatrace_observability_mgmt_client_enums [] []
azure.core.utils._pipeline_transport_rest_shared_async [] []
azure.core.pipeline.policies._custom_hook [] []
enum [] []
uuid [] []
azure.mgmt.dynatrace._vendor [] []
azure.mgmt.dynatrace.aio.operations [] []
azure.mgmt.core.polling.arm_polling [] []
azure.core.utils [] []
azure.mgmt.dynatrace.aio.operations._patch [] []
azure.mgmt.core.tools [] []
azure.core._pipeline_client_async [] []
urllib [] []
decimal [] []
atheris [] []
copy [] []
azure.mgmt.core [] []
azure.common.exceptions [] []
azure.core._enum_meta [] []
azure.mgmt.dynatrace.operations._operations [] []
azure.mgmt.core._async_pipeline_client [] []
azure.core._azure_clouds [] []
azure.mgmt.dynatrace.operations._patch [] []
azure.core.utils._connection_string_parser [] []
base64 [] []
azure.core.serialization [] []
azure.core.settings [] []
azure.core.credentials [] []
sys [] []
urllib3 [] []
requests [] []
azure.core.polling._async_poller [] []
azure.mgmt.core.policies._base_async [] []
azure.common.credentials [] []
azure.core.pipeline.policies._distributed_tracing [] []
inspect [] []
azure.common.cloud [] []
azure.core.pipeline.policies._base_async [] []
azure.core.rest._requests_basic [] []
azure.mgmt.dynatrace.aio [] []
azure.mgmt.dynatrace.aio._dynatrace_observability_mgmt_client [] []
trio [] []
azure.core.pipeline.policies._authentication [] []
azure.mgmt.core.polling.async_arm_polling [] []
azure.core.rest._http_response_impl_async [] []
asyncio [] []
azure.core.pipeline.transport._base_async [] []
ProfileDefinition [] []
azure.core.pipeline._base [] []
azure.mgmt.dynatrace._version [] []
adal [] []
azure.mgmt.dynatrace [] []
azure.core.pipeline.policies._base [] []
azure.core.pipeline.transport._requests_basic [] []
chardet [] []
multidict [] []
azure.core.pipeline.transport._requests_trio [] []
azure.mgmt.dynatrace._serialization ['fuzz_mgmt_serialization'] []
azure.core.tracing._abstract_span [] []
json [] []
azure.core._version [] []
ssl [] []
warnings [] []
azure.core.pipeline.policies._sensitive_header_cleanup_policy [] []
azure.mgmt.dynatrace.models._models_py3 ['fuzz_mgmt_serialization'] []
codecs [] []
azure.core.instrumentation [] []
azure.mgmt.dynatrace.aio.operations._operations [] []
functools [] []
azure.core.messaging [] []
azure.core.polling._poller [] []
msrestazure [] []
azure.profiles.multiapiclient [] []
azure.core.pipeline.policies._utils [] []
azure.core.pipeline.transport._base_requests_async [] []
azure.core.rest._requests_trio [] []
KnownProfiles [] []
contextvars [] []
azure.mgmt.dynatrace._patch [] []
azure.core.tracing._models [] []
azure.core.pipeline.policies._universal [] []
azure.core.tracing.decorator_async [] []
azure.core.rest._helpers [] []
email [] []
xml [] []
typing_extensions [] []
azure.core.pipeline.policies._redirect_async [] []
azure.core.credentials_async [] []
azure.mgmt.dynatrace.models [] []
azure.core.utils._messaging_shared [] []
azure.core.pipeline.transport [] []
azure.mgmt.dynatrace._configuration [] []
azure.mgmt.dynatrace.operations._tag_rules_operations [] []
azure.mgmt.core.polling [] []
abc [] []
platform [] []
re [] []
cchardet [] []
os [] []
azure.core.pipeline [] []
azure.core.tracing.opentelemetry [] []
charset_normalizer [] []
azure.core.pipeline.policies._retry [] []
datetime [] []
azure.core.pipeline.policies [] []
threading [] []
logging [] []
azure.mgmt.dynatrace.aio.operations._tag_rules_operations [] []
typing [] []
azure.mgmt.core.policies._authentication_async [] []
azure.common._version [] []
azure.mgmt.core._version [] []
azure.core.rest._requests_asyncio [] []
azure.core.pipeline.policies._redirect [] []
azure.core.exceptions ['fuzz_mgmt_serialization'] []
azure.core.polling.base_polling [] []
azure.mgmt.dynatrace.aio.operations._monitors_operations [] []
azure.mgmt.dynatrace.operations._single_sign_on_operations [] []
azure.mgmt.dynatrace._dynatrace_observability_mgmt_client [] []
itertools [] []
azure.mgmt.dynatrace.operations._monitors_operations [] []
azure.core.pipeline._tools [] []
time [] []
azure.mgmt.dynatrace.aio._configuration [] []

Directories in report

Directory