fixinator
fixinator copied to clipboard
ColdFusion / CFML Code Security Scanner
I set up the GitHub Fixinator action using the examples specified in the documentation. https://github.com/foundeo/fixinator/wiki/Running-Fixinator-on-Github-Actions Those examples use actions/checkout@v2, but now I am getting warnings in the Fixinator scans that...
Fixinator 5.0.1 has found and fixed MANY issues in a legacy app but I had a script where it caught the last variable in the query but not the first...
``` Apps=QueryNew("AppName","varchar"); for (CurrApp in "AT&T,Verizon,T-Mobile,Sprint,Cingular,Jasper Wireless") { QueryAddRow(Apps); QuerySetCell(Apps,"AppName",CurrApp); } SELECT AppName FROM Apps WHERE AppName IN (#PreserveSingleQuotes(AppList)#) ``` The above code does a standard IN search that you...
I was checking out the new goals feature of fixinator on some old code I've been assigned to clean up using the following command: box fixinator path=*mypath* goals=compatibility engines=adobe@2023 Among...
When scanning code, this code works fine: ``` ``` But this would report an issue **Possible Unsafe File Upload [file-upload]** ``` ``` The difference is the .ppt in the allowedExtensions....