-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from cflint/writeDump
Rule to check for writeDump in cfset tags and script blocks
- Loading branch information
Showing
4 changed files
with
117 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
src/main/java/com/cflint/plugins/core/WriteDumpChecker.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
package com.cflint.plugins.core; | ||
|
||
import ro.fortsoft.pf4j.Extension; | ||
import net.htmlparser.jericho.Element; | ||
|
||
import cfml.parsing.cfscript.CFExpression; | ||
import cfml.parsing.cfscript.script.CFExpressionStatement; | ||
import cfml.parsing.cfscript.script.CFScriptStatement; | ||
|
||
import com.cflint.BugInfo; | ||
import com.cflint.BugList; | ||
import com.cflint.plugins.CFLintScannerAdapter; | ||
import com.cflint.plugins.Context; | ||
|
||
@Extension | ||
public class WriteDumpChecker extends CFLintScannerAdapter { | ||
final String severity = "INFO"; | ||
|
||
@Override | ||
public void expression(final CFScriptStatement expression, final Context context, final BugList bugs) { | ||
if (expression instanceof CFExpressionStatement) { | ||
String code = ((CFExpressionStatement) expression).getExpression().Decompile(0); | ||
int lineNo = ((CFExpressionStatement) expression).getLine() + context.startLine() - 1; | ||
|
||
if (code.toLowerCase().contains("writedump(")) { | ||
writeDump(lineNo, context, bugs); | ||
} | ||
} | ||
} | ||
|
||
@Override | ||
public void element(final Element element, final Context context, final BugList bugs) { | ||
if (element.getName().equals("cfset")) { | ||
String content = element.getStartTag().getTagContent().toString(); | ||
int lineNo = element.getSource().getRow(element.getBegin()); | ||
|
||
if (content.toLowerCase().contains("writedump(")) { | ||
writeDump(lineNo, context, bugs); | ||
} | ||
} | ||
} | ||
|
||
protected void writeDump(final int lineNo, final Context context, final BugList bugs) { | ||
bugs.add(new BugInfo.BugInfoBuilder().setLine(lineNo).setMessageCode("AVOID_USING_WRITEDUMP") | ||
.setSeverity(severity).setFilename(context.getFilename()) | ||
.setMessage("WriteDump statement at line " + lineNo + ". Avoid using writeDump in production code.") | ||
.build()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package com.cflint; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
import java.io.IOException; | ||
import java.util.List; | ||
|
||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
import cfml.parsing.reporting.ParseException; | ||
|
||
import com.cflint.config.CFLintPluginInfo.PluginInfoRule; | ||
import com.cflint.config.CFLintPluginInfo.PluginInfoRule.PluginMessage; | ||
import com.cflint.config.ConfigRuntime; | ||
import com.cflint.plugins.core.WriteDumpChecker; | ||
|
||
public class TestWriteDumpChecker { | ||
|
||
private CFLint cfBugs; | ||
|
||
@Before | ||
public void setUp() { | ||
final ConfigRuntime conf = new ConfigRuntime(); | ||
final PluginInfoRule pluginRule = new PluginInfoRule(); | ||
pluginRule.setName("WriteDumpChecker"); | ||
conf.getRules().add(pluginRule); | ||
final PluginMessage pluginMessage = new PluginMessage("AVOID_USING_WRITEDUMP"); | ||
pluginMessage.setSeverity("INFO"); | ||
cfBugs = new CFLint(conf, new WriteDumpChecker()); | ||
} | ||
|
||
@Test | ||
public void testWriteDumpinScript() throws ParseException, IOException { | ||
final String scriptSrc = "<cfscript>\r\n" | ||
+ "var a = 23;\r\n" | ||
+ "writeDump(a);\r\n" | ||
+ "</cfscript>"; | ||
|
||
cfBugs.process(scriptSrc, "test"); | ||
final List<BugInfo> result = cfBugs.getBugs().getBugList().values().iterator().next(); | ||
assertEquals(1, result.size()); | ||
assertEquals("AVOID_USING_WRITEDUMP", result.get(0).getMessageCode()); | ||
assertEquals(3, result.get(0).getLine()); | ||
} | ||
|
||
@Test | ||
public void testWriteDumpInTag() throws ParseException, IOException { | ||
final String tagSrc = "<cfset a = 23>\r\n" | ||
+ "<cfset writeDump(a)>"; | ||
|
||
cfBugs.process(tagSrc, "test"); | ||
final List<BugInfo> result = cfBugs.getBugs().getBugList().values().iterator().next(); | ||
assertEquals(1, result.size()); | ||
assertEquals("AVOID_USING_WRITEDUMP", result.get(0).getMessageCode()); | ||
assertEquals(2, result.get(0).getLine()); | ||
} | ||
|
||
} |