PreferencesUtil.java

1
package com.jsql.util;
2
3
import com.jsql.model.InjectionModel;
4
import org.apache.commons.lang3.SystemUtils;
5
6
import java.util.prefs.Preferences;
7
8
/**
9
 * Utility class to manage JVM preferences previously saved into the system.
10
 * Only general settings are processed by this utility, other specific preferences
11
 * like those for proxy are defined from specific utility classes.
12
 */
13
public class PreferencesUtil {
14
    
15
    // File path saved in preference.
16
    private String pathFile;
17
18
    private boolean isCheckingUpdate = true;
19
20
    // True if bugs are sent to GitHub.
21
    private boolean isReportingBugs = true;
22
    
23
    private boolean is4K = false;
24
    
25
    private boolean isFollowingRedirection = false;
26
    private boolean isHttp2Disabled = false;
27
    
28
    private boolean isNotInjectingMetadata = false;
29
    private boolean isNotSearchingCharInsertion = false;
30
    private boolean isNotShowingVulnReport = false;
31
32
    private boolean isCheckingAllParam = false;
33
    private boolean isCheckingAllURLParam = false;
34
    private boolean isCheckingAllRequestParam = false;
35
    private boolean isCheckingAllHeaderParam = false;
36
    private boolean isCheckingAllBase64Param = false;
37
    private boolean isCheckingAllJsonParam = false;
38
    private boolean isCheckingAllCookieParam = false;
39
    private boolean isCheckingAllSoapParam = false;
40
    
41
    private boolean isPerfIndexDisabled = false;
42
    private boolean isDefaultStrategy = false;
43
    private boolean isZipStrategy = false;
44
    private boolean isDiosStrategy = false;
45
    private boolean isUrlEncodingDisabled = false;
46
    private boolean isUrlRandomSuffixDisabled = false;
47
48
    private boolean isParsingForm = false;
49
    private boolean isNotTestingConnection = false;
50
    private boolean isNotProcessingCookies = false;
51
    private boolean isProcessingCsrf = false;
52
    
53
    private boolean isTamperingBase64 = false;
54
    private boolean isTamperingFunctionComment = false;
55
    private boolean isTamperingVersionComment = false;
56
    private boolean isTamperingEqualToLike = false;
57
    private boolean isTamperingRandomCase = false;
58
    private boolean isTamperingEval = false;
59
    private boolean isTamperingSpaceToMultilineComment = false;
60
    private boolean isTamperingSpaceToDashComment = false;
61
    private boolean isTamperingSpaceToSharpComment = false;
62
63
    private String csrfUserTag = "";
64
    private String csrfUserTagOutput = "";
65
    private boolean isCsrfUserTag = false;
66
    private boolean isLimitingThreads = true;
67
    private int countLimitingThreads = 5;
68
    private boolean isConnectionTimeout = false;
69
    private int countConnectionTimeout = 15;
70
    private boolean isUnicodeDecodeDisabled = false;
71
    private boolean isUrlDecodeDisabled = false;
72
73
    private boolean isStrategyTimeDisabled = false;
74
    private boolean isStrategyBlindDisabled = false;
75
    private boolean isStrategyMultibitDisabled = false;
76
    private boolean isStrategyStackedDisabled = false;
77
    private boolean isStrategyErrorDisabled = false;
78
    private boolean isStrategyNormalDisabled = false;
79
80
    private boolean isLimitingNormalIndex = false;
81
    private int countNormalIndex = 50;
82
    private boolean isLimitingSleepTimeStrategy = false;
83
    private int countSleepTimeStrategy = 5;
84
85
    /**
86
     * Initialize the utility class with previously saved JVM preferences and apply
87
     * loaded settings to the system.
88
     */
89
    public void loadSavedPreferences() {
90
        
91
        // Use Preferences API to persist proxy configuration
92
        Preferences preferences = Preferences.userRoot().node(InjectionModel.class.getName());
93
        
94
        this.pathFile = preferences.get("pathFile", SystemUtils.USER_DIR);
95
        
96
        this.isCheckingUpdate = preferences.getBoolean("isCheckingUpdate", true);
97
        this.isReportingBugs = preferences.getBoolean("isReportingBugs", true);
98
        
99
        this.isFollowingRedirection = preferences.getBoolean("isFollowingRedirection", false);
100
        this.isHttp2Disabled = preferences.getBoolean("isHttp2Disabled", false);
101
        this.isNotInjectingMetadata = preferences.getBoolean("isNotInjectingMetadata", false);
102
        this.isNotSearchingCharInsertion = preferences.getBoolean("isNotSearchingCharInsertion", false);
103
        this.isNotShowingVulnReport = preferences.getBoolean("isNotShowingVulnReport", false);
104
105
        this.isCheckingAllParam = preferences.getBoolean("isCheckingAllParam", false);
106
        this.isCheckingAllURLParam = preferences.getBoolean("isCheckingAllURLParam", false);
107
        this.isCheckingAllRequestParam = preferences.getBoolean("isCheckingAllRequestParam", false);
108
        this.isCheckingAllHeaderParam = preferences.getBoolean("isCheckingAllHeaderParam", false);
109
        this.isCheckingAllBase64Param = preferences.getBoolean("isCheckingAllBase64Param", false);
110
        this.isCheckingAllJsonParam = preferences.getBoolean("isCheckingAllJsonParam", false);
111
        this.isCheckingAllCookieParam = preferences.getBoolean("isCheckingAllCookieParam", false);
112
        this.isCheckingAllSoapParam = preferences.getBoolean("isCheckingAllSoapParam", false);
113
        
114
        this.isPerfIndexDisabled = preferences.getBoolean("isPerfIndexDisabled", false);
115
        this.isDefaultStrategy = preferences.getBoolean("isDefaultStrategy", false);
116
        this.isZipStrategy = preferences.getBoolean("isZipStrategy", false);
117
        this.isDiosStrategy = preferences.getBoolean("isDiosStrategy", false);
118
        this.isUrlEncodingDisabled = preferences.getBoolean("isUrlEncodingDisabled", false);
119
        this.isUrlRandomSuffixDisabled = preferences.getBoolean("isUrlRandomSuffixDisabled", false);
120
121
        this.isParsingForm = preferences.getBoolean("isParsingForm", false);
122
        this.isNotTestingConnection = preferences.getBoolean("isNotTestingConnection", false);
123
        this.isNotProcessingCookies = preferences.getBoolean("isNotProcessingCookies", false);
124
        this.isProcessingCsrf = preferences.getBoolean("isProcessingCsrf", false);
125
        
126
        this.isTamperingBase64 = preferences.getBoolean("isTamperingBase64", false);
127
        this.isTamperingEqualToLike = preferences.getBoolean("isTamperingEqualToLike", false);
128
        this.isTamperingFunctionComment = preferences.getBoolean("isTamperingFunctionComment", false);
129
        this.isTamperingVersionComment = preferences.getBoolean("isTamperingVersionComment", false);
130
        this.isTamperingRandomCase = preferences.getBoolean("isTamperingRandomCase", false);
131
        this.isTamperingEval = preferences.getBoolean("isTamperingEval", false);
132
        this.isTamperingSpaceToDashComment = preferences.getBoolean("isTamperingSpaceToDashComment", false);
133
        this.isTamperingSpaceToMultilineComment = preferences.getBoolean("isTamperingSpaceToMultilineComment", false);
134
        this.isTamperingSpaceToSharpComment = preferences.getBoolean("isTamperingSpaceToSharpComment", false);
135
        
136
        this.is4K = preferences.getBoolean("is4K", false);
137
        this.isCsrfUserTag = preferences.getBoolean("isCsrfUserTag", false);
138
        this.csrfUserTag = preferences.get("csrfUserTag", "");
139
        this.csrfUserTagOutput = preferences.get("csrfUserTagOutput", "");
140
        this.isLimitingThreads = preferences.getBoolean("isLimitingThreads", true);
141
        this.countLimitingThreads = preferences.getInt("countLimitingThreads", 5);
142
        this.isConnectionTimeout = preferences.getBoolean("isConnectionTimeout", false);
143
        this.countConnectionTimeout = preferences.getInt("countConnectionTimeout", 15);
144
        this.isUnicodeDecodeDisabled = preferences.getBoolean("isUnicodeDecodeDisabled", false);
145
        this.isUrlDecodeDisabled = preferences.getBoolean("isUrlDecodeDisabled", false);
146
        this.countNormalIndex = preferences.getInt("countNormalIndex", 50);
147
        this.isLimitingNormalIndex = preferences.getBoolean("isLimitingNormalIndex", false);
148
        this.countSleepTimeStrategy = preferences.getInt("countSleepTimeStrategy", 5);
149
        this.isLimitingSleepTimeStrategy = preferences.getBoolean("isLimitingSleepTimeStrategy", false);
150
151
        this.isStrategyTimeDisabled = preferences.getBoolean("isStrategyTimeDisabled", false);
152
        this.isStrategyBlindDisabled = preferences.getBoolean("isStrategyBlindDisabled", false);
153
        this.isStrategyMultibitDisabled = preferences.getBoolean("isStrategyMultibitDisabled", false);
154
        this.isStrategyStackedDisabled = preferences.getBoolean("isStrategyStackedDisabled", false);
155
        this.isStrategyErrorDisabled = preferences.getBoolean("isStrategyErrorDisabled", false);
156
        this.isStrategyNormalDisabled = preferences.getBoolean("isStrategyNormalDisabled", false);
157
    }
158
    
159
    /**
160
     * Initialize the utility class, persist preferences and
161
     * apply change to the JVM.
162
     */
163
    public void persist() {
164
        
165
        var preferences = Preferences.userRoot().node(InjectionModel.class.getName());
166
167 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isCheckingUpdate", this.isCheckingUpdate);
168 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isReportingBugs", this.isReportingBugs);
169 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("is4K", this.is4K);
170 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isUnicodeDecodeDisabled", this.isUnicodeDecodeDisabled);
171 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isUrlDecodeDisabled", this.isUrlDecodeDisabled);
172 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isLimitingThreads", this.isLimitingThreads);
173 1 1. persist : removed call to java/util/prefs/Preferences::putInt → KILLED
        preferences.putInt("countLimitingThreads", this.countLimitingThreads);
174 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isConnectionTimeout", this.isConnectionTimeout);
175 1 1. persist : removed call to java/util/prefs/Preferences::putInt → SURVIVED
        preferences.putInt("countConnectionTimeout", this.countConnectionTimeout);
176 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isLimitingNormalIndex", this.isLimitingNormalIndex);
177 1 1. persist : removed call to java/util/prefs/Preferences::putInt → SURVIVED
        preferences.putInt("countNormalIndex", this.countNormalIndex);
178 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isLimitingSleepTimeStrategy", this.isLimitingSleepTimeStrategy);
179 1 1. persist : removed call to java/util/prefs/Preferences::putInt → SURVIVED
        preferences.putInt("countSleepTimeStrategy", this.countSleepTimeStrategy);
180 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isCsrfUserTag", this.isCsrfUserTag);
181 1 1. persist : removed call to java/util/prefs/Preferences::put → SURVIVED
        preferences.put("csrfUserTag", this.csrfUserTag);
182 1 1. persist : removed call to java/util/prefs/Preferences::put → SURVIVED
        preferences.put("csrfUserTagOutput", this.csrfUserTagOutput);
183
        
184 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isFollowingRedirection", this.isFollowingRedirection);
185 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isHttp2Disabled", this.isHttp2Disabled);
186 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isNotInjectingMetadata", this.isNotInjectingMetadata);
187 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isNotSearchingCharInsertion", this.isNotSearchingCharInsertion);
188 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isNotShowingVulnReport", this.isNotShowingVulnReport);
189 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isCheckingAllParam", this.isCheckingAllParam);
190 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isCheckingAllURLParam", this.isCheckingAllURLParam);
191 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isCheckingAllRequestParam", this.isCheckingAllRequestParam);
192 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isCheckingAllHeaderParam", this.isCheckingAllHeaderParam);
193
        
194 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isCheckingAllBase64Param", this.isCheckingAllBase64Param);
195 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isCheckingAllJsonParam", this.isCheckingAllJsonParam);
196 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isCheckingAllCookieParam", this.isCheckingAllCookieParam);
197 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isCheckingAllSoapParam", this.isCheckingAllSoapParam);
198 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isParsingForm", this.isParsingForm);
199 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isNotTestingConnection", this.isNotTestingConnection);
200 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isNotProcessingCookies", this.isNotProcessingCookies);
201 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isProcessingCsrf", this.isProcessingCsrf);
202
        
203 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isPerfIndexDisabled", this.isPerfIndexDisabled);
204 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isDefaultStrategy", this.isDefaultStrategy);
205 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isZipStrategy", this.isZipStrategy);
206 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isDiosStrategy", this.isDiosStrategy);
207 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isUrlEncodingDisabled", this.isUrlEncodingDisabled);
208 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isUrlRandomSuffixDisabled", this.isUrlRandomSuffixDisabled);
209
210 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isTamperingBase64", this.isTamperingBase64);
211 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isTamperingEqualToLike", this.isTamperingEqualToLike);
212 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isTamperingVersionComment", this.isTamperingVersionComment);
213 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isTamperingFunctionComment", this.isTamperingFunctionComment);
214 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isTamperingRandomCase", this.isTamperingRandomCase);
215 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isTamperingEval", this.isTamperingEval);
216 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isTamperingSpaceToDashComment", this.isTamperingSpaceToDashComment);
217 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isTamperingSpaceToMultilineComment", this.isTamperingSpaceToMultilineComment);
218 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → KILLED
        preferences.putBoolean("isTamperingSpaceToSharpComment", this.isTamperingSpaceToSharpComment);
219
        
220 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isStrategyTimeDisabled", this.isStrategyTimeDisabled);
221 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isStrategyBlindDisabled", this.isStrategyBlindDisabled);
222 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isStrategyMultibitDisabled", this.isStrategyMultibitDisabled);
223 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isStrategyStackedDisabled", this.isStrategyStackedDisabled);
224 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isStrategyErrorDisabled", this.isStrategyErrorDisabled);
225 1 1. persist : removed call to java/util/prefs/Preferences::putBoolean → SURVIVED
        preferences.putBoolean("isStrategyNormalDisabled", this.isStrategyNormalDisabled);
226
    }
227
    
228
    /**
229
     * Set the general file path to the utility class and persist to JVM preferences.
230
     * @param path folder path to persist
231
     */
232
    public void set(String path) {
233
        
234
        this.pathFile = path;
235
        
236
        Preferences preferences = Preferences.userRoot().node(InjectionModel.class.getName());
237 1 1. set : removed call to java/util/prefs/Preferences::put → NO_COVERAGE
        preferences.put("pathFile", this.pathFile);
238
    }
239
    
240
    
241
    // Getters and setters
242
    
243
    public String getPathFile() {
244 1 1. getPathFile : replaced return value with "" for com/jsql/util/PreferencesUtil::getPathFile → NO_COVERAGE
        return this.pathFile;
245
    }
246
    
247
    public boolean isCheckingUpdate() {
248 2 1. isCheckingUpdate : replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingUpdate → NO_COVERAGE
2. isCheckingUpdate : replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingUpdate → NO_COVERAGE
        return this.isCheckingUpdate;
249
    }
250
    
251
    public boolean isFollowingRedirection() {
252 2 1. isFollowingRedirection : replaced boolean return with false for com/jsql/util/PreferencesUtil::isFollowingRedirection → NO_COVERAGE
2. isFollowingRedirection : replaced boolean return with true for com/jsql/util/PreferencesUtil::isFollowingRedirection → NO_COVERAGE
        return this.isFollowingRedirection;
253
    }
254
    
255
    public boolean isHttp2Disabled() {
256 2 1. isHttp2Disabled : replaced boolean return with false for com/jsql/util/PreferencesUtil::isHttp2Disabled → NO_COVERAGE
2. isHttp2Disabled : replaced boolean return with true for com/jsql/util/PreferencesUtil::isHttp2Disabled → NO_COVERAGE
        return this.isHttp2Disabled;
257
    }
258
    
259
    public boolean isReportingBugs() {
260 2 1. isReportingBugs : replaced boolean return with false for com/jsql/util/PreferencesUtil::isReportingBugs → NO_COVERAGE
2. isReportingBugs : replaced boolean return with true for com/jsql/util/PreferencesUtil::isReportingBugs → NO_COVERAGE
        return this.isReportingBugs;
261
    }
262
263
    public boolean isNotInjectingMetadata() {
264 2 1. isNotInjectingMetadata : replaced boolean return with false for com/jsql/util/PreferencesUtil::isNotInjectingMetadata → NO_COVERAGE
2. isNotInjectingMetadata : replaced boolean return with true for com/jsql/util/PreferencesUtil::isNotInjectingMetadata → NO_COVERAGE
        return this.isNotInjectingMetadata;
265
    }
266
267
    public boolean isNotSearchingCharInsertion() {
268 2 1. isNotSearchingCharInsertion : replaced boolean return with true for com/jsql/util/PreferencesUtil::isNotSearchingCharInsertion → NO_COVERAGE
2. isNotSearchingCharInsertion : replaced boolean return with false for com/jsql/util/PreferencesUtil::isNotSearchingCharInsertion → NO_COVERAGE
        return this.isNotSearchingCharInsertion;
269
    }
270
271
    public boolean isNotShowingVulnReport() {
272 2 1. isNotShowingVulnReport : replaced boolean return with true for com/jsql/util/PreferencesUtil::isNotShowingVulnReport → NO_COVERAGE
2. isNotShowingVulnReport : replaced boolean return with false for com/jsql/util/PreferencesUtil::isNotShowingVulnReport → NO_COVERAGE
        return this.isNotShowingVulnReport;
273
    }
274
275
    public boolean isCheckingAllURLParam() {
276 2 1. isCheckingAllURLParam : replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllURLParam → NO_COVERAGE
2. isCheckingAllURLParam : replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllURLParam → NO_COVERAGE
        return this.isCheckingAllURLParam;
277
    }
278
279
    public boolean isCheckingAllRequestParam() {
280 2 1. isCheckingAllRequestParam : replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllRequestParam → NO_COVERAGE
2. isCheckingAllRequestParam : replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllRequestParam → NO_COVERAGE
        return this.isCheckingAllRequestParam;
281
    }
282
283
    public boolean isCheckingAllHeaderParam() {
284 2 1. isCheckingAllHeaderParam : replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllHeaderParam → NO_COVERAGE
2. isCheckingAllHeaderParam : replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllHeaderParam → NO_COVERAGE
        return this.isCheckingAllHeaderParam;
285
    }
286
287
    public boolean isCheckingAllBase64Param() {
288 2 1. isCheckingAllBase64Param : replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllBase64Param → NO_COVERAGE
2. isCheckingAllBase64Param : replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllBase64Param → NO_COVERAGE
        return this.isCheckingAllBase64Param;
289
    }
290
    
291
    public boolean isCheckingAllJsonParam() {
292 2 1. isCheckingAllJsonParam : replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllJsonParam → NO_COVERAGE
2. isCheckingAllJsonParam : replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllJsonParam → NO_COVERAGE
        return this.isCheckingAllJsonParam;
293
    }
294
295
    public boolean isParsingForm() {
296 2 1. isParsingForm : replaced boolean return with false for com/jsql/util/PreferencesUtil::isParsingForm → NO_COVERAGE
2. isParsingForm : replaced boolean return with true for com/jsql/util/PreferencesUtil::isParsingForm → NO_COVERAGE
        return this.isParsingForm;
297
    }
298
299
    public boolean isNotTestingConnection() {
300 2 1. isNotTestingConnection : replaced boolean return with true for com/jsql/util/PreferencesUtil::isNotTestingConnection → NO_COVERAGE
2. isNotTestingConnection : replaced boolean return with false for com/jsql/util/PreferencesUtil::isNotTestingConnection → NO_COVERAGE
        return this.isNotTestingConnection;
301
    }
302
303
    public boolean isNotProcessingCookies() {
304 2 1. isNotProcessingCookies : replaced boolean return with false for com/jsql/util/PreferencesUtil::isNotProcessingCookies → NO_COVERAGE
2. isNotProcessingCookies : replaced boolean return with true for com/jsql/util/PreferencesUtil::isNotProcessingCookies → NO_COVERAGE
        return this.isNotProcessingCookies;
305
    }
306
307
    public boolean isCheckingAllParam() {
308 2 1. isCheckingAllParam : replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllParam → SURVIVED
2. isCheckingAllParam : replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllParam → KILLED
        return this.isCheckingAllParam;
309
    }
310
311
    public boolean isProcessingCsrf() {
312 2 1. isProcessingCsrf : replaced boolean return with false for com/jsql/util/PreferencesUtil::isProcessingCsrf → NO_COVERAGE
2. isProcessingCsrf : replaced boolean return with true for com/jsql/util/PreferencesUtil::isProcessingCsrf → NO_COVERAGE
        return this.isProcessingCsrf;
313
    }
314
315
    public boolean isCheckingAllCookieParam() {
316 2 1. isCheckingAllCookieParam : replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllCookieParam → NO_COVERAGE
2. isCheckingAllCookieParam : replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllCookieParam → NO_COVERAGE
        return this.isCheckingAllCookieParam;
317
    }
318
319
    public boolean isTamperingBase64() {
320 2 1. isTamperingBase64 : replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingBase64 → NO_COVERAGE
2. isTamperingBase64 : replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingBase64 → NO_COVERAGE
        return this.isTamperingBase64;
321
    }
322
323
    public boolean isTamperingFunctionComment() {
324 2 1. isTamperingFunctionComment : replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingFunctionComment → NO_COVERAGE
2. isTamperingFunctionComment : replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingFunctionComment → NO_COVERAGE
        return this.isTamperingFunctionComment;
325
    }
326
327
    public boolean isTamperingEqualToLike() {
328 2 1. isTamperingEqualToLike : replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingEqualToLike → NO_COVERAGE
2. isTamperingEqualToLike : replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingEqualToLike → NO_COVERAGE
        return this.isTamperingEqualToLike;
329
    }
330
331
    public boolean isTamperingRandomCase() {
332 2 1. isTamperingRandomCase : replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingRandomCase → NO_COVERAGE
2. isTamperingRandomCase : replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingRandomCase → NO_COVERAGE
        return this.isTamperingRandomCase;
333
    }
334
335
    public boolean isTamperingSpaceToMultilineComment() {
336 2 1. isTamperingSpaceToMultilineComment : replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingSpaceToMultilineComment → NO_COVERAGE
2. isTamperingSpaceToMultilineComment : replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingSpaceToMultilineComment → NO_COVERAGE
        return this.isTamperingSpaceToMultilineComment;
337
    }
338
339
    public boolean isTamperingSpaceToDashComment() {
340 2 1. isTamperingSpaceToDashComment : replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingSpaceToDashComment → NO_COVERAGE
2. isTamperingSpaceToDashComment : replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingSpaceToDashComment → NO_COVERAGE
        return this.isTamperingSpaceToDashComment;
341
    }
342
343
    public boolean isTamperingSpaceToSharpComment() {
344 2 1. isTamperingSpaceToSharpComment : replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingSpaceToSharpComment → NO_COVERAGE
2. isTamperingSpaceToSharpComment : replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingSpaceToSharpComment → NO_COVERAGE
        return this.isTamperingSpaceToSharpComment;
345
    }
346
347
    public boolean isTamperingVersionComment() {
348 2 1. isTamperingVersionComment : replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingVersionComment → NO_COVERAGE
2. isTamperingVersionComment : replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingVersionComment → NO_COVERAGE
        return this.isTamperingVersionComment;
349
    }
350
351
    public boolean isTamperingEval() {
352 2 1. isTamperingEval : replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingEval → NO_COVERAGE
2. isTamperingEval : replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingEval → NO_COVERAGE
        return this.isTamperingEval;
353
    }
354
355
    public boolean isCheckingAllSoapParam() {
356 2 1. isCheckingAllSoapParam : replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllSoapParam → NO_COVERAGE
2. isCheckingAllSoapParam : replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllSoapParam → NO_COVERAGE
        return this.isCheckingAllSoapParam;
357
    }
358
359
    public boolean is4K() {
360 2 1. is4K : replaced boolean return with true for com/jsql/util/PreferencesUtil::is4K → NO_COVERAGE
2. is4K : replaced boolean return with false for com/jsql/util/PreferencesUtil::is4K → NO_COVERAGE
        return this.is4K;
361
    }
362
363
    public boolean isLimitingThreads() {
364 2 1. isLimitingThreads : replaced boolean return with false for com/jsql/util/PreferencesUtil::isLimitingThreads → NO_COVERAGE
2. isLimitingThreads : replaced boolean return with true for com/jsql/util/PreferencesUtil::isLimitingThreads → NO_COVERAGE
        return this.isLimitingThreads;
365
    }
366
    
367
    public boolean isLimitingSleepTimeStrategy() {
368 2 1. isLimitingSleepTimeStrategy : replaced boolean return with true for com/jsql/util/PreferencesUtil::isLimitingSleepTimeStrategy → NO_COVERAGE
2. isLimitingSleepTimeStrategy : replaced boolean return with false for com/jsql/util/PreferencesUtil::isLimitingSleepTimeStrategy → NO_COVERAGE
        return this.isLimitingSleepTimeStrategy;
369
    }
370
    
371
    public boolean isConnectionTimeout() {
372 2 1. isConnectionTimeout : replaced boolean return with false for com/jsql/util/PreferencesUtil::isConnectionTimeout → NO_COVERAGE
2. isConnectionTimeout : replaced boolean return with true for com/jsql/util/PreferencesUtil::isConnectionTimeout → NO_COVERAGE
        return this.isConnectionTimeout;
373
    }
374
    
375
    public boolean isUnicodeDecodeDisabled() {
376 2 1. isUnicodeDecodeDisabled : replaced boolean return with false for com/jsql/util/PreferencesUtil::isUnicodeDecodeDisabled → NO_COVERAGE
2. isUnicodeDecodeDisabled : replaced boolean return with true for com/jsql/util/PreferencesUtil::isUnicodeDecodeDisabled → NO_COVERAGE
        return this.isUnicodeDecodeDisabled;
377
    }
378
    
379
    public boolean isUrlDecodeDisabled() {
380 2 1. isUrlDecodeDisabled : replaced boolean return with true for com/jsql/util/PreferencesUtil::isUrlDecodeDisabled → NO_COVERAGE
2. isUrlDecodeDisabled : replaced boolean return with false for com/jsql/util/PreferencesUtil::isUrlDecodeDisabled → NO_COVERAGE
        return this.isUrlDecodeDisabled;
381
    }
382
    
383
    public int countLimitingThreads() {
384 1 1. countLimitingThreads : replaced int return with 0 for com/jsql/util/PreferencesUtil::countLimitingThreads → NO_COVERAGE
        return this.countLimitingThreads;
385
    }
386
    
387
    public int countConnectionTimeout() {
388 1 1. countConnectionTimeout : replaced int return with 0 for com/jsql/util/PreferencesUtil::countConnectionTimeout → NO_COVERAGE
        return this.countConnectionTimeout;
389
    }
390
    
391
    public int countNormalIndex() {
392 1 1. countNormalIndex : replaced int return with 0 for com/jsql/util/PreferencesUtil::countNormalIndex → NO_COVERAGE
        return this.countNormalIndex;
393
    }
394
    
395
    public int countSleepTimeStrategy() {
396 1 1. countSleepTimeStrategy : replaced int return with 0 for com/jsql/util/PreferencesUtil::countSleepTimeStrategy → NO_COVERAGE
        return this.countSleepTimeStrategy;
397
    }
398
    
399
    public boolean isLimitingNormalIndex() {
400 2 1. isLimitingNormalIndex : replaced boolean return with true for com/jsql/util/PreferencesUtil::isLimitingNormalIndex → NO_COVERAGE
2. isLimitingNormalIndex : replaced boolean return with false for com/jsql/util/PreferencesUtil::isLimitingNormalIndex → NO_COVERAGE
        return this.isLimitingNormalIndex;
401
    }
402
    
403
    public boolean isCsrfUserTag() {
404 2 1. isCsrfUserTag : replaced boolean return with false for com/jsql/util/PreferencesUtil::isCsrfUserTag → NO_COVERAGE
2. isCsrfUserTag : replaced boolean return with true for com/jsql/util/PreferencesUtil::isCsrfUserTag → NO_COVERAGE
        return this.isCsrfUserTag;
405
    }
406
    
407
    public String csrfUserTag() {
408 1 1. csrfUserTag : replaced return value with "" for com/jsql/util/PreferencesUtil::csrfUserTag → SURVIVED
        return this.csrfUserTag;
409
    }
410
    
411
    public String csrfUserTagOutput() {
412 1 1. csrfUserTagOutput : replaced return value with "" for com/jsql/util/PreferencesUtil::csrfUserTagOutput → NO_COVERAGE
        return this.csrfUserTagOutput;
413
    }
414
    
415
    public boolean isPerfIndexDisabled() {
416 2 1. isPerfIndexDisabled : replaced boolean return with true for com/jsql/util/PreferencesUtil::isPerfIndexDisabled → NO_COVERAGE
2. isPerfIndexDisabled : replaced boolean return with false for com/jsql/util/PreferencesUtil::isPerfIndexDisabled → NO_COVERAGE
        return this.isPerfIndexDisabled;
417
    }
418
    
419
    public boolean isZipStrategy() {
420 2 1. isZipStrategy : replaced boolean return with false for com/jsql/util/PreferencesUtil::isZipStrategy → NO_COVERAGE
2. isZipStrategy : replaced boolean return with true for com/jsql/util/PreferencesUtil::isZipStrategy → NO_COVERAGE
        return this.isZipStrategy;
421
    }
422
    
423
    public boolean isDefaultStrategy() {
424 2 1. isDefaultStrategy : replaced boolean return with false for com/jsql/util/PreferencesUtil::isDefaultStrategy → NO_COVERAGE
2. isDefaultStrategy : replaced boolean return with true for com/jsql/util/PreferencesUtil::isDefaultStrategy → NO_COVERAGE
        return this.isDefaultStrategy;
425
    }
426
    
427
    public boolean isDiosStrategy() {
428 2 1. isDiosStrategy : replaced boolean return with false for com/jsql/util/PreferencesUtil::isDiosStrategy → NO_COVERAGE
2. isDiosStrategy : replaced boolean return with true for com/jsql/util/PreferencesUtil::isDiosStrategy → NO_COVERAGE
        return this.isDiosStrategy;
429
    }
430
    
431
    public boolean isUrlEncodingDisabled() {
432 2 1. isUrlEncodingDisabled : replaced boolean return with false for com/jsql/util/PreferencesUtil::isUrlEncodingDisabled → NO_COVERAGE
2. isUrlEncodingDisabled : replaced boolean return with true for com/jsql/util/PreferencesUtil::isUrlEncodingDisabled → NO_COVERAGE
        return this.isUrlEncodingDisabled;
433
    }
434
    
435
    public boolean isUrlRandomSuffixDisabled() {
436 2 1. isUrlRandomSuffixDisabled : replaced boolean return with true for com/jsql/util/PreferencesUtil::isUrlRandomSuffixDisabled → NO_COVERAGE
2. isUrlRandomSuffixDisabled : replaced boolean return with false for com/jsql/util/PreferencesUtil::isUrlRandomSuffixDisabled → NO_COVERAGE
        return this.isUrlRandomSuffixDisabled;
437
    }
438
439
    public boolean isStrategyTimeDisabled() {
440 2 1. isStrategyTimeDisabled : replaced boolean return with false for com/jsql/util/PreferencesUtil::isStrategyTimeDisabled → NO_COVERAGE
2. isStrategyTimeDisabled : replaced boolean return with true for com/jsql/util/PreferencesUtil::isStrategyTimeDisabled → NO_COVERAGE
        return this.isStrategyTimeDisabled;
441
    }
442
443
    public boolean isStrategyBlindDisabled() {
444 2 1. isStrategyBlindDisabled : replaced boolean return with false for com/jsql/util/PreferencesUtil::isStrategyBlindDisabled → NO_COVERAGE
2. isStrategyBlindDisabled : replaced boolean return with true for com/jsql/util/PreferencesUtil::isStrategyBlindDisabled → NO_COVERAGE
        return this.isStrategyBlindDisabled;
445
    }
446
447
    public boolean isStrategyMultibitDisabled() {
448 2 1. isStrategyMultibitDisabled : replaced boolean return with false for com/jsql/util/PreferencesUtil::isStrategyMultibitDisabled → NO_COVERAGE
2. isStrategyMultibitDisabled : replaced boolean return with true for com/jsql/util/PreferencesUtil::isStrategyMultibitDisabled → NO_COVERAGE
        return this.isStrategyMultibitDisabled;
449
    }
450
451
    public boolean isStrategyStackedDisabled() {
452 2 1. isStrategyStackedDisabled : replaced boolean return with true for com/jsql/util/PreferencesUtil::isStrategyStackedDisabled → NO_COVERAGE
2. isStrategyStackedDisabled : replaced boolean return with false for com/jsql/util/PreferencesUtil::isStrategyStackedDisabled → NO_COVERAGE
        return this.isStrategyStackedDisabled;
453
    }
454
455
    public boolean isStrategyErrorDisabled() {
456 2 1. isStrategyErrorDisabled : replaced boolean return with true for com/jsql/util/PreferencesUtil::isStrategyErrorDisabled → NO_COVERAGE
2. isStrategyErrorDisabled : replaced boolean return with false for com/jsql/util/PreferencesUtil::isStrategyErrorDisabled → NO_COVERAGE
        return this.isStrategyErrorDisabled;
457
    }
458
459
    public boolean isStrategyNormalDisabled() {
460 2 1. isStrategyNormalDisabled : replaced boolean return with false for com/jsql/util/PreferencesUtil::isStrategyNormalDisabled → NO_COVERAGE
2. isStrategyNormalDisabled : replaced boolean return with true for com/jsql/util/PreferencesUtil::isStrategyNormalDisabled → NO_COVERAGE
        return this.isStrategyNormalDisabled;
461
    }
462
463
464
    // Builder true
465
466
    public PreferencesUtil withDiosStrategy() {
467
        this.isDiosStrategy = true;
468 1 1. withDiosStrategy : replaced return value with null for com/jsql/util/PreferencesUtil::withDiosStrategy → NO_COVERAGE
        return this;
469
    }
470
    
471
    public PreferencesUtil withZipStrategy() {
472
        this.isZipStrategy = true;
473 1 1. withZipStrategy : replaced return value with null for com/jsql/util/PreferencesUtil::withZipStrategy → NO_COVERAGE
        return this;
474
    }
475
    
476
    public PreferencesUtil withDefaultStrategy() {
477
        this.isDefaultStrategy = true;
478 1 1. withDefaultStrategy : replaced return value with null for com/jsql/util/PreferencesUtil::withDefaultStrategy → NO_COVERAGE
        return this;
479
    }
480
    
481
    public PreferencesUtil withNotTestingConnection() {
482
        this.isNotTestingConnection = true;
483 1 1. withNotTestingConnection : replaced return value with null for com/jsql/util/PreferencesUtil::withNotTestingConnection → NO_COVERAGE
        return this;
484
    }
485
    
486
    public PreferencesUtil withNotInjectingMetadata() {
487
        this.isNotInjectingMetadata = true;
488 1 1. withNotInjectingMetadata : replaced return value with null for com/jsql/util/PreferencesUtil::withNotInjectingMetadata → NO_COVERAGE
        return this;
489
    }
490
    
491
    public PreferencesUtil withNotSearchingCharInsertion() {
492
        this.isNotSearchingCharInsertion = true;
493 1 1. withNotSearchingCharInsertion : replaced return value with null for com/jsql/util/PreferencesUtil::withNotSearchingCharInsertion → NO_COVERAGE
        return this;
494
    }
495
496
    public PreferencesUtil withCheckingAllHeaderParam() {
497
        this.isCheckingAllHeaderParam = true;
498 1 1. withCheckingAllHeaderParam : replaced return value with null for com/jsql/util/PreferencesUtil::withCheckingAllHeaderParam → NO_COVERAGE
        return this;
499
    }
500
    
501
    public PreferencesUtil withIsNotProcessingCookies() {
502
        this.isNotProcessingCookies = true;
503 1 1. withIsNotProcessingCookies : replaced return value with null for com/jsql/util/PreferencesUtil::withIsNotProcessingCookies → NO_COVERAGE
        return this;
504
    }
505
    
506
    public PreferencesUtil withProcessingCsrf() {
507
        this.isProcessingCsrf = true;
508 1 1. withProcessingCsrf : replaced return value with null for com/jsql/util/PreferencesUtil::withProcessingCsrf → NO_COVERAGE
        return this;
509
    }
510
    
511
    public PreferencesUtil withCheckingAllURLParam() {
512
        this.isCheckingAllURLParam = true;
513 1 1. withCheckingAllURLParam : replaced return value with null for com/jsql/util/PreferencesUtil::withCheckingAllURLParam → NO_COVERAGE
        return this;
514
    }
515
    
516
    public PreferencesUtil withCheckingAllRequestParam() {
517
        this.isCheckingAllRequestParam = true;
518 1 1. withCheckingAllRequestParam : replaced return value with null for com/jsql/util/PreferencesUtil::withCheckingAllRequestParam → NO_COVERAGE
        return this;
519
    }
520
    
521
    public PreferencesUtil withCheckingAllJsonParam() {
522
        this.isCheckingAllJsonParam = true;
523 1 1. withCheckingAllJsonParam : replaced return value with null for com/jsql/util/PreferencesUtil::withCheckingAllJsonParam → NO_COVERAGE
        return this;
524
    }
525
    
526
    public PreferencesUtil withCheckingAllSoapParam() {
527
        this.isCheckingAllSoapParam = true;
528 1 1. withCheckingAllSoapParam : replaced return value with null for com/jsql/util/PreferencesUtil::withCheckingAllSoapParam → NO_COVERAGE
        return this;
529
    }
530
    
531
    public PreferencesUtil withCheckingUpdate() {
532
        this.isCheckingUpdate = true;
533 1 1. withCheckingUpdate : replaced return value with null for com/jsql/util/PreferencesUtil::withCheckingUpdate → NO_COVERAGE
        return this;
534
    }
535
    
536
    public PreferencesUtil withReportingBugs() {
537
        this.isReportingBugs = true;
538 1 1. withReportingBugs : replaced return value with null for com/jsql/util/PreferencesUtil::withReportingBugs → NO_COVERAGE
        return this;
539
    }
540
    
541
    
542
    // Builder
543
544
    public PreferencesUtil withIsCheckingUpdate(boolean isCheckingUpdate) {
545
        this.isCheckingUpdate = isCheckingUpdate;
546 1 1. withIsCheckingUpdate : replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingUpdate → KILLED
        return this;
547
    }
548
549
    public PreferencesUtil withIsReportingBugs(boolean isReportingBugs) {
550
        this.isReportingBugs = isReportingBugs;
551 1 1. withIsReportingBugs : replaced return value with null for com/jsql/util/PreferencesUtil::withIsReportingBugs → KILLED
        return this;
552
    }
553
554
    public PreferencesUtil withIs4K(boolean is4K) {
555
        this.is4K = is4K;
556 1 1. withIs4K : replaced return value with null for com/jsql/util/PreferencesUtil::withIs4K → KILLED
        return this;
557
    }
558
559
    public PreferencesUtil withIsFollowingRedirection(boolean isFollowingRedirection) {
560
        this.isFollowingRedirection = isFollowingRedirection;
561 1 1. withIsFollowingRedirection : replaced return value with null for com/jsql/util/PreferencesUtil::withIsFollowingRedirection → KILLED
        return this;
562
    }
563
    
564
    public PreferencesUtil withIsHttp2Disabled(boolean isHttp2Disabled) {
565
        this.isHttp2Disabled = isHttp2Disabled;
566 1 1. withIsHttp2Disabled : replaced return value with null for com/jsql/util/PreferencesUtil::withIsHttp2Disabled → NO_COVERAGE
        return this;
567
    }
568
    
569
    public PreferencesUtil withIsUnicodeDecodeDisabled(boolean isUnicodeDecodeDisabled) {
570
        this.isUnicodeDecodeDisabled = isUnicodeDecodeDisabled;
571 1 1. withIsUnicodeDecodeDisabled : replaced return value with null for com/jsql/util/PreferencesUtil::withIsUnicodeDecodeDisabled → NO_COVERAGE
        return this;
572
    }
573
    
574
    public PreferencesUtil withIsUrlDecodeDisabled(boolean isUrlDecodeDisabled) {
575
        this.isUrlDecodeDisabled = isUrlDecodeDisabled;
576 1 1. withIsUrlDecodeDisabled : replaced return value with null for com/jsql/util/PreferencesUtil::withIsUrlDecodeDisabled → NO_COVERAGE
        return this;
577
    }
578
579
    public PreferencesUtil withIsNotInjectingMetadata(boolean isNotInjectingMetadata) {
580
        this.isNotInjectingMetadata = isNotInjectingMetadata;
581 1 1. withIsNotInjectingMetadata : replaced return value with null for com/jsql/util/PreferencesUtil::withIsNotInjectingMetadata → KILLED
        return this;
582
    }
583
584
    public PreferencesUtil withIsNotSearchingCharInsertion(boolean isNotSearchingCharInsertion) {
585
        this.isNotSearchingCharInsertion = isNotSearchingCharInsertion;
586 1 1. withIsNotSearchingCharInsertion : replaced return value with null for com/jsql/util/PreferencesUtil::withIsNotSearchingCharInsertion → KILLED
        return this;
587
    }
588
589
    public PreferencesUtil withIsNotShowingVulnReport(boolean isNotShowingVulnReport) {
590
        this.isNotShowingVulnReport = isNotShowingVulnReport;
591 1 1. withIsNotShowingVulnReport : replaced return value with null for com/jsql/util/PreferencesUtil::withIsNotShowingVulnReport → NO_COVERAGE
        return this;
592
    }
593
594
    public PreferencesUtil withIsCheckingAllParam(boolean isCheckingAllParam) {
595
        this.isCheckingAllParam = isCheckingAllParam;
596 1 1. withIsCheckingAllParam : replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllParam → KILLED
        return this;
597
    }
598
599
    public PreferencesUtil withIsCheckingAllURLParam(boolean isCheckingAllURLParam) {
600
        this.isCheckingAllURLParam = isCheckingAllURLParam;
601 1 1. withIsCheckingAllURLParam : replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllURLParam → KILLED
        return this;
602
    }
603
604
    public PreferencesUtil withIsCheckingAllRequestParam(boolean isCheckingAllRequestParam) {
605
        this.isCheckingAllRequestParam = isCheckingAllRequestParam;
606 1 1. withIsCheckingAllRequestParam : replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllRequestParam → KILLED
        return this;
607
    }
608
609
    public PreferencesUtil withIsCheckingAllHeaderParam(boolean isCheckingAllHeaderParam) {
610
        this.isCheckingAllHeaderParam = isCheckingAllHeaderParam;
611 1 1. withIsCheckingAllHeaderParam : replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllHeaderParam → KILLED
        return this;
612
    }
613
614
    public PreferencesUtil withIsCheckingAllBase64Param(boolean isCheckingAllBase64Param) {
615
        this.isCheckingAllBase64Param = isCheckingAllBase64Param;
616 1 1. withIsCheckingAllBase64Param : replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllBase64Param → NO_COVERAGE
        return this;
617
    }
618
    
619
    public PreferencesUtil withIsCheckingAllJsonParam(boolean isCheckingAllJSONParam) {
620
        this.isCheckingAllJsonParam = isCheckingAllJSONParam;
621 1 1. withIsCheckingAllJsonParam : replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllJsonParam → KILLED
        return this;
622
    }
623
624
    public PreferencesUtil withIsCheckingAllCookieParam(boolean isCheckingAllCookieParam) {
625
        this.isCheckingAllCookieParam = isCheckingAllCookieParam;
626 1 1. withIsCheckingAllCookieParam : replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllCookieParam → KILLED
        return this;
627
    }
628
629
    public PreferencesUtil withIsCheckingAllSoapParam(boolean isCheckingAllSOAPParam) {
630
        this.isCheckingAllSoapParam = isCheckingAllSOAPParam;
631 1 1. withIsCheckingAllSoapParam : replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllSoapParam → KILLED
        return this;
632
    }
633
634
    public PreferencesUtil withIsParsingForm(boolean isParsingForm) {
635
        this.isParsingForm = isParsingForm;
636 1 1. withIsParsingForm : replaced return value with null for com/jsql/util/PreferencesUtil::withIsParsingForm → KILLED
        return this;
637
    }
638
639
    public PreferencesUtil withIsNotTestingConnection(boolean isNotTestingConnection) {
640
        this.isNotTestingConnection = isNotTestingConnection;
641 1 1. withIsNotTestingConnection : replaced return value with null for com/jsql/util/PreferencesUtil::withIsNotTestingConnection → KILLED
        return this;
642
    }
643
644
    public PreferencesUtil withIsNotProcessingCookies(boolean isNotProcessingCookies) {
645
        this.isNotProcessingCookies = isNotProcessingCookies;
646 1 1. withIsNotProcessingCookies : replaced return value with null for com/jsql/util/PreferencesUtil::withIsNotProcessingCookies → KILLED
        return this;
647
    }
648
649
    public PreferencesUtil withIsProcessingCsrf(boolean isProcessingCsrf) {
650
        this.isProcessingCsrf = isProcessingCsrf;
651 1 1. withIsProcessingCsrf : replaced return value with null for com/jsql/util/PreferencesUtil::withIsProcessingCsrf → KILLED
        return this;
652
    }
653
654
    public PreferencesUtil withIsTamperingBase64(boolean isTamperingBase64) {
655
        this.isTamperingBase64 = isTamperingBase64;
656 1 1. withIsTamperingBase64 : replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingBase64 → KILLED
        return this;
657
    }
658
659
    public PreferencesUtil withIsTamperingFunctionComment(boolean isTamperingFunctionComment) {
660
        this.isTamperingFunctionComment = isTamperingFunctionComment;
661 1 1. withIsTamperingFunctionComment : replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingFunctionComment → KILLED
        return this;
662
    }
663
664
    public PreferencesUtil withIsTamperingVersionComment(boolean isTamperingVersionComment) {
665
        this.isTamperingVersionComment = isTamperingVersionComment;
666 1 1. withIsTamperingVersionComment : replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingVersionComment → KILLED
        return this;
667
    }
668
669
    public PreferencesUtil withIsTamperingEqualToLike(boolean isTamperingEqualToLike) {
670
        this.isTamperingEqualToLike = isTamperingEqualToLike;
671 1 1. withIsTamperingEqualToLike : replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingEqualToLike → KILLED
        return this;
672
    }
673
674
    public PreferencesUtil withIsTamperingRandomCase(boolean isTamperingRandomCase) {
675
        this.isTamperingRandomCase = isTamperingRandomCase;
676 1 1. withIsTamperingRandomCase : replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingRandomCase → KILLED
        return this;
677
    }
678
679
    public PreferencesUtil withIsTamperingEval(boolean isTamperingEval) {
680
        this.isTamperingEval = isTamperingEval;
681 1 1. withIsTamperingEval : replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingEval → KILLED
        return this;
682
    }
683
684
    public PreferencesUtil withIsTamperingSpaceToMultilineComment(boolean isTamperingSpaceToMultilineComment) {
685
        this.isTamperingSpaceToMultilineComment = isTamperingSpaceToMultilineComment;
686 1 1. withIsTamperingSpaceToMultilineComment : replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingSpaceToMultilineComment → KILLED
        return this;
687
    }
688
689
    public PreferencesUtil withIsTamperingSpaceToDashComment(boolean isTamperingSpaceToDashComment) {
690
        this.isTamperingSpaceToDashComment = isTamperingSpaceToDashComment;
691 1 1. withIsTamperingSpaceToDashComment : replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingSpaceToDashComment → KILLED
        return this;
692
    }
693
694
    public PreferencesUtil withIsTamperingSpaceToSharpComment(boolean isTamperingSpaceToSharpComment) {
695
        this.isTamperingSpaceToSharpComment = isTamperingSpaceToSharpComment;
696 1 1. withIsTamperingSpaceToSharpComment : replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingSpaceToSharpComment → KILLED
        return this;
697
    }
698
699
    public PreferencesUtil withCsrfUserTag(String csrfUserTag) {
700
        this.csrfUserTag = csrfUserTag;
701 1 1. withCsrfUserTag : replaced return value with null for com/jsql/util/PreferencesUtil::withCsrfUserTag → SURVIVED
        return this;
702
    }
703
    
704
    public PreferencesUtil withCsrfUserTagOutput(String csrfUserTagOutput) {
705
        this.csrfUserTagOutput = csrfUserTagOutput;
706 1 1. withCsrfUserTagOutput : replaced return value with null for com/jsql/util/PreferencesUtil::withCsrfUserTagOutput → NO_COVERAGE
        return this;
707
    }
708
709
    public PreferencesUtil withIsCsrfUserTag(boolean isCsrfUserTag) {
710
        this.isCsrfUserTag = isCsrfUserTag;
711 1 1. withIsCsrfUserTag : replaced return value with null for com/jsql/util/PreferencesUtil::withIsCsrfUserTag → KILLED
        return this;
712
    }
713
714
    public PreferencesUtil withIsLimitingThreads(boolean isLimitingThreads) {
715
        this.isLimitingThreads = isLimitingThreads;
716 1 1. withIsLimitingThreads : replaced return value with null for com/jsql/util/PreferencesUtil::withIsLimitingThreads → KILLED
        return this;
717
    }
718
    
719
    public PreferencesUtil withIsConnectionTimeout(boolean isConnectionTimeout) {
720
        this.isConnectionTimeout = isConnectionTimeout;
721 1 1. withIsConnectionTimeout : replaced return value with null for com/jsql/util/PreferencesUtil::withIsConnectionTimeout → NO_COVERAGE
        return this;
722
    }
723
    
724
    public PreferencesUtil withIsLimitingSleepTimeStrategy(boolean isLimitingSleepTimeStrategy) {
725
        this.isLimitingSleepTimeStrategy = isLimitingSleepTimeStrategy;
726 1 1. withIsLimitingSleepTimeStrategy : replaced return value with null for com/jsql/util/PreferencesUtil::withIsLimitingSleepTimeStrategy → NO_COVERAGE
        return this;
727
    }
728
729
    public PreferencesUtil withCountLimitingThreads(int countLimitingThreads) {
730
        this.countLimitingThreads = countLimitingThreads;
731 1 1. withCountLimitingThreads : replaced return value with null for com/jsql/util/PreferencesUtil::withCountLimitingThreads → KILLED
        return this;
732
    }
733
    
734
    public PreferencesUtil withCountConnectionTimeout(int countConnectionTimeout) {
735
        this.countConnectionTimeout = countConnectionTimeout;
736 1 1. withCountConnectionTimeout : replaced return value with null for com/jsql/util/PreferencesUtil::withCountConnectionTimeout → NO_COVERAGE
        return this;
737
    }
738
    
739
    public PreferencesUtil withCountSleepTimeStrategy(int countSleepTimeStrategy) {
740
        this.countSleepTimeStrategy = countSleepTimeStrategy;
741 1 1. withCountSleepTimeStrategy : replaced return value with null for com/jsql/util/PreferencesUtil::withCountSleepTimeStrategy → NO_COVERAGE
        return this;
742
    }
743
    
744
    public PreferencesUtil withIsZipStrategy(boolean isZipStrategy) {
745
        this.isZipStrategy = isZipStrategy;
746 1 1. withIsZipStrategy : replaced return value with null for com/jsql/util/PreferencesUtil::withIsZipStrategy → NO_COVERAGE
        return this;
747
    }
748
    
749
    public PreferencesUtil withIsDefaultStrategy(boolean isDefaultStrategy) {
750
        this.isDefaultStrategy = isDefaultStrategy;
751 1 1. withIsDefaultStrategy : replaced return value with null for com/jsql/util/PreferencesUtil::withIsDefaultStrategy → NO_COVERAGE
        return this;
752
    }
753
    
754
    public PreferencesUtil withIsDiosStrategy(boolean isDiosStrategy) {
755
        this.isDiosStrategy = isDiosStrategy;
756 1 1. withIsDiosStrategy : replaced return value with null for com/jsql/util/PreferencesUtil::withIsDiosStrategy → NO_COVERAGE
        return this;
757
    }
758
    
759
    public PreferencesUtil withIsPerfIndexDisabled(boolean isPerfIndexDisabled) {
760
        this.isPerfIndexDisabled = isPerfIndexDisabled;
761 1 1. withIsPerfIndexDisabled : replaced return value with null for com/jsql/util/PreferencesUtil::withIsPerfIndexDisabled → NO_COVERAGE
        return this;
762
    }
763
    
764
    public PreferencesUtil withIsUrlEncodingDisabled(boolean isUrlEncodingDisabled) {
765
        this.isUrlEncodingDisabled = isUrlEncodingDisabled;
766 1 1. withIsUrlEncodingDisabled : replaced return value with null for com/jsql/util/PreferencesUtil::withIsUrlEncodingDisabled → NO_COVERAGE
        return this;
767
    }
768
769
    public PreferencesUtil withIsUrlRandomSuffixDisabled(boolean isUrlRandomSuffixDisabled) {
770
        this.isUrlRandomSuffixDisabled = isUrlRandomSuffixDisabled;
771 1 1. withIsUrlRandomSuffixDisabled : replaced return value with null for com/jsql/util/PreferencesUtil::withIsUrlRandomSuffixDisabled → NO_COVERAGE
        return this;
772
    }
773
774
    public PreferencesUtil withIsLimitingNormalIndex(boolean isLimitingNormalIndex) {
775
        this.isLimitingNormalIndex = isLimitingNormalIndex;
776 1 1. withIsLimitingNormalIndex : replaced return value with null for com/jsql/util/PreferencesUtil::withIsLimitingNormalIndex → NO_COVERAGE
        return this;
777
    }
778
779
    public PreferencesUtil withCountNormalIndex(int countNormalIndex) {
780
        this.countNormalIndex = countNormalIndex;
781 1 1. withCountNormalIndex : replaced return value with null for com/jsql/util/PreferencesUtil::withCountNormalIndex → NO_COVERAGE
        return this;
782
    }
783
784
    public PreferencesUtil withIsStrategyTimeDisabled(boolean isStrategyTimeDisabled) {
785
        this.isStrategyTimeDisabled = isStrategyTimeDisabled;
786 1 1. withIsStrategyTimeDisabled : replaced return value with null for com/jsql/util/PreferencesUtil::withIsStrategyTimeDisabled → NO_COVERAGE
        return this;
787
    }
788
789
    public PreferencesUtil withIsStrategyBlindDisabled(boolean isStrategyBlindDisabled) {
790
        this.isStrategyBlindDisabled = isStrategyBlindDisabled;
791 1 1. withIsStrategyBlindDisabled : replaced return value with null for com/jsql/util/PreferencesUtil::withIsStrategyBlindDisabled → NO_COVERAGE
        return this;
792
    }
793
794
    public PreferencesUtil withIsStrategyMultibitDisabled(boolean isStrategyMultibitDisabled) {
795
        this.isStrategyMultibitDisabled = isStrategyMultibitDisabled;
796 1 1. withIsStrategyMultibitDisabled : replaced return value with null for com/jsql/util/PreferencesUtil::withIsStrategyMultibitDisabled → NO_COVERAGE
        return this;
797
    }
798
799
    public PreferencesUtil withIsStrategyStackedDisabled(boolean isStrategyStackedDisabled) {
800
        this.isStrategyStackedDisabled = isStrategyStackedDisabled;
801 1 1. withIsStrategyStackedDisabled : replaced return value with null for com/jsql/util/PreferencesUtil::withIsStrategyStackedDisabled → NO_COVERAGE
        return this;
802
    }
803
804
    public PreferencesUtil withIsStrategyErrorDisabled(boolean isStrategyErrorDisabled) {
805
        this.isStrategyErrorDisabled = isStrategyErrorDisabled;
806 1 1. withIsStrategyErrorDisabled : replaced return value with null for com/jsql/util/PreferencesUtil::withIsStrategyErrorDisabled → NO_COVERAGE
        return this;
807
    }
808
809
    public PreferencesUtil withIsStrategyNormalDisabled(boolean isStrategyNormalDisabled) {
810
        this.isStrategyNormalDisabled = isStrategyNormalDisabled;
811 1 1. withIsStrategyNormalDisabled : replaced return value with null for com/jsql/util/PreferencesUtil::withIsStrategyNormalDisabled → NO_COVERAGE
        return this;
812
    }
813
}

