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

org.parosproxy.paros.extension.option.OptionsJvmPanel 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.

The newest version!
/*
 * Zed Attack Proxy (ZAP) and its related class files.
 *
 * ZAP is an HTTP/HTTPS proxy for assessing web application security.
 *
 * Copyright 2015 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.parosproxy.paros.extension.option;

import java.awt.BorderLayout;
import java.awt.GridBagLayout;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JSeparator;
import javax.swing.SwingConstants;
import org.parosproxy.paros.Constant;
import org.parosproxy.paros.view.AbstractParamPanel;
import org.parosproxy.paros.view.View;
import org.zaproxy.zap.utils.ZapLabel;
import org.zaproxy.zap.utils.ZapTextField;
import org.zaproxy.zap.view.LayoutHelper;
import org.zaproxy.zap.view.renderer.SizeBytesStringValue;

/**
 * The JVM options panel.
 *
 * 

These options are used by zap.sh and zap.bat when starting ZAP */ public class OptionsJvmPanel extends AbstractParamPanel { private static final long serialVersionUID = -7541236934312940852L; private static final Path JVM_PROPERTIES_FILE = Paths.get(Constant.getDefaultHomeDirectory(false), ".ZAP_JVM.properties"); /** The name of the options panel. */ private static final String NAME = Constant.messages.getString("jvm.options.title"); private static final SizeBytesStringValue sbsv = new SizeBytesStringValue(false); /** The text field for the JVM options. */ private ZapTextField jvmOptionsField = null; private ZapLabel sizeMemoryLabel = null; private ZapLabel usedMemoryLabel = null; private ZapLabel maxMemoryLabel = null; public OptionsJvmPanel() { super(); setName(NAME); setLayout(new BorderLayout()); JPanel panel = new JPanel(); panel.setLayout(new GridBagLayout()); int row = 0; JLabel jvmOptionsLabel = new JLabel(Constant.messages.getString("jvm.options.label.jvmoptions")); jvmOptionsLabel.setLabelFor(getJvmOptionsField()); panel.add(jvmOptionsLabel, LayoutHelper.getGBC(0, row, 1, 2.0)); panel.add(getJvmOptionsField(), LayoutHelper.getGBC(1, row, 1, 8.0)); panel.add( new JLabel(Constant.messages.getString("jvm.options.warning.restart")), LayoutHelper.getGBC(0, ++row, 2, 1.0)); panel.add( new JSeparator(SwingConstants.HORIZONTAL), LayoutHelper.getGBC(0, ++row, 2, 0.0D, 0.0D)); panel.add(getSizeMemoryLabel(), LayoutHelper.getGBC(0, ++row, 2, 1.0)); panel.add(getUsedMemoryLabel(), LayoutHelper.getGBC(0, ++row, 2, 1.0)); panel.add(getMaxMemoryLabel(), LayoutHelper.getGBC(0, ++row, 2, 1.0)); panel.add(new JLabel(), LayoutHelper.getGBC(0, 10, 1, 0.5D, 1.0D)); // Spacer this.add(panel); } private ZapTextField getJvmOptionsField() { if (jvmOptionsField == null) { jvmOptionsField = new ZapTextField(); } return jvmOptionsField; } private ZapLabel getSizeMemoryLabel() { if (sizeMemoryLabel == null) { sizeMemoryLabel = new ZapLabel(); } return sizeMemoryLabel; } private ZapLabel getUsedMemoryLabel() { if (usedMemoryLabel == null) { usedMemoryLabel = new ZapLabel(); } return usedMemoryLabel; } private ZapLabel getMaxMemoryLabel() { if (maxMemoryLabel == null) { maxMemoryLabel = new ZapLabel(); } return maxMemoryLabel; } private void updateMemoryLabel(ZapLabel labelToUpdate, String key, long value) { labelToUpdate.setText(Constant.messages.getString(key, sbsv.getString(value))); } @Override public void initParam(Object obj) { long size = Runtime.getRuntime().totalMemory(); // initParam happens before display of the panel so the values are appropriately set when // viewed updateMemoryLabel(getSizeMemoryLabel(), "jvm.options.memory.size", size); updateMemoryLabel( getUsedMemoryLabel(), "jvm.options.memory.used", size - Runtime.getRuntime().freeMemory()); updateMemoryLabel( getMaxMemoryLabel(), "jvm.options.memory.max", Runtime.getRuntime().maxMemory()); try { /* JVM properties are unusual in that they are held * in a separate file from the other options. * This is for various reasons, including the fact they are used * by the scripts rather than the java code. */ if (Files.exists(JVM_PROPERTIES_FILE)) { List lines = Files.readAllLines(JVM_PROPERTIES_FILE, StandardCharsets.UTF_8); if (lines.size() > 0) { getJvmOptionsField().setText(lines.get(0)); } } } catch (IOException e) { // Ignore } } @Override public void reset() { getJvmOptionsField().setText(""); saveJvmFile(); } @Override public void saveParam(Object obj) throws Exception { saveJvmFile(); } private void saveJvmFile() { try { String opts = getJvmOptionsField().getText(); if (opts.length() == 0) { // Delete the file so that the 'normal' defaults apply Files.deleteIfExists(JVM_PROPERTIES_FILE); } else { if (!JVM_PROPERTIES_FILE.getParent().toFile().exists()) { // Can happen if the user has only run the dev version not the release one JVM_PROPERTIES_FILE.getParent().toFile().mkdirs(); } // Replace the file contents, even if its just with whitespace Files.write(JVM_PROPERTIES_FILE, opts.getBytes(StandardCharsets.UTF_8)); } } catch (IOException e) { View.getSingleton() .showWarningDialog( this, Constant.messages.getString( "jvm.options.error.writing", JVM_PROPERTIES_FILE.toAbsolutePath(), e.getMessage())); } } @Override public String getHelpIndex() { return "ui.dialogs.options.jvm"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy