All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zaproxy.zap.view.table.HistoryReferencesTable Maven / Gradle / Ivy

Go to download

The Zed Attack Proxy (ZAP) is an easy to use integrated penetration testing tool for finding vulnerabilities in web applications. It is designed to be used by people with a wide range of security experience and as such is ideal for developers and functional testers who are new to penetration testing. ZAP provides automated scanners as well as a set of tools that allow you to find security vulnerabilities manually.

There is a newer version: 2.15.0
Show newest version
/*
 * Zed Attack Proxy (ZAP) and its related class files.
 *
 * ZAP is an HTTP/HTTPS proxy for assessing web application security.
 *
 * Copyright 2014 The ZAP Development Team
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.zaproxy.zap.view.table;

import java.awt.Component;
import java.awt.event.ActionEvent;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import javax.swing.Action;
import javax.swing.Icon;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JPopupMenu;
import javax.swing.ListSelectionModel;
import javax.swing.SortOrder;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
import javax.swing.table.TableModel;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.jdesktop.swingx.JXTable;
import org.jdesktop.swingx.action.AbstractActionExt;
import org.jdesktop.swingx.renderer.DefaultTableRenderer;
import org.jdesktop.swingx.renderer.IconValues;
import org.jdesktop.swingx.renderer.MappedValue;
import org.jdesktop.swingx.renderer.StringValues;
import org.jdesktop.swingx.table.ColumnFactory;
import org.jdesktop.swingx.table.TableColumnExt;
import org.parosproxy.paros.Constant;
import org.parosproxy.paros.db.DatabaseException;
import org.parosproxy.paros.model.HistoryReference;
import org.parosproxy.paros.network.HttpMalformedHeaderException;
import org.parosproxy.paros.network.HttpMessage;
import org.parosproxy.paros.view.View;
import org.zaproxy.zap.utils.PagingTableModel;
import org.zaproxy.zap.view.HrefTypeInfo;
import org.zaproxy.zap.view.ZapTable;
import org.zaproxy.zap.view.messagecontainer.http.DefaultSelectableHistoryReferencesContainer;
import org.zaproxy.zap.view.messagecontainer.http.SelectableHistoryReferencesContainer;
import org.zaproxy.zap.view.renderer.DateFormatStringValue;
import org.zaproxy.zap.view.renderer.SizeBytesStringValue;
import org.zaproxy.zap.view.renderer.TimeDurationStringValue;
import org.zaproxy.zap.view.table.HistoryReferencesTableModel.Column;
import org.zaproxy.zap.view.table.decorator.AlertRiskTableCellItemIconHighlighter;
import org.zaproxy.zap.view.table.decorator.HrefTypeInfoIconHighlighter;
import org.zaproxy.zap.view.table.decorator.NoteTableCellItemIconHighlighter;

/**
 * A table specialised in showing data from {@code HistoryReference}s obtained from {@code
 * HistoryReferencesTableModel}s.
 */
@SuppressWarnings("serial")
public class HistoryReferencesTable extends ZapTable {

    private static final long serialVersionUID = -6988769961088738602L;

    private static final Logger LOGGER = LogManager.getLogger(HistoryReferencesTable.class);

    private static final int MAXIMUM_ROWS_FOR_TABLE_CONFIG = 75;

    private final DisplayMessageOnSelectionValueChange defaultSelectionListener;
    private int maximumRowsForTableConfig;

    public HistoryReferencesTable() {
        this(new DefaultHistoryReferencesTableModel());
    }

    public HistoryReferencesTable(final Column[] columns) {
        this(new DefaultHistoryReferencesTableModel(columns));
    }

    public HistoryReferencesTable(HistoryReferencesTableModel model) {
        this(model, true);
    }

    public HistoryReferencesTable(
            HistoryReferencesTableModel model, boolean useDefaultSelectionListener) {
        super(model);

        maximumRowsForTableConfig = MAXIMUM_ROWS_FOR_TABLE_CONFIG;

        setName("GenericHistoryReferenceTable");

        installColumnFactory();

        setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);

