public class TaintDemoClass {
private String input;
public TaintDemoClass(){
input = getInput();
sensitiveMethod(input);
}
private String getInput(){
// get input from user...
return aString;
}
private String sanitizeInput(String s) {
// clean input...
return cleanString;
}
private void sensitiveMethod(String s) {
// use input...
}
}
|
|