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: /src/multipart_parser_fuzzer.cpp

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 project has no code coverage. Will not display blockers as blockers depend on code coverage.

Fuzzer: /src/content_type_fuzzer.cpp

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 project has no code coverage. Will not display blockers as blockers depend on code coverage.

Fuzzer: /src/filter_expr_fuzzer.cpp

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 project has no code coverage. Will not display blockers as blockers depend on code coverage.

Fuzzer: /src/json_html_serializer_fuzzer.cpp

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 project has no code coverage. Will not display blockers as blockers depend on code coverage.

Fuzzer: /src/json_parser_fuzzer.cpp

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 project has no code coverage. Will not display blockers as blockers depend on code coverage.

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
redfish::handleMetricReportDefinitionsPost /src/bmcweb/redfish-core/lib/metric_report_definition.hpp 3 ['App', 'crow::Request', 'std::shared_ptr '] 12 0 12 4 4 319 0 537 530
crow::findActionOnInterface /src/bmcweb/features/openbmc_rest/openbmc_dbus_rest.hpp 2 ['std::shared_ptr ', 'std::string'] 15 0 64 12 24 105 0 193 189
redfish::requestEthernetInterfacesRoutes /src/bmcweb/redfish-core/lib/ethernet.hpp 1 ['App'] 9 0 145 32 32 248 0 318 186
redfish::processComputerSystemGet /src/bmcweb/redfish-core/lib/systems.hpp 3 ['std::shared_ptr ', 'std::string', 'uint64_t'] 8 0 70 8 7 138 0 179 165
redfish::handleAccountServicePatch /src/bmcweb/redfish-core/lib/account_service.hpp 3 ['App', 'crow::Request', 'std::shared_ptr '] 9 0 38 12 11 198 0 253 122
crow::Connection::afterReadHeaders /src/bmcweb/http/http_connection.hpp 2 ['boost::system::error_code', 'std::size_t'] 9 0 36 8 7 157 0 141 120
redfish::handleMemoryGet /src/bmcweb/redfish-core/lib/memory.hpp 5 ['App', 'crow::Request', 'std::shared_ptr ', 'std::string', 'std::string'] 10 0 13 4 3 119 0 184 109

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

Functions statically reachable by fuzzers
13.0%
318 / 2444
Cyclomatic complexity statically reachable by fuzzers
23.0%
1562 / 6859

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

Fuzz driver synthesis

New fuzzers

The below fuzzers are templates and suggestions for how to target the set of optimal functions above

metric_report_definition.hpp

Target file: /src/bmcweb/redfish-core/lib/metric_report_definition.hpp
Target functions: redfish::handleMetricReportDefinitionsPost
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target redfish::handleMetricReportDefinitionsPost */
  UNKNOWN_TYPE unknown_0;
  UNKNOWN_TYPE unknown_1;
  UNKNOWN_TYPE unknown_2;
  redfish::handleMetricReportDefinitionsPost(unknown_0, unknown_1, unknown_2);

  af_safe_gb_cleanup();
}

openbmc_dbus_rest.hpp

Target file: /src/bmcweb/features/openbmc_rest/openbmc_dbus_rest.hpp
Target functions: crow::findActionOnInterface
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target crow::findActionOnInterface */
  UNKNOWN_TYPE unknown_3;
  UNKNOWN_TYPE unknown_4;
  crow::findActionOnInterface(unknown_3, unknown_4);

  af_safe_gb_cleanup();
}

ethernet.hpp

Target file: /src/bmcweb/redfish-core/lib/ethernet.hpp
Target functions: redfish::requestEthernetInterfacesRoutes
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target redfish::requestEthernetInterfacesRoutes */
  UNKNOWN_TYPE unknown_5;
  redfish::requestEthernetInterfacesRoutes(unknown_5);

  af_safe_gb_cleanup();
}

systems.hpp