        setSortOrderCycle(SortOrder.ASCENDING, SortOrder.DESCENDING, SortOrder.UNSORTED);

        setColumnSelectionAllowed(false);
        setCellSelectionEnabled(false);
        setRowSelectionAllowed(true);

        if (useDefaultSelectionListener) {
            defaultSelectionListener = new DisplayMessageOnSelectionValueChange();
            getSelectionModel().addListSelectionListener(defaultSelectionListener);
        } else {
            defaultSelectionListener = null;
        }

        setComponentPopupMenu(new CustomPopupMenu());
    }

    @Override
    protected void createDefaultRenderers() {
        super.createDefaultRenderers();

        setDefaultRenderer(Date.class, new DefaultTableRenderer(new DateFormatStringValue()));
    }

    protected void installColumnFactory() {
        setColumnFactory(new HistoryReferencesTableColumnFactory());
        createDefaultColumnsFromModel();
        initializeColumnWidths();
    }

    protected void displayMessage(final HttpMessage msg) {
        View.getSingleton().displayMessage(msg);
    }

    /**
     * Gets the default selection listener, responsible to display the selected message in the
     * Request/Response tabs.
     *
     * @return the default selection listener, or {@code null} if not in use.
     * @since 2.9.0
     */
    protected DisplayMessageOnSelectionValueChange getDefaultSelectionListener() {
        return defaultSelectionListener;
    }

    public HistoryReference getSelectedHistoryReference() {
        final int selectedRow = getSelectedRow();
        if (selectedRow != -1) {
            return getHistoryReferenceAtViewRow(selectedRow);
        }
        return null;
    }

    public List getSelectedHistoryReferences() {
        final int[] rows = this.getSelectedRows();
        if (rows.length == 0) {
            return Collections.emptyList();
        }

        final List hrefList = new ArrayList<>(rows.length);
        for (int row : rows) {
            HistoryReference hRef = getHistoryReferenceAtViewRow(row);
            if (hRef != null) {
                hrefList.add(hRef);
            }
        }
        return hrefList;
    }

    public List getAllHistoryReferences() {
        int rowCount = this.getRowCount();
        if (rowCount == 0) {
            return Collections.emptyList();
        }

        final List hrefList = new ArrayList<>(rowCount);
        for (int row = 0; row < rowCount; row++) {
            HistoryReference hRef = getHistoryReferenceAtViewRow(row);
            if (hRef != null) {
                hrefList.add(hRef);
            }
        }
        return hrefList;
    }

    protected HistoryReference getHistoryReferenceAtViewRow(final int row) {
        HistoryReferencesTableEntry entry = getModel().getEntry(convertRowIndexToModel(row));
        if (entry != null) {
            return entry.getHistoryReference();
        }
        return null;
    }

    /**
     * {@inheritDoc}
     *
     * 

Overridden to only accept models of type {@code HistoryReferencesTableModel}. If the given * model extends from {@code PagingTableModel} the maximum page size will be used to set the * maximum rows for table configuration. * * @throws IllegalArgumentException if the {@code dataModel} is not a {@code * HistoryReferencesTableModel}. * @see PagingTableModel * @see PagingTableModel#getMaxPageSize() * @see #setMaximumRowsForTableConfiguration(int) */ @Override public void setModel(final TableModel dataModel) { if (!(dataModel instanceof HistoryReferencesTableModel)) { throw new IllegalArgumentException( "Parameter dataModel must be a subclass of HistoryReferencesTableModel."); } if (dataModel instanceof PagingTableModel) { setMaximumRowsForTableConfiguration(((PagingTableModel) dataModel).getMaxPageSize()); } super.setModel(dataModel); } @Override public HistoryReferencesTableModel getModel() { return (HistoryReferencesTableModel) super.getModel(); } /** * Sets the maximum rows that should be taken into account when configuring the table (for * example, packing the columns). * * @param maximumRows the maximum rows that should be taken into account when configuring the * table * @see #packAll() */ public void setMaximumRowsForTableConfiguration(int maximumRows) { this.maximumRowsForTableConfig = maximumRows; } /** * Returns the maximum rows that will be taken into account when configuring the table (for * example, packing the columns). * * @return the maximum rows that will be taken into account when configuring the table */ public int getMaximumRowsForTableConfiguration() { return maximumRowsForTableConfig; } public void selectHistoryReference(final int historyReferenceId) { final int modelRowIndex = getModel().getEntryRowIndex(historyReferenceId); if (modelRowIndex > -1) { final int viewRowIndex = convertRowIndexToView(modelRowIndex); this.getSelectionModel().setSelectionInterval(viewRowIndex, viewRowIndex); this.scrollRowToVisible(viewRowIndex); } } protected class DisplayMessageOnSelectionValueChange implements ListSelectionListener { private boolean enabled; public DisplayMessageOnSelectionValueChange() { enabled = true; } /** * Sets whether or not the selected message should be displayed. * * @param enabled {@code true} if the selected message should be displayed, {@code false} * otherwise. * @since 2.9.0 */ public void setEnabled(boolean enabled) { this.enabled = enabled; } @Override public void valueChanged(final ListSelectionEvent evt) { if (!enabled || evt.getValueIsAdjusting()) { return; } HistoryReference hRef = getSelectedHistoryReference(); if (hRef == null) { return; } boolean focusOwner = isFocusOwner(); try { displayMessage(hRef.getHttpMessage()); } catch (HttpMalformedHeaderException | DatabaseException e) { LOGGER.error(e.getMessage(), e); } finally { if (focusOwner) { requestFocusInWindow(); } } } } protected class CustomPopupMenu extends JPopupMenu { private static final long serialVersionUID = 1L; @Override public void show(Component invoker, int x, int y) { SelectableHistoryReferencesContainer messageContainer = new DefaultSelectableHistoryReferencesContainer( HistoryReferencesTable.this.getName(), HistoryReferencesTable.this, Collections.emptyList(), getSelectedHistoryReferences()); View.getSingleton().getPopupMenu().show(messageContainer, x, y); } /** * Returns the selected history references. * *

Defaults to call {@code HistoryReferencesTable#getSelectedHistoryReferences()} * * @return the selected history references. * @see HistoryReferencesTable#getSelectedHistoryReferences() */ protected List getSelectedHistoryReferences() { return HistoryReferencesTable.this.getSelectedHistoryReferences(); } } protected class HistoryReferencesTableColumnFactory extends ColumnFactory { private SizeBytesStringValue sizeBytesStringValue; public HistoryReferencesTableColumnFactory() {} @Override protected int getRowCount(final JXTable table) { final int rowCount = super.getRowCount(table); final int maxRowCount = ((HistoryReferencesTable) table).getMaximumRowsForTableConfiguration(); if (maxRowCount > 0 && rowCount > maxRowCount) { return maxRowCount; } return rowCount; } @Override public void configureTableColumn(final TableModel model, final TableColumnExt columnExt) { super.configureTableColumn(model, columnExt); HistoryReferencesTableModel hRefModel = (HistoryReferencesTableModel) model; columnExt.setPrototypeValue(hRefModel.getPrototypeValue(columnExt.getModelIndex())); final int highestAlertColumnIndex = hRefModel.getColumnIndex(Column.HIGHEST_ALERT); if (highestAlertColumnIndex != -1) { if (columnExt.getModelIndex() == highestAlertColumnIndex && model.getColumnClass(highestAlertColumnIndex) == AlertRiskTableCellItem.class) { columnExt.setHighlighters( new AlertRiskTableCellItemIconHighlighter(highestAlertColumnIndex)); } } final int rttColumnIndex = hRefModel.getColumnIndex(Column.RTT); if (rttColumnIndex != -1) { if (columnExt.getModelIndex() == rttColumnIndex && TimeDurationStringValue.isTargetClass( model.getColumnClass(rttColumnIndex))) { columnExt.setCellRenderer( new DefaultTableRenderer(new TimeDurationStringValue())); } } final int noteColumnIndex = hRefModel.getColumnIndex(Column.NOTE); if (noteColumnIndex != -1) { if (columnExt.getModelIndex() == noteColumnIndex && model.getColumnClass(noteColumnIndex) == Boolean.class) { columnExt.setCellRenderer( new DefaultTableRenderer( new MappedValue(StringValues.EMPTY, IconValues.NONE), JLabel.CENTER)); columnExt.setHighlighters( new NoteTableCellItemIconHighlighter(noteColumnIndex)); } } installSizeBytesRenderer( columnExt, hRefModel.getColumnIndex(Column.SIZE_MESSAGE), model); installSizeBytesRenderer( columnExt, hRefModel.getColumnIndex(Column.SIZE_REQUEST_HEADER), model); installSizeBytesRenderer( columnExt, hRefModel.getColumnIndex(Column.SIZE_REQUEST_BODY), model); installSizeBytesRenderer( columnExt, hRefModel.getColumnIndex(Column.SIZE_RESPONSE_HEADER), model); installSizeBytesRenderer( columnExt, hRefModel.getColumnIndex(Column.SIZE_RESPONSE_BODY), model); final int hrefTypeInfoColumnIndex = hRefModel.getColumnIndex(Column.HREF_TYPE_INFO); if (hrefTypeInfoColumnIndex != -1) { if (columnExt.getModelIndex() == hrefTypeInfoColumnIndex && model.getColumnClass(hrefTypeInfoColumnIndex) == HrefTypeInfo.class) { columnExt.setHighlighters( new HrefTypeInfoIconHighlighter(hrefTypeInfoColumnIndex)); } } } protected void installSizeBytesRenderer( TableColumnExt columnExt, int columnIndex, TableModel model) { if (columnIndex != -1) { if (columnExt.getModelIndex() == columnIndex && SizeBytesStringValue.isTargetClass(model.getColumnClass(columnIndex))) { columnExt.setCellRenderer(new DefaultTableRenderer(getSizeBytesStringValue())); } } } protected SizeBytesStringValue getSizeBytesStringValue() { if (sizeBytesStringValue == null) { sizeBytesStringValue = new SizeBytesStringValue(); JComponent columnControl = getColumnControl(); if (columnControl instanceof ZapColumnControlButton) { ZapColumnControlButton zapColumnControl = (ZapColumnControlButton) columnControl; zapColumnControl.addAction( new ChangeByteUnitAction( HistoryReferencesTable.this, sizeBytesStringValue)); zapColumnControl.populatePopup(); } } return sizeBytesStringValue; } } protected static class ChangeByteUnitAction extends AbstractActionExt { private static final long serialVersionUID = 5518182106427836717L; private final JXTable table; private final SizeBytesStringValue sizeBytesStringValue; public ChangeByteUnitAction(JXTable table, SizeBytesStringValue sizeBytesStringValue) { super(Constant.messages.getString("view.table.useJustBytes.label")); putValue( Action.SHORT_DESCRIPTION, Constant.messages.getString("view.table.useJustBytes.tooltip")); this.table = table; this.sizeBytesStringValue = sizeBytesStringValue; this.putValue(SELECTED_KEY, sizeBytesStringValue.isUseJustBytesUnit()); } public ChangeByteUnitAction( String label, Icon icon, JXTable table, SizeBytesStringValue sizeBytesStringValue) { super(label, icon); this.table = table; this.sizeBytesStringValue = sizeBytesStringValue; } @Override public boolean isStateAction() { return true; } @Override public void actionPerformed(ActionEvent e) { sizeBytesStringValue.setUseJustBytesUnit(!sizeBytesStringValue.isUseJustBytesUnit()); table.repaint(); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy