org.zaproxy.zap.extension.history.PopupMenuJumpTo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zap Show documentation
Show all versions of zap Show documentation
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.
/*
* Zed Attack Proxy (ZAP) and its related class files.
*
* ZAP is an HTTP/HTTPS proxy for assessing web application security.
*
* Copyright 2023 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.history;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import java.util.Collections;
import java.util.List;
import javax.swing.AbstractAction;
import javax.swing.JComponent;
import javax.swing.JOptionPane;
import javax.swing.KeyStroke;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.parosproxy.paros.Constant;
import org.parosproxy.paros.extension.history.ExtensionHistory;
import org.parosproxy.paros.model.HistoryReference;
import org.parosproxy.paros.view.View;
import org.zaproxy.zap.utils.ZapNumberSpinner;
import org.zaproxy.zap.view.popup.PopupMenuItemHistoryReferenceContainer;
@SuppressWarnings("serial")
public class PopupMenuJumpTo extends PopupMenuItemHistoryReferenceContainer {
private static final Logger LOGGER = LogManager.getLogger(PopupMenuJumpTo.class);
private static final List DISPLAYED_HISTORY_TYPES =
List.of(
HistoryReference.TYPE_PROXIED,
HistoryReference.TYPE_ZAP_USER,
HistoryReference.TYPE_PROXY_CONNECT);
private static final KeyStroke JUMP_KEY_STROKE =
KeyStroke.getKeyStroke(KeyEvent.VK_J, KeyEvent.ALT_DOWN_MASK | KeyEvent.CTRL_DOWN_MASK);
private static ZapNumberSpinner idSpinner = new ZapNumberSpinner(1, 1, Integer.MAX_VALUE);
private final ExtensionHistory extension;
public PopupMenuJumpTo(ExtensionHistory extension) {
super(Constant.messages.getString("history.jumpto.popup.label"));
this.extension = extension;
String jumpTo = "zap.history.jumpto";
View.getSingleton()
.getWorkbench()
.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW)
.put(JUMP_KEY_STROKE, jumpTo);
View.getSingleton()
.getWorkbench()
.getActionMap()
.put(
jumpTo,
new AbstractAction() {
@Override
public void actionPerformed(ActionEvent e) {
jump();
}
});
this.setAccelerator(
View.getSingleton()
.getMenuShortcutKeyStroke(
JUMP_KEY_STROKE.getKeyCode(),
JUMP_KEY_STROKE.getModifiers(),
false));
}
@Override
protected boolean isButtonEnabledForHistoryReference(HistoryReference historyReference) {
return DISPLAYED_HISTORY_TYPES.contains(historyReference.getHistoryType());
}
@Override
public void performAction(HistoryReference href) {
jump();
}
private void jump() {
int option =
JOptionPane.showOptionDialog(
null,
new Object[] {
Constant.messages.getString("history.jumpto.message"), idSpinner
},
Constant.messages.getString("history.jumpto.title"),
JOptionPane.OK_CANCEL_OPTION,
JOptionPane.QUESTION_MESSAGE,
null,
null,
null);
if (option == JOptionPane.OK_OPTION) {
int historyId = idSpinner.getValue();
if (extension.getHistoryReferencesTable().getModel().getEntryRowIndex(historyId)
!= -1) {
extension.showInHistory(extension.getHistoryReference(historyId));
return;
}
List list = extension.getHistoryIds();
if (list.isEmpty()) {
return;
}
int nearestIdx = Math.abs(Collections.binarySearch(list, historyId)) - 1;
if (nearestIdx >= list.size()) {
nearestIdx = list.size() - 1;
}
HistoryReference nearestRef = extension.getHistoryReference(list.get(nearestIdx));
extension.showInHistory(nearestRef);
LOGGER.debug(
"Jumping to nearest ID: {}, after request for: {}",
nearestRef.getHistoryId(),
historyId);
}
}
@Override
public boolean isSafe() {
return true;
}
}