Mutations

167

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

168

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

169

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

170

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

171

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

172

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

173

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putInt → KILLED

174

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

175

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putInt → SURVIVED

176

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

177

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putInt → SURVIVED

178

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

179

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putInt → SURVIVED

180

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

181

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::put → SURVIVED

182

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::put → SURVIVED

184

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

185

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

186

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

187

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

188

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

189

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

190

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

191

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

192

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

194

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

195

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

196

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

197

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

198

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

199

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

200

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

201

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

203

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

204

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

205

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

206

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

207

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

208

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

210

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

211

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

212

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

213

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

214

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

215

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

216

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

217

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

218

1.1
Location : persist
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
removed call to java/util/prefs/Preferences::putBoolean → KILLED

220

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

221

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

222

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

223

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

224

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

225

1.1
Location : persist
Killed by : none
removed call to java/util/prefs/Preferences::putBoolean → SURVIVED

237

1.1
Location : set
Killed by : none
removed call to java/util/prefs/Preferences::put → NO_COVERAGE

244

1.1
Location : getPathFile
Killed by : none
replaced return value with "" for com/jsql/util/PreferencesUtil::getPathFile → NO_COVERAGE

248

1.1
Location : isCheckingUpdate
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingUpdate → NO_COVERAGE

2.2
Location : isCheckingUpdate
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingUpdate → NO_COVERAGE

