Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added check for supported CF version #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion cmdline-security-analyzer.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@
// convert JSON to ColdFusion variables
scanResult = deserializeJSON(jsonString, true);

if (structKeyExists(scanresult,"errormessage") && findnocase("Security Code Analyzer is not available in this edition of the ColdFusion Server",scanresult.errormessage)){
throw(type="wrongVersion", message="ERROR: wrong CF edition", detail="#scanresult.errormessage#", errorCode=-2);
}

// populate id needed for subsequent commands
id = scanResult["id"];

Expand Down Expand Up @@ -311,4 +315,4 @@

cli.exit(0);

</cfscript>
</cfscript>