Skip to content

Commit

Permalink
Fix #632
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Aug 5, 2021
1 parent 4aed98b commit 6177ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cairis/sql/procs.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12955,7 +12955,7 @@ begin
declare vulTagCursor cursor for select t.name from vulnerability_tag vt, tag t where vt.vulnerability_id = vulId and vt.tag_id = t.id;
declare threatTagCursor cursor for select t.name from threat_tag tt, tag t where tt.threat_id = threatId and tt.tag_id = t.id;
declare riskTagCursor cursor for select t.name from risk_tag rt, tag t where rt.risk_id = riskId and rt.tag_id = t.id;
declare roleCursor cursor for select r.name,rt.name,r.short_code,r.description from role r, role_type rt where r.role_type_id = rt.id;
declare roleCursor cursor for select r.name,rt.name,r.short_code,xmlEscaped(r.description) from role r, role_type rt where r.role_type_id = rt.id;
declare assetEnvCursor cursor for select ea.environment_id,e.name from environment_asset ea, environment e where ea.asset_id = assetId and ea.environment_id = e.id;
declare vulEnvCursor cursor for select ev.environment_id,e.name from environment_vulnerability ev, environment e where ev.vulnerability_id = vulId and ev.environment_id = e.id;
declare attackerEnvCursor cursor for select ea.environment_id,e.name from environment_attacker ea, environment e where ea.attacker_id = attackerId and ea.environment_id = e.id;
Expand Down

0 comments on commit 6177ddd

Please sign in to comment.