252

1.1
Location : isFollowingRedirection
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isFollowingRedirection → NO_COVERAGE

2.2
Location : isFollowingRedirection
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isFollowingRedirection → NO_COVERAGE

256

1.1
Location : isHttp2Disabled
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isHttp2Disabled → NO_COVERAGE

2.2
Location : isHttp2Disabled
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isHttp2Disabled → NO_COVERAGE

260

1.1
Location : isReportingBugs
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isReportingBugs → NO_COVERAGE

2.2
Location : isReportingBugs
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isReportingBugs → NO_COVERAGE

264

1.1
Location : isNotInjectingMetadata
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isNotInjectingMetadata → NO_COVERAGE

2.2
Location : isNotInjectingMetadata
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isNotInjectingMetadata → NO_COVERAGE

268

1.1
Location : isNotSearchingCharInsertion
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isNotSearchingCharInsertion → NO_COVERAGE

2.2
Location : isNotSearchingCharInsertion
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isNotSearchingCharInsertion → NO_COVERAGE

272

1.1
Location : isNotShowingVulnReport
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isNotShowingVulnReport → NO_COVERAGE

2.2
Location : isNotShowingVulnReport
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isNotShowingVulnReport → NO_COVERAGE

276

1.1
Location : isCheckingAllURLParam
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllURLParam → NO_COVERAGE

2.2
Location : isCheckingAllURLParam
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllURLParam → NO_COVERAGE

280

1.1
Location : isCheckingAllRequestParam
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllRequestParam → NO_COVERAGE

2.2
Location : isCheckingAllRequestParam
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllRequestParam → NO_COVERAGE

284

1.1
Location : isCheckingAllHeaderParam
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllHeaderParam → NO_COVERAGE

2.2
Location : isCheckingAllHeaderParam
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllHeaderParam → NO_COVERAGE

288

1.1
Location : isCheckingAllBase64Param
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllBase64Param → NO_COVERAGE

2.2
Location : isCheckingAllBase64Param
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllBase64Param → NO_COVERAGE

292

1.1
Location : isCheckingAllJsonParam
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllJsonParam → NO_COVERAGE

2.2
Location : isCheckingAllJsonParam
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllJsonParam → NO_COVERAGE

296

1.1
Location : isParsingForm
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isParsingForm → NO_COVERAGE

2.2
Location : isParsingForm
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isParsingForm → NO_COVERAGE

300

1.1
Location : isNotTestingConnection
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isNotTestingConnection → NO_COVERAGE

2.2
Location : isNotTestingConnection
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isNotTestingConnection → NO_COVERAGE

304

1.1
Location : isNotProcessingCookies
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isNotProcessingCookies → NO_COVERAGE

2.2
Location : isNotProcessingCookies
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isNotProcessingCookies → NO_COVERAGE

308

1.1
Location : isCheckingAllParam
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllParam → SURVIVED

2.2
Location : isCheckingAllParam
Killed by : ParameterUtilSpock.[engine:spock]/[spec:ParameterUtilSpock]/[feature:$spock_feature_0_1]
replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllParam → KILLED

312

1.1
Location : isProcessingCsrf
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isProcessingCsrf → NO_COVERAGE

2.2
Location : isProcessingCsrf
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isProcessingCsrf → NO_COVERAGE

316

1.1
Location : isCheckingAllCookieParam
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllCookieParam → NO_COVERAGE

2.2
Location : isCheckingAllCookieParam
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllCookieParam → NO_COVERAGE

320

1.1
Location : isTamperingBase64
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingBase64 → NO_COVERAGE

2.2
Location : isTamperingBase64
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingBase64 → NO_COVERAGE

324

1.1
Location : isTamperingFunctionComment
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingFunctionComment → NO_COVERAGE

2.2
Location : isTamperingFunctionComment
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingFunctionComment → NO_COVERAGE

328

1.1
Location : isTamperingEqualToLike
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingEqualToLike → NO_COVERAGE

2.2
Location : isTamperingEqualToLike
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingEqualToLike → NO_COVERAGE

332

1.1
Location : isTamperingRandomCase
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingRandomCase → NO_COVERAGE

2.2
Location : isTamperingRandomCase
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingRandomCase → NO_COVERAGE

336

1.1
Location : isTamperingSpaceToMultilineComment
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingSpaceToMultilineComment → NO_COVERAGE

2.2
Location : isTamperingSpaceToMultilineComment
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingSpaceToMultilineComment → NO_COVERAGE

340

1.1
Location : isTamperingSpaceToDashComment
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingSpaceToDashComment → NO_COVERAGE

2.2
Location : isTamperingSpaceToDashComment
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingSpaceToDashComment → NO_COVERAGE

344

1.1
Location : isTamperingSpaceToSharpComment
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingSpaceToSharpComment → NO_COVERAGE

2.2
Location : isTamperingSpaceToSharpComment
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingSpaceToSharpComment → NO_COVERAGE

348

1.1
Location : isTamperingVersionComment
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingVersionComment → NO_COVERAGE

2.2
Location : isTamperingVersionComment
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingVersionComment → NO_COVERAGE

352

1.1
Location : isTamperingEval
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isTamperingEval → NO_COVERAGE

2.2
Location : isTamperingEval
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isTamperingEval → NO_COVERAGE

356

