Skip to content

Commit

Permalink
Merge pull request #73 from exploide/cve-substitution-fix
Browse files Browse the repository at this point in the history
Fixed parameter substitution in cve scripts
  • Loading branch information
diego-treitos authored Sep 30, 2022
2 parents c3ea256 + 173f321 commit aec783d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cve/cve-2021-3560.sh
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ lse_cve_test() { #(
exit 1
fi
fi
$vulnerable && echo "Vulnerable! polkit version: ${package_version:-pkexec_version}"
$vulnerable && echo "Vulnerable! polkit version: ${package_version:-$pkexec_version}"
} #)

# Uncomment this line for testing the lse_cve_test function
Expand Down
2 changes: 1 addition & 1 deletion cve/cve-2021-4034.sh
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ lse_cve_test() { #(
exit 1
fi
fi
$vulnerable && echo "Vulnerable! polkit version: ${package_version:-pkexec_version}"
$vulnerable && echo "Vulnerable! polkit version: ${package_version:-$pkexec_version}"
} #)

# Uncomment this line for testing the lse_cve_test function
Expand Down

0 comments on commit aec783d

Please sign in to comment.