Target file: /src/bmcweb/redfish-core/lib/systems.hpp
Target functions: redfish::processComputerSystemGet
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target redfish::processComputerSystemGet */
  UNKNOWN_TYPE unknown_6;
  UNKNOWN_TYPE unknown_7;
  UNKNOWN_TYPE unknown_8;
  redfish::processComputerSystemGet(unknown_6, unknown_7, unknown_8);

  af_safe_gb_cleanup();
}

account_service.hpp

Target file: /src/bmcweb/redfish-core/lib/account_service.hpp
Target functions: redfish::handleAccountServicePatch
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target redfish::handleAccountServicePatch */
  UNKNOWN_TYPE unknown_9;
  UNKNOWN_TYPE unknown_10;
  UNKNOWN_TYPE unknown_11;
  redfish::handleAccountServicePatch(unknown_9, unknown_10, unknown_11);

  af_safe_gb_cleanup();
}

http_connection.hpp

Target file: /src/bmcweb/http/http_connection.hpp
Target functions: crow::Connection::afterReadHeaders
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target crow::Connection::afterReadHeaders */
  UNKNOWN_TYPE unknown_12;
  UNKNOWN_TYPE unknown_13;
  crow::Connection::afterReadHeaders(unknown_12, unknown_13);

  af_safe_gb_cleanup();
}

memory.hpp

Target file: /src/bmcweb/redfish-core/lib/memory.hpp
Target functions: redfish::handleMemoryGet
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target redfish::handleMemoryGet */
  UNKNOWN_TYPE unknown_14;
  UNKNOWN_TYPE unknown_15;
  UNKNOWN_TYPE unknown_16;
  UNKNOWN_TYPE unknown_17;
  UNKNOWN_TYPE unknown_18;
  redfish::handleMemoryGet(unknown_14, unknown_15, unknown_16, unknown_17, unknown_18);

  af_safe_gb_cleanup();
}

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
/src/bmcweb/redfish-core/lib/network_protocol.hpp [] []
/src/bmcweb/include/watchdog.hpp [] []
/src/bmcweb/redfish-core/lib/metric_report.hpp [] []
/src/bmcweb/include/io_context_singleton.hpp [] []
/src/bmcweb/redfish-core/include/registries/openbmc_message_registry.hpp [] []
/src/bmcweb/test/redfish-core/include/submit_test_event_test.cpp [] []
/src/bmcweb/src/dbus_utility.cpp [] []
/src/bmcweb/redfish-core/lib/service_root.hpp [] []
/src/bmcweb/redfish-core/include/utils/eventlog_utils.hpp [] []
/src/bmcweb/include/dbus_privileges.hpp [] []
/src/bmcweb/redfish-core/lib/storage.hpp [] []
/src/filter_expr_fuzzer.cpp ['/src/filter_expr_fuzzer.cpp'] []
/src/bmcweb/redfish-core/include/privileges.hpp [] []
/src/bmcweb/src/webserver_main.cpp [] []
/src/bmcweb/redfish-core/include/gzfile.hpp [] []
/src/bmcweb/http/http_response.hpp ['/src/content_type_fuzzer.cpp', '/src/json_parser_fuzzer.cpp'] []
/src/bmcweb/redfish-core/lib/switch_port.hpp [] []
/src/bmcweb/http/routing/ruleparametertraits.hpp [] []
/src/bmcweb/redfish-core/include/telemetry_readings.hpp [] []
/src/bmcweb/features/openbmc_rest/dbus_monitor.hpp [] []
/src/bmcweb/redfish-core/lib/account_service.hpp [] []
/src/bmcweb/test/include/multipart_test.cpp [] []
/src/bmcweb/redfish-core/include/utils/asset_utils.hpp [] []
/src/bmcweb/redfish-core/lib/thermal_subsystem.hpp [] []
/src/bmcweb/redfish-core/lib/bios.hpp [] []
/src/bmcweb/http/routing.hpp [] []
/src/bmcweb/redfish-core/lib/systems_logservices_dbus_eventlog.hpp [] []
/src/bmcweb/redfish-core/lib/log_services.hpp [] []
/src/bmcweb/http/http_body.hpp [] []
/src/bmcweb/http/websocket_impl.hpp [] []
/src/bmcweb/redfish-core/include/utils/ip_utils.hpp [] []
/src/bmcweb/redfish-core/include/registries/power_message_registry.hpp [] []
/src/bmcweb/include/async_resp.hpp [] []
/src/bmcweb/redfish-core/src/task_messages.cpp [] []
/src/bmcweb/redfish-core/lib/aggregation_service.hpp [] []
/src/bmcweb/features/serial/obmc_console.hpp [] []
/src/bmcweb/redfish-core/include/registries/log_service_message_registry.hpp [] []
/src/bmcweb/test/redfish-core/lib/thermal_subsystem_test.cpp [] []
/src/bmcweb/include/http_utility.hpp ['/src/content_type_fuzzer.cpp', '/src/json_parser_fuzzer.cpp'] []
/src/bmcweb/include/str_utility.hpp [] []
/src/bmcweb/redfish-core/include/utils/hex_utils.hpp [] []
/src/bmcweb/include/pam_authenticate.hpp [] []
/src/bmcweb/test/redfish-core/include/utils/time_utils_test.cpp [] []
/src/bmcweb/include/credential_pipe.hpp [] []
/src/bmcweb/http/routing/websocketrule.cpp [] []
/src/bmcweb/redfish-core/lib/telemetry_service.hpp [] []
/src/bmcweb/http/parsing.hpp ['/src/json_html_serializer_fuzzer.cpp', '/src/json_parser_fuzzer.cpp'] []
/src/bmcweb/redfish-core/src/filesystem_log_watcher.cpp [] []
/src/bmcweb/http/routing/taggedrule.hpp [] []
/src/bmcweb/redfish-core/include/utils/systemd_utils.hpp [] []
/src/bmcweb/redfish-core/include/utils/fan_utils.hpp [] []
/src/bmcweb/redfish-core/include/utils/redfish_aggregator_utils.hpp [] []
/src/bmcweb/http/test_stream.hpp [] []
/src/bmcweb/test/http/http_response_test.cpp [] []
/src/bmcweb/src/webserver_run.cpp [] []
/src/bmcweb/test/redfish-core/include/utils/ip_utils_test.cpp [] []
/src/bmcweb/redfish-core/lib/trigger.hpp [] []
/src/bmcweb/redfish-core/lib/manager_logservices_journal.hpp [] []
/src/bmcweb/http/routing/dynamicrule.hpp [] []
/src/bmcweb/test/include/json_html_serializer.cpp [] []
/src/bmcweb/include/multipart_parser.hpp ['/src/multipart_parser_fuzzer.cpp'] []
/src/bmcweb/http/http_client.hpp [] []
/src/bmcweb/features/ibm/ibm_management_console_rest.hpp [] []
/src/bmcweb/features/openbmc_rest/openbmc_dbus_rest_test.cpp [] []
/src/bmcweb/features/openbmc_rest/openbmc_dbus_rest.hpp [] []
/src/bmcweb/redfish-core/lib/environment_metrics.hpp [] []
/src/bmcweb/redfish-core/lib/pcie_slots.hpp [] []
/src/bmcweb/redfish-core/lib/openbmc/openbmc_managers.hpp [] []
/src/bmcweb/test/redfish-core/include/utils/error_code_test.cpp [] []
/src/bmcweb/features/kvm/kvm_websocket.hpp [] []
/src/bmcweb/redfish-core/src/filter_expr_printer.cpp ['/src/filter_expr_fuzzer.cpp'] []
/src/bmcweb/redfish-core/lib/memory.hpp [] []
/src/bmcweb/redfish-core/include/registries/heartbeat_event_message_registry.hpp [] []
/src/bmcweb/http/mutual_tls.cpp [] []
/src/bmcweb/redfish-core/lib/storage_controller.hpp [] []
/src/bmcweb/features/openbmc_rest/image_upload.hpp [] []
/src/bmcweb/redfish-core/lib/processor.hpp [] []
/src/bmcweb/test/http/mutual_tls.cpp [] []
/src/bmcweb/test/redfish-core/lib/service_root_test.cpp [] []
/src/bmcweb/test/redfish-core/lib/manager_diagnostic_data_test.cpp [] []
/src/bmcweb/redfish-core/include/snmp_trap_event_clients.hpp [] []
/src/bmcweb/redfish-core/lib/power.hpp [] []
/src/bmcweb/http/http_request.hpp ['/src/multipart_parser_fuzzer.cpp'] []
/src/bmcweb/include/event_service_store.hpp [] []
/src/bmcweb/redfish-core/include/utils/sensor_utils.hpp [] []
/src/bmcweb/test/redfish-core/include/redfish_aggregator_test.cpp [] []
/src/bmcweb/redfish-core/src/resource_messages.cpp [] []
/src/bmcweb/features/ibm/configfile_test.cpp [] []
/src/bmcweb/redfish-core/lib/fabric.hpp [] []
/src/bmcweb/redfish-core/include/event_matches_filter.hpp [] []
/src/bmcweb/redfish-core/include/utils/stl_utils.hpp [] []
/src/multipart_parser_fuzzer.cpp ['/src/multipart_parser_fuzzer.cpp'] []
/src/bmcweb/test/redfish-core/include/event_log_test.cpp [] []
/src/bmcweb/test/http/parsing_test.cpp [] []
/src/bmcweb/redfish-core/lib/manager_diagnostic_data.hpp [] []
/src/bmcweb/http/nghttp2_adapters.hpp [] []
/src/bmcweb/test/http/server_sent_event_test.cpp [] []
/src/bmcweb/include/hostname_monitor.hpp [] []
/src/bmcweb/redfish-core/src/error_messages.cpp [] []
/src/bmcweb/redfish-core/include/registries/fabric_message_registry.hpp [] []
/src/bmcweb/http/http2_connection.hpp [] []
/src/bmcweb/include/forward_unauthorized.hpp [] []
/src/bmcweb/test/redfish-core/include/filter_expr_executor_test.cpp [] []
/src/bmcweb/redfish-core/include/subscription.hpp [] []
/src/bmcweb/test/redfish-core/include/registries_test.cpp [] []
/src/bmcweb/http/server_sent_event_impl.hpp [] []
/src/bmcweb/http/complete_response_fields.hpp [] []
/src/bmcweb/redfish-core/include/registries/base_message_registry.hpp [] []
/src/bmcweb/redfish-core/include/utils/dbus_event_log_entry.hpp [] []
/src/bmcweb/redfish-core/lib/power_subsystem.hpp [] []
/src/bmcweb/redfish-core/lib/systems_logservices_hostlogger.hpp [] []
/src/bmcweb/include/cookies.hpp [] []
/src/bmcweb/features/webui_login/login_routes.hpp [] []
/src/bmcweb/redfish-core/include/utils/assembly_utils.hpp [] []
/src/bmcweb/include/human_sort.hpp [] []
/src/bmcweb/test/redfish-core/include/utils/query_param_test.cpp [] []
/src/bmcweb/test/include/http_utility_test.cpp [] []
/src/bmcweb/redfish-core/include/utils/sw_utils.hpp [] []
/src/bmcweb/redfish-core/include/registries/resource_event_message_registry.hpp [] []
/src/bmcweb/http/zstd_decompressor.cpp [] []
/src/bmcweb/redfish-core/include/registries/composition_message_registry.hpp [] []
/src/bmcweb/include/sessions.hpp [] []
/src/bmcweb/redfish-core/lib/systems.hpp [] []
/src/bmcweb/redfish-core/lib/thermal.hpp [] []
/src/bmcweb/redfish-core/lib/task.hpp [] []
/src/bmcweb/redfish-core/include/sub_request.hpp [] []
/src/bmcweb/redfish-core/include/sub_route_trie.hpp ['/src/content_type_fuzzer.cpp'] []
/src/bmcweb/http/websocket.hpp [] []
/src/bmcweb/redfish-core/include/utils/chassis_utils.hpp [] []
/src/bmcweb/redfish-core/lib/fabric_ports.hpp [] []
/src/bmcweb/test/http/http_connection_test.cpp [] []
/src/bmcweb/test/redfish-core/include/filter_expr_parser_test.cpp [] []
/src/bmcweb/redfish-core/src/redfish.cpp [] []
/src/bmcweb/redfish-core/lib/sensors.hpp [] []
/src/bmcweb/redfish-core/lib/pcie.hpp [] []
/src/bmcweb/include/persistent_data.hpp [] []
/src/bmcweb/redfish-core/lib/eventservice_sse.hpp [] []
/src/bmcweb/redfish-core/include/utils/error_code.hpp [] []
/src/bmcweb/redfish-core/lib/message_registries.hpp [] []
/src/bmcweb/http/server_sent_event.hpp [] []
/src/bmcweb/include/identity.hpp [] []
/src/bmcweb/http/routing/sserule.cpp [] []
/src/bmcweb/http/routing/trie.hpp [] []
/src/bmcweb/redfish-core/include/utils/json_utils.hpp [] []
/src/bmcweb/redfish-core/lib/metric_report_definition.hpp [] []
/src/bmcweb/test/http/http2_connection_test.cpp [] []
/src/bmcweb/redfish-core/lib/redfish_sessions.hpp [] []
/src/bmcweb/redfish-core/src/utils/dbus_utils.cpp [] []
/src/bmcweb/features/ibm/utils.hpp [] []
/src/bmcweb/test/redfish-core/lib/chassis_test.cpp [] []
/src/bmcweb/redfish-core/lib/thermal_metrics.hpp [] []
/src/bmcweb/redfish-core/lib/redfish_util.hpp [] []
/src/bmcweb/redfish-core/lib/led.hpp [] []
/src/bmcweb/redfish-core/lib/systems_logservices_journal_eventlog.hpp [] []
/src/bmcweb/http/routing/baserule.hpp [] []
/src/bmcweb/redfish-core/include/event_service_manager.hpp [] []
/src/bmcweb/redfish-core/include/registries/environmental_message_registry.hpp [] []
/src/bmcweb/include/async_resolve.hpp [] []
/src/bmcweb/src/ossl_random.cpp [] []
/src/bmcweb/src/json_html_serializer.cpp ['/src/json_html_serializer_fuzzer.cpp'] []
/src/bmcweb/redfish-core/src/update_messages.cpp [] []
/src/bmcweb/redfish-core/lib/virtual_media.hpp [] []
/src/bmcweb/redfish-core/lib/assembly.hpp [] []
/src/bmcweb/redfish-core/include/utils/etag_utils.hpp [] []
/src/bmcweb/http/logging.hpp ['/src/filter_expr_fuzzer.cpp', '/src/json_html_serializer_fuzzer.cpp', '/src/json_parser_fuzzer.cpp'] []
/src/bmcweb/test/redfish-core/include/utils/json_utils_test.cpp [] []
/src/bmcweb/test/include/ssl_key_handler_test.cpp [] []
/src/bmcweb/features/google/google_service_root_test.cpp [] []
/src/bmcweb/redfish-core/include/utils/telemetry_utils.hpp [] []
/src/bmcweb/redfish-core/lib/odata.hpp [] []
/src/bmcweb/redfish-core/src/error_message_utils.cpp [] []
/src/bmcweb/include/ossl_random.hpp ['/src/content_type_fuzzer.cpp', '/src/json_parser_fuzzer.cpp'] []
/src/bmcweb/redfish-core/include/utils/manager_utils.hpp [] []
/src/bmcweb/redfish-core/lib/manager_logservices_dbus_eventlog.hpp [] []
/src/bmcweb/redfish-core/lib/redfish_v1.hpp [] []
/src/bmcweb/include/security_headers.hpp [] []
/src/bmcweb/redfish-core/src/registries.cpp [] []
/src/bmcweb/redfish-core/include/utils/log_services_utils.hpp [] []
/src/bmcweb/http/http_connection.hpp [] []
/src/bmcweb/redfish-core/include/utils/systems_utils.hpp [] []
/src/bmcweb/include/webassets.hpp [] []
/src/bmcweb/test/http/zstd_decompressor_test.cpp [] []
/src/bmcweb/test/redfish-core/include/utils/stl_utils_test.cpp [] []
/src/bmcweb/redfish-core/include/registries/platform_message_registry.hpp [] []
/src/bmcweb/redfish-core/include/registries/telemetry_message_registry.hpp [] []
/src/bmcweb/redfish-core/include/query.hpp [] []
/src/bmcweb/include/authentication.hpp [] []
/src/bmcweb/redfish-core/src/filter_expr_executor.cpp [] []
/src/bmcweb/http/routing/sserule.hpp [] []
/src/bmcweb/redfish-core/lib/hypervisor_system.hpp [] []
/src/bmcweb/redfish-core/include/registries/job_event_message_registry.hpp [] []
/src/json_html_serializer_fuzzer.cpp ['/src/json_html_serializer_fuzzer.cpp'] []
/src/bmcweb/redfish-core/src/utils/time_utils.cpp [] []
/src/bmcweb/redfish-core/lib/manager_logservices_journal_eventlog.hpp [] []
/src/bmcweb/redfish-core/lib/fan.hpp [] []
/src/bmcweb/test/redfish-core/include/utils/sensor_utils_test.cpp [] []
/src/bmcweb/features/google/google_service_root.hpp [] []
/src/bmcweb/test/http/utility_test.cpp [] []
/src/bmcweb/redfish-core/include/redfishoemrule.hpp [] []
/src/bmcweb/redfish-core/src/heartbeat_messages.cpp [] []
/src/bmcweb/redfish-core/include/registries/task_event_message_registry.hpp [] []
/src/bmcweb/http/zstd_compressor.cpp [] []
/src/bmcweb/redfish-core/lib/cable.hpp [] []
/src/bmcweb/src/ssl_key_handler.cpp [] []
/src/bmcweb/redfish-core/include/registries.hpp [] []
/src/bmcweb/redfish-core/lib/power_supply.hpp [] []
/src/bmcweb/redfish-core/include/utils/collection.hpp [] []
/src/bmcweb/redfish-core/lib/roles.hpp [] []
/src/bmcweb/test/include/credential_pipe_test.cpp [] []
/src/bmcweb/redfish-core/lib/update_service.hpp [] []
/src/bmcweb/redfish-core/lib/managers.hpp [] []
/src/bmcweb/redfish-core/lib/fabric_adapters.hpp [] []
/src/bmcweb/redfish-core/include/utils/journal_utils.hpp [] []
/src/bmcweb/test/http/crow_getroutes_test.cpp [] []
/src/bmcweb/redfish-core/include/utils/dbus_utils.hpp [] []
/src/bmcweb/redfish-core/include/registries/network_device_message_registry.hpp [] []
/src/bmcweb/redfish-core/src/event_log.cpp [] []
/src/bmcweb/redfish-core/include/utils/query_param.hpp ['/src/content_type_fuzzer.cpp', '/src/json_html_serializer_fuzzer.cpp', '/src/json_parser_fuzzer.cpp'] []
/src/bmcweb/include/duplicatable_file_handle.hpp [] []
/src/bmcweb/redfish-core/include/registries/storage_device_message_registry.hpp [] []
/src/bmcweb/test/redfish-core/include/utils/dbus_utils.cpp [] []
/src/bmcweb/src/webserver_cli.cpp [] []
/src/bmcweb/redfish-core/lib/chassis.hpp [] []
/src/bmcweb/test/redfish-core/lib/power_subsystem_test.cpp [] []
/src/bmcweb/redfish-core/include/utils/pcie_util.hpp [] []
/src/bmcweb/redfish-core/include/registries/update_message_registry.hpp [] []
/src/json_parser_fuzzer.cpp ['/src/json_parser_fuzzer.cpp'] []
/src/bmcweb/redfish-core/include/registries/sensor_event_message_registry.hpp [] []
/src/bmcweb/http/app.hpp [] []
/src/bmcweb/redfish-core/lib/processor_operating_config.hpp [] []
/src/bmcweb/redfish-core/include/registries/license_message_registry.hpp [] []
/src/bmcweb/include/user_monitor.hpp [] []
/src/bmcweb/src/boost_asio.cpp [] []
/src/bmcweb/redfish-core/lib/event_service.hpp [] []
/src/bmcweb/redfish-core/src/dbus_log_watcher.cpp [] []
/src/bmcweb/include/dbus_utility.hpp [] []
/src/bmcweb/redfish-core/lib/storage_chassis.hpp [] []
/src/bmcweb/http/zstd_compressor.hpp [] []
/src/bmcweb/test/include/webassets_test.cpp [] []
/src/bmcweb/redfish-core/lib/metadata.hpp [] []
/src/bmcweb/http/verb.hpp [] []
/src/bmcweb/redfish-core/include/redfish_oem_routing.hpp [] []
/src/bmcweb/features/virtual_media/vm_websocket.hpp ['/src/json_html_serializer_fuzzer.cpp'] []
/src/bmcweb/redfish-core/lib/systems_logservices_postcodes.hpp [] []
/src/bmcweb/redfish-core/src/utils/json_utils.cpp [] []
/src/bmcweb/http/zstd_decompressor.hpp [] []
/src/bmcweb/redfish-core/include/utils/extern/date.h ['/src/content_type_fuzzer.cpp', '/src/json_parser_fuzzer.cpp'] []
/src/bmcweb/http/http_server.hpp [] []
/src/content_type_fuzzer.cpp ['/src/content_type_fuzzer.cpp'] []
/src/bmcweb/redfish-core/include/redfish.hpp [] []
/src/bmcweb/redfish-core/lib/certificate_service.hpp [] []
/src/bmcweb/http/routing/websocketrule.hpp [] []
/src/bmcweb/redfish-core/include/registries/ethernet_fabric_message_registry.hpp [] []
/src/bmcweb/redfish-core/include/redfish_aggregator.hpp [] []
/src/bmcweb/redfish-core/lib/ethernet.hpp [] []
/src/bmcweb/redfish-core/src/subscription.cpp [] []
/src/bmcweb/http/utility.hpp [] []

Directories in report

Directory
/src/bmcweb/redfish-core/lib/openbmc/
/src/bmcweb/redfish-core/include/
/src/bmcweb/redfish-core/lib/
/src/bmcweb/redfish-core/src/
/src/bmcweb/features/google/
/src/
/src/bmcweb/features/virtual_media/
/src/bmcweb/test/include/
/src/bmcweb/redfish-core/include/utils/extern/
/src/bmcweb/features/webui_login/
/src/bmcweb/features/openbmc_rest/
/src/bmcweb/test/http/
/src/bmcweb/redfish-core/src/utils/
/src/bmcweb/test/redfish-core/lib/
/src/bmcweb/redfish-core/include/utils/
/src/bmcweb/http/
/src/bmcweb/features/serial/
/src/bmcweb/include/
/src/bmcweb/features/ibm/
/src/bmcweb/src/
/src/bmcweb/test/redfish-core/include/utils/
/src/bmcweb/http/routing/
/src/bmcweb/test/redfish-core/include/
/src/bmcweb/redfish-core/include/registries/
/src/bmcweb/features/kvm/