1.1
Location : isCheckingAllSoapParam
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isCheckingAllSoapParam → NO_COVERAGE

2.2
Location : isCheckingAllSoapParam
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isCheckingAllSoapParam → NO_COVERAGE

360

1.1
Location : is4K
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::is4K → NO_COVERAGE

2.2
Location : is4K
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::is4K → NO_COVERAGE

364

1.1
Location : isLimitingThreads
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isLimitingThreads → NO_COVERAGE

2.2
Location : isLimitingThreads
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isLimitingThreads → NO_COVERAGE

368

1.1
Location : isLimitingSleepTimeStrategy
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isLimitingSleepTimeStrategy → NO_COVERAGE

2.2
Location : isLimitingSleepTimeStrategy
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isLimitingSleepTimeStrategy → NO_COVERAGE

372

1.1
Location : isConnectionTimeout
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isConnectionTimeout → NO_COVERAGE

2.2
Location : isConnectionTimeout
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isConnectionTimeout → NO_COVERAGE

376

1.1
Location : isUnicodeDecodeDisabled
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isUnicodeDecodeDisabled → NO_COVERAGE

2.2
Location : isUnicodeDecodeDisabled
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isUnicodeDecodeDisabled → NO_COVERAGE

380

1.1
Location : isUrlDecodeDisabled
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isUrlDecodeDisabled → NO_COVERAGE

2.2
Location : isUrlDecodeDisabled
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isUrlDecodeDisabled → NO_COVERAGE

384

1.1
Location : countLimitingThreads
Killed by : none
replaced int return with 0 for com/jsql/util/PreferencesUtil::countLimitingThreads → NO_COVERAGE

388

1.1
Location : countConnectionTimeout
Killed by : none
replaced int return with 0 for com/jsql/util/PreferencesUtil::countConnectionTimeout → NO_COVERAGE

392

1.1
Location : countNormalIndex
Killed by : none
replaced int return with 0 for com/jsql/util/PreferencesUtil::countNormalIndex → NO_COVERAGE

396

1.1
Location : countSleepTimeStrategy
Killed by : none
replaced int return with 0 for com/jsql/util/PreferencesUtil::countSleepTimeStrategy → NO_COVERAGE

400

1.1
Location : isLimitingNormalIndex
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isLimitingNormalIndex → NO_COVERAGE

2.2
Location : isLimitingNormalIndex
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isLimitingNormalIndex → NO_COVERAGE

404

1.1
Location : isCsrfUserTag
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isCsrfUserTag → NO_COVERAGE

2.2
Location : isCsrfUserTag
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isCsrfUserTag → NO_COVERAGE

408

1.1
Location : csrfUserTag
Killed by : none
replaced return value with "" for com/jsql/util/PreferencesUtil::csrfUserTag → SURVIVED

412

1.1
Location : csrfUserTagOutput
Killed by : none
replaced return value with "" for com/jsql/util/PreferencesUtil::csrfUserTagOutput → NO_COVERAGE

416

1.1
Location : isPerfIndexDisabled
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isPerfIndexDisabled → NO_COVERAGE

2.2
Location : isPerfIndexDisabled
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isPerfIndexDisabled → NO_COVERAGE

420

1.1
Location : isZipStrategy
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isZipStrategy → NO_COVERAGE

2.2
Location : isZipStrategy
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isZipStrategy → NO_COVERAGE

424

