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

org.zaproxy.zap.extension.httppanel.HttpPanelRequest 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 2011 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.extension.httppanel;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JComboBox;
import org.parosproxy.paros.Constant;
import org.parosproxy.paros.model.Model;
import org.parosproxy.paros.network.HttpMessage;
import org.parosproxy.paros.network.HttpRequestHeader;
import org.parosproxy.paros.view.View;
import org.zaproxy.zap.extension.httppanel.component.split.request.RequestSplitComponent;
import org.zaproxy.zap.view.HttpPanelManager;

public class HttpPanelRequest extends HttpPanel {
    private static final long serialVersionUID = 1L;

    protected JComboBox comboChangeMethod;

    private static final String REQUEST_KEY = "request.";

    public HttpPanelRequest(boolean isEditable, String configurationKey) {
        super(isEditable, configurationKey + REQUEST_KEY);

        HttpPanelManager.getInstance().addRequestPanel(this);
        this.setHideable(false);
    }

    @Override
    protected void initComponents() {
        addComponent(
                new RequestSplitComponent<>(), Model.getSingleton().getOptionsParam().getConfig());
    }

    @Override
    protected void initSpecial() {
        if (isEditable()) {
            initComboChangeMethod();
        }
    }

    @Override
    public void setEnableViewSelect(boolean enableViewSelect) {
        super.setEnableViewSelect(enableViewSelect);

        if (isEditable()) {
            initComboChangeMethod();
            comboChangeMethod.setEnabled(enableViewSelect);
        }
    }

    protected void initComboChangeMethod() {
        if (comboChangeMethod == null) {
            comboChangeMethod = new JComboBox<>();
            comboChangeMethod.setEditable(false);
            comboChangeMethod.setMaximumRowCount(9); // Prevents scrollbar
            comboChangeMethod.addItem(Constant.messages.getString("manReq.pullDown.method"));
            comboChangeMethod.addItem(HttpRequestHeader.CONNECT);
            comboChangeMethod.addItem(HttpRequestHeader.DELETE);
            comboChangeMethod.addItem(HttpRequestHeader.GET);
            comboChangeMethod.addItem(HttpRequestHeader.HEAD);
            comboChangeMethod.addItem(HttpRequestHeader.OPTIONS);
            comboChangeMethod.addItem(HttpRequestHeader.POST);
            comboChangeMethod.addItem(HttpRequestHeader.PUT);
            comboChangeMethod.addItem(HttpRequestHeader.TRACE);
            comboChangeMethod.addActionListener(
                    new ActionListener() {
                        @Override
                        public void actionPerformed(ActionEvent e) {
                            if (message == null) {
                                comboChangeMethod.setSelectedIndex(0);
                                return;
                            }
                            if (comboChangeMethod.getSelectedIndex() > 0) {

                                if (message instanceof HttpMessage) {
                                    try {
                                        saveData();
                                    } catch (InvalidMessageDataException e1) {
                                        comboChangeMethod.setSelectedIndex(0);

                                        StringBuilder warnMessage = new StringBuilder(150);
                                        warnMessage.append(
                                                Constant.messages.getString(
                                                        "manReq.pullDown.method.warn"));

                                        String exceptionMessage = e1.getLocalizedMessage();
                                        if (exceptionMessage != null
                                                && !exceptionMessage.isEmpty()) {
                                            warnMessage.append('\n').append(exceptionMessage);
                                        }
                                        View.getSingleton()
                                                .showWarningDialog(warnMessage.toString());
                                        return;
                                    }
                                    ((HttpMessage) message)
                                            .mutateHttpMethod(
                                                    (String) comboChangeMethod.getSelectedItem());
                                    comboChangeMethod.setSelectedIndex(0);
                                    updateContent();
                                }
                            }
                        }
                    });

            addOptions(comboChangeMethod, OptionsLocation.BEGIN);
            comboChangeMethod.setEnabled(false);
        }
    }

    @Override
    public void setEditable(boolean editable) {
        super.setEditable(editable);

        if (editable) {
            initComboChangeMethod();
            comboChangeMethod.setEnabled(true);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy