MarkErrorVulnerable.java

1
/*******************************************************************************
2
 * Copyhacked (H) 2012-2025.
3
 * This program and the accompanying materials
4
 * are made available under no term at all, use it like
5
 * you want, but share and discuss it
6
 * every time possible with every body.
7
 * 
8
 * Contributors:
9
 *      ron190 at ymail dot com - initial implementation
10
 ******************************************************************************/
11
package com.jsql.view.swing.interaction;
12
13
import com.jsql.model.bean.util.Header;
14
import com.jsql.view.interaction.InteractionCommand;
15
import com.jsql.view.swing.util.MediatorHelper;
16
17
import java.util.Map;
18
19
/**
20
 * Mark the injection as vulnerable to an error-based injection.
21
 */
22
public class MarkErrorVulnerable implements InteractionCommand {
23
    
24
    private final int indexMethodError;
25
    
26
    @SuppressWarnings("unchecked")
27
    public MarkErrorVulnerable(Object[] interactionParams) {
28
        Map<Header, Object> mapHeader = (Map<Header, Object>) interactionParams[0];
29
        this.indexMethodError = (int) mapHeader.get(Header.INDEX_ERROR_STRATEGY);
30
    }
31
32
    @Override
33
    public void execute() {
34 1 1. execute : removed call to com/jsql/view/swing/panel/address/PanelTrailingAddress::markErrorVulnerable → NO_COVERAGE
        MediatorHelper.panelAddressBar().getPanelTrailingAddress().markErrorVulnerable(this.indexMethodError);
35
    }
36
}

Mutations

34

1.1
Location : execute
Killed by : none
removed call to com/jsql/view/swing/panel/address/PanelTrailingAddress::markErrorVulnerable → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 1.19.1