1.1
Location : isDefaultStrategy
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isDefaultStrategy → NO_COVERAGE

2.2
Location : isDefaultStrategy
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isDefaultStrategy → NO_COVERAGE

428

1.1
Location : isDiosStrategy
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isDiosStrategy → NO_COVERAGE

2.2
Location : isDiosStrategy
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isDiosStrategy → NO_COVERAGE

432

1.1
Location : isUrlEncodingDisabled
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isUrlEncodingDisabled → NO_COVERAGE

2.2
Location : isUrlEncodingDisabled
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isUrlEncodingDisabled → NO_COVERAGE

436

1.1
Location : isUrlRandomSuffixDisabled
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isUrlRandomSuffixDisabled → NO_COVERAGE

2.2
Location : isUrlRandomSuffixDisabled
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isUrlRandomSuffixDisabled → NO_COVERAGE

440

1.1
Location : isStrategyTimeDisabled
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isStrategyTimeDisabled → NO_COVERAGE

2.2
Location : isStrategyTimeDisabled
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isStrategyTimeDisabled → NO_COVERAGE

444

1.1
Location : isStrategyBlindDisabled
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isStrategyBlindDisabled → NO_COVERAGE

2.2
Location : isStrategyBlindDisabled
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isStrategyBlindDisabled → NO_COVERAGE

448

1.1
Location : isStrategyMultibitDisabled
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isStrategyMultibitDisabled → NO_COVERAGE

2.2
Location : isStrategyMultibitDisabled
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isStrategyMultibitDisabled → NO_COVERAGE

452

1.1
Location : isStrategyStackedDisabled
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isStrategyStackedDisabled → NO_COVERAGE

2.2
Location : isStrategyStackedDisabled
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isStrategyStackedDisabled → NO_COVERAGE

456

1.1
Location : isStrategyErrorDisabled
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isStrategyErrorDisabled → NO_COVERAGE

2.2
Location : isStrategyErrorDisabled
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isStrategyErrorDisabled → NO_COVERAGE

460

1.1
Location : isStrategyNormalDisabled
Killed by : none
replaced boolean return with false for com/jsql/util/PreferencesUtil::isStrategyNormalDisabled → NO_COVERAGE

2.2
Location : isStrategyNormalDisabled
Killed by : none
replaced boolean return with true for com/jsql/util/PreferencesUtil::isStrategyNormalDisabled → NO_COVERAGE

468

1.1
Location : withDiosStrategy
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withDiosStrategy → NO_COVERAGE

473

1.1
Location : withZipStrategy
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withZipStrategy → NO_COVERAGE

478

1.1
Location : withDefaultStrategy
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withDefaultStrategy → NO_COVERAGE

483

1.1
Location : withNotTestingConnection
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withNotTestingConnection → NO_COVERAGE

488

1.1
Location : withNotInjectingMetadata
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withNotInjectingMetadata → NO_COVERAGE

493

1.1
Location : withNotSearchingCharInsertion
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withNotSearchingCharInsertion → NO_COVERAGE

498

1.1
Location : withCheckingAllHeaderParam
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withCheckingAllHeaderParam → NO_COVERAGE

503

1.1
Location : withIsNotProcessingCookies
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsNotProcessingCookies → NO_COVERAGE

508

1.1
Location : withProcessingCsrf
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withProcessingCsrf → NO_COVERAGE

513

1.1
Location : withCheckingAllURLParam
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withCheckingAllURLParam → NO_COVERAGE

518

1.1
Location : withCheckingAllRequestParam
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withCheckingAllRequestParam → NO_COVERAGE

523

1.1
Location : withCheckingAllJsonParam
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withCheckingAllJsonParam → NO_COVERAGE

528

1.1
Location : withCheckingAllSoapParam
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withCheckingAllSoapParam → NO_COVERAGE

533

1.1
Location : withCheckingUpdate
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withCheckingUpdate → NO_COVERAGE

538

1.1
Location : withReportingBugs
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withReportingBugs → NO_COVERAGE

546

1.1
Location : withIsCheckingUpdate
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingUpdate → KILLED

551

1.1
Location : withIsReportingBugs
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsReportingBugs → KILLED

556

1.1
Location : withIs4K
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIs4K → KILLED

561

1.1
Location : withIsFollowingRedirection
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsFollowingRedirection → KILLED

566

1.1
Location : withIsHttp2Disabled
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsHttp2Disabled → NO_COVERAGE

571

1.1
Location : withIsUnicodeDecodeDisabled
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsUnicodeDecodeDisabled → NO_COVERAGE

576

1.1
Location : withIsUrlDecodeDisabled
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsUrlDecodeDisabled → NO_COVERAGE

581

1.1
Location : withIsNotInjectingMetadata
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsNotInjectingMetadata → KILLED

586

1.1
Location : withIsNotSearchingCharInsertion
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsNotSearchingCharInsertion → KILLED

591

1.1
Location : withIsNotShowingVulnReport
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsNotShowingVulnReport → NO_COVERAGE

596

1.1
Location : withIsCheckingAllParam
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllParam → KILLED

601

1.1
Location : withIsCheckingAllURLParam
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllURLParam → KILLED

606

1.1
Location : withIsCheckingAllRequestParam
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllRequestParam → KILLED

611

1.1
Location : withIsCheckingAllHeaderParam
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllHeaderParam → KILLED

616

1.1
Location : withIsCheckingAllBase64Param
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllBase64Param → NO_COVERAGE

621

1.1
Location : withIsCheckingAllJsonParam
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllJsonParam → KILLED

626

1.1
Location : withIsCheckingAllCookieParam
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllCookieParam → KILLED

631

1.1
Location : withIsCheckingAllSoapParam
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsCheckingAllSoapParam → KILLED

636

1.1
Location : withIsParsingForm
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsParsingForm → KILLED

641

1.1
Location : withIsNotTestingConnection
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsNotTestingConnection → KILLED

646

1.1
Location : withIsNotProcessingCookies
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsNotProcessingCookies → KILLED

651

1.1
Location : withIsProcessingCsrf
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsProcessingCsrf → KILLED

656

1.1
Location : withIsTamperingBase64
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingBase64 → KILLED

661

1.1
Location : withIsTamperingFunctionComment
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingFunctionComment → KILLED

666

1.1
Location : withIsTamperingVersionComment
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingVersionComment → KILLED

671

1.1
Location : withIsTamperingEqualToLike
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingEqualToLike → KILLED

676

1.1
Location : withIsTamperingRandomCase
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingRandomCase → KILLED

681

1.1
Location : withIsTamperingEval
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingEval → KILLED

686

1.1
Location : withIsTamperingSpaceToMultilineComment
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingSpaceToMultilineComment → KILLED

691

1.1
Location : withIsTamperingSpaceToDashComment
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingSpaceToDashComment → KILLED

696

1.1
Location : withIsTamperingSpaceToSharpComment
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsTamperingSpaceToSharpComment → KILLED

701

1.1
Location : withCsrfUserTag
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withCsrfUserTag → SURVIVED

706

1.1
Location : withCsrfUserTagOutput
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withCsrfUserTagOutput → NO_COVERAGE

711

1.1
Location : withIsCsrfUserTag
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsCsrfUserTag → KILLED

716

1.1
Location : withIsLimitingThreads
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withIsLimitingThreads → KILLED

721

1.1
Location : withIsConnectionTimeout
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsConnectionTimeout → NO_COVERAGE

726

1.1
Location : withIsLimitingSleepTimeStrategy
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsLimitingSleepTimeStrategy → NO_COVERAGE

731

1.1
Location : withCountLimitingThreads
Killed by : PreferencesUtilSpock.[engine:spock]/[spec:PreferencesUtilSpock]/[feature:$spock_feature_0_1]/[iteration:0]
replaced return value with null for com/jsql/util/PreferencesUtil::withCountLimitingThreads → KILLED

736

1.1
Location : withCountConnectionTimeout
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withCountConnectionTimeout → NO_COVERAGE

741

1.1
Location : withCountSleepTimeStrategy
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withCountSleepTimeStrategy → NO_COVERAGE

746

1.1
Location : withIsZipStrategy
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsZipStrategy → NO_COVERAGE

751

1.1
Location : withIsDefaultStrategy
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsDefaultStrategy → NO_COVERAGE

756

1.1
Location : withIsDiosStrategy
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsDiosStrategy → NO_COVERAGE

761

1.1
Location : withIsPerfIndexDisabled
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsPerfIndexDisabled → NO_COVERAGE

766

1.1
Location : withIsUrlEncodingDisabled
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsUrlEncodingDisabled → NO_COVERAGE

771

1.1
Location : withIsUrlRandomSuffixDisabled
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsUrlRandomSuffixDisabled → NO_COVERAGE

776

1.1
Location : withIsLimitingNormalIndex
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsLimitingNormalIndex → NO_COVERAGE

781

1.1
Location : withCountNormalIndex
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withCountNormalIndex → NO_COVERAGE

786

1.1
Location : withIsStrategyTimeDisabled
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsStrategyTimeDisabled → NO_COVERAGE

791

1.1
Location : withIsStrategyBlindDisabled
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsStrategyBlindDisabled → NO_COVERAGE

796

1.1
Location : withIsStrategyMultibitDisabled
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsStrategyMultibitDisabled → NO_COVERAGE

801

1.1
Location : withIsStrategyStackedDisabled
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsStrategyStackedDisabled → NO_COVERAGE

806

1.1
Location : withIsStrategyErrorDisabled
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsStrategyErrorDisabled → NO_COVERAGE

811

1.1
Location : withIsStrategyNormalDisabled
Killed by : none
replaced return value with null for com/jsql/util/PreferencesUtil::withIsStrategyNormalDisabled → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 1.16.1