You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Restrict findings to these categories. Omit to scan every category.
[optional]
direct_only
bool
Only report functions whose own name matches a known crypto API; skips the calls-into-crypto pass, avoiding a bulk call-graph fetch.
[optional]
libraries
List[str]
Restrict findings to these libraries. Omit to scan every library.
[optional]
Example
fromrevengai.models.trigger_crypto_scan_input_bodyimportTriggerCryptoScanInputBody# TODO update the JSON string belowjson="{}"# create an instance of TriggerCryptoScanInputBody from a JSON stringtrigger_crypto_scan_input_body_instance=TriggerCryptoScanInputBody.from_json(json)
# print the JSON string representation of the objectprint(TriggerCryptoScanInputBody.to_json())
# convert the object into a dicttrigger_crypto_scan_input_body_dict=trigger_crypto_scan_input_body_instance.to_dict()
# create an instance of TriggerCryptoScanInputBody from a dicttrigger_crypto_scan_input_body_from_dict=TriggerCryptoScanInputBody.from_dict(trigger_crypto_scan_input_body_dict)