mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-13 08:26:15 +00:00
341 lines
17 KiB
Java
341 lines
17 KiB
Java
/*
|
|
* Autopsy Forensic Browser
|
|
*
|
|
* Copyright 2013 Basis Technology Corp.
|
|
* Contact: carrier <at> sleuthkit <dot> org
|
|
*
|
|
* 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.sleuthkit.autopsy.hashdatabase;
|
|
|
|
import java.awt.Dimension;
|
|
import java.awt.Toolkit;
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.util.Arrays;
|
|
import java.util.logging.Level;
|
|
import org.sleuthkit.autopsy.coreutils.Logger;
|
|
import javax.swing.JFileChooser;
|
|
import javax.swing.JOptionPane;
|
|
import javax.swing.filechooser.FileNameExtensionFilter;
|
|
import org.sleuthkit.autopsy.hashdatabase.HashDb.DBType;
|
|
import org.sleuthkit.datamodel.SleuthkitJNI;
|
|
import org.sleuthkit.datamodel.TskException;
|
|
|
|
/**
|
|
* Creation is a different GUI class than importing
|
|
*/
|
|
final class HashDbCreateDatabaseDialog extends javax.swing.JDialog {
|
|
|
|
private JFileChooser fc;
|
|
|
|
private String databaseName;
|
|
private static final Logger logger = Logger.getLogger(HashDbCreateDatabaseDialog.class.getName());
|
|
/**
|
|
* Creates new form HashDbCreateDatabaseDialog
|
|
*/
|
|
HashDbCreateDatabaseDialog() {
|
|
super(new javax.swing.JFrame(), "Create Hash Database", true);
|
|
setResizable(false);
|
|
|
|
fc = new JFileChooser() {
|
|
@Override
|
|
public void approveSelection() {
|
|
File ftemp = getSelectedFile();
|
|
if (ftemp.exists()) {
|
|
int r = JOptionPane.showConfirmDialog(this, "A file with this name already exists. Please enter a new filename.", "Existing File", JOptionPane.OK_CANCEL_OPTION);
|
|
if (r == JOptionPane.CANCEL_OPTION) {
|
|
cancelSelection();
|
|
}
|
|
return;
|
|
}
|
|
super.approveSelection();
|
|
}
|
|
};
|
|
|
|
initComponents();
|
|
customizeComponents();
|
|
}
|
|
|
|
void customizeComponents() {
|
|
fc.setDragEnabled(false);
|
|
fc.setFileSelectionMode(JFileChooser.FILES_ONLY);
|
|
String[] EXTENSION = new String[] { "txt", "kdb", "idx", "hash", "Hash", "hsh"};
|
|
FileNameExtensionFilter filter = new FileNameExtensionFilter(
|
|
"Hash Database File", EXTENSION);
|
|
fc.setFileFilter(filter);
|
|
fc.setMultiSelectionEnabled(false);
|
|
}
|
|
|
|
String display() {
|
|
Dimension screenDimension = Toolkit.getDefaultToolkit().getScreenSize();
|
|
|
|
// set the popUp window / JFrame
|
|
int w = this.getSize().width;
|
|
int h = this.getSize().height;
|
|
|
|
// set the location of the popUp Window on the center of the screen
|
|
setLocation((screenDimension.width - w) / 2, (screenDimension.height - h) / 2);
|
|
|
|
this.setVisible(true);
|
|
return databaseName;
|
|
}
|
|
|
|
/**
|
|
* This method is called from within the constructor to initialize the form.
|
|
* WARNING: Do NOT modify this code. The content of this method is always
|
|
* regenerated by the Form Editor.
|
|
*/
|
|
@SuppressWarnings("unchecked")
|
|
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
|
|
private void initComponents() {
|
|
|
|
buttonGroup1 = new javax.swing.ButtonGroup();
|
|
okButton = new javax.swing.JButton();
|
|
cancelButton = new javax.swing.JButton();
|
|
databasePathTextField = new javax.swing.JTextField();
|
|
browseButton = new javax.swing.JButton();
|
|
nsrlRadioButton = new javax.swing.JRadioButton();
|
|
knownBadRadioButton = new javax.swing.JRadioButton();
|
|
jLabel1 = new javax.swing.JLabel();
|
|
databaseNameTextField = new javax.swing.JTextField();
|
|
jLabel2 = new javax.swing.JLabel();
|
|
useForIngestCheckbox = new javax.swing.JCheckBox();
|
|
sendInboxMessagesCheckbox = new javax.swing.JCheckBox();
|
|
|
|
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
|
|
|
|
org.openide.awt.Mnemonics.setLocalizedText(okButton, org.openide.util.NbBundle.getMessage(HashDbCreateDatabaseDialog.class, "HashDbCreateDatabaseDialog.okButton.text")); // NOI18N
|
|
okButton.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
okButtonActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
org.openide.awt.Mnemonics.setLocalizedText(cancelButton, org.openide.util.NbBundle.getMessage(HashDbCreateDatabaseDialog.class, "HashDbCreateDatabaseDialog.cancelButton.text")); // NOI18N
|
|
cancelButton.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
cancelButtonActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
databasePathTextField.setText(org.openide.util.NbBundle.getMessage(HashDbCreateDatabaseDialog.class, "HashDbCreateDatabaseDialog.databasePathTextField.text")); // NOI18N
|
|
|
|
org.openide.awt.Mnemonics.setLocalizedText(browseButton, org.openide.util.NbBundle.getMessage(HashDbCreateDatabaseDialog.class, "HashDbCreateDatabaseDialog.browseButton.text")); // NOI18N
|
|
browseButton.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
browseButtonActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
buttonGroup1.add(nsrlRadioButton);
|
|
org.openide.awt.Mnemonics.setLocalizedText(nsrlRadioButton, org.openide.util.NbBundle.getMessage(HashDbCreateDatabaseDialog.class, "HashDbCreateDatabaseDialog.nsrlRadioButton.text")); // NOI18N
|
|
nsrlRadioButton.setEnabled(false);
|
|
nsrlRadioButton.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
nsrlRadioButtonActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
buttonGroup1.add(knownBadRadioButton);
|
|
knownBadRadioButton.setSelected(true);
|
|
org.openide.awt.Mnemonics.setLocalizedText(knownBadRadioButton, org.openide.util.NbBundle.getMessage(HashDbCreateDatabaseDialog.class, "HashDbCreateDatabaseDialog.knownBadRadioButton.text")); // NOI18N
|
|
knownBadRadioButton.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
knownBadRadioButtonActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
org.openide.awt.Mnemonics.setLocalizedText(jLabel1, org.openide.util.NbBundle.getMessage(HashDbCreateDatabaseDialog.class, "HashDbCreateDatabaseDialog.jLabel1.text")); // NOI18N
|
|
|
|
databaseNameTextField.setText(org.openide.util.NbBundle.getMessage(HashDbCreateDatabaseDialog.class, "HashDbCreateDatabaseDialog.databaseNameTextField.text")); // NOI18N
|
|
|
|
org.openide.awt.Mnemonics.setLocalizedText(jLabel2, org.openide.util.NbBundle.getMessage(HashDbCreateDatabaseDialog.class, "HashDbCreateDatabaseDialog.jLabel2.text")); // NOI18N
|
|
|
|
useForIngestCheckbox.setSelected(true);
|
|
org.openide.awt.Mnemonics.setLocalizedText(useForIngestCheckbox, org.openide.util.NbBundle.getMessage(HashDbCreateDatabaseDialog.class, "HashDbCreateDatabaseDialog.useForIngestCheckbox.text")); // NOI18N
|
|
useForIngestCheckbox.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
useForIngestCheckboxActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
sendInboxMessagesCheckbox.setSelected(true);
|
|
org.openide.awt.Mnemonics.setLocalizedText(sendInboxMessagesCheckbox, org.openide.util.NbBundle.getMessage(HashDbCreateDatabaseDialog.class, "HashDbCreateDatabaseDialog.sendInboxMessagesCheckbox.text")); // NOI18N
|
|
|
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
|
|
getContentPane().setLayout(layout);
|
|
layout.setHorizontalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addContainerGap()
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addGap(0, 0, Short.MAX_VALUE)
|
|
.addComponent(okButton)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(cancelButton))
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(databasePathTextField)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(browseButton))
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(jLabel1)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(databaseNameTextField))
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(jLabel2)
|
|
.addGap(0, 0, Short.MAX_VALUE)))
|
|
.addContainerGap())
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addGap(10, 10, 10)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addComponent(knownBadRadioButton)
|
|
.addComponent(nsrlRadioButton))
|
|
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addComponent(useForIngestCheckbox)
|
|
.addComponent(sendInboxMessagesCheckbox))
|
|
.addGap(0, 135, Short.MAX_VALUE))))
|
|
);
|
|
layout.setVerticalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
|
.addContainerGap()
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
.addComponent(databasePathTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
.addComponent(browseButton))
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
.addComponent(jLabel1)
|
|
.addComponent(databaseNameTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(jLabel2)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(nsrlRadioButton)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(knownBadRadioButton)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
|
.addComponent(useForIngestCheckbox)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(sendInboxMessagesCheckbox)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
.addComponent(okButton)
|
|
.addComponent(cancelButton))
|
|
.addContainerGap())
|
|
);
|
|
|
|
pack();
|
|
}// </editor-fold>//GEN-END:initComponents
|
|
|
|
private void browseButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_browseButtonActionPerformed
|
|
String oldText = databasePathTextField.getText();
|
|
// set the current directory of the FileChooser if the databasePath Field is valid
|
|
File currentDir = new File(oldText);
|
|
if (currentDir.exists()) {
|
|
fc.setCurrentDirectory(currentDir);
|
|
}
|
|
int retval = fc.showSaveDialog(this);
|
|
if (retval == JFileChooser.APPROVE_OPTION) {
|
|
File f = fc.getSelectedFile();
|
|
|
|
try {
|
|
String filePath = f.getCanonicalPath();
|
|
if (HashDb.isIndexPath(filePath)) {
|
|
filePath = HashDb.toDatabasePath(filePath);
|
|
}
|
|
String derivedName = f.getName();
|
|
databasePathTextField.setText(filePath);
|
|
databaseNameTextField.setText(derivedName);
|
|
if (derivedName.toLowerCase().contains("nsrl")) {
|
|
nsrlRadioButton.setSelected(true);
|
|
nsrlRadioButtonActionPerformed(null);
|
|
}
|
|
} catch (IOException ex) {
|
|
logger.log(Level.WARNING, "Couldn't get selected file path.", ex);
|
|
}
|
|
}
|
|
}//GEN-LAST:event_browseButtonActionPerformed
|
|
|
|
private void nsrlRadioButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_nsrlRadioButtonActionPerformed
|
|
sendInboxMessagesCheckbox.setSelected(false);
|
|
sendInboxMessagesCheckbox.setEnabled(false);
|
|
}//GEN-LAST:event_nsrlRadioButtonActionPerformed
|
|
|
|
private void knownBadRadioButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_knownBadRadioButtonActionPerformed
|
|
sendInboxMessagesCheckbox.setSelected(true);
|
|
sendInboxMessagesCheckbox.setEnabled(true);
|
|
}//GEN-LAST:event_knownBadRadioButtonActionPerformed
|
|
|
|
private void cancelButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cancelButtonActionPerformed
|
|
this.dispose();
|
|
}//GEN-LAST:event_cancelButtonActionPerformed
|
|
|
|
private void okButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_okButtonActionPerformed
|
|
if(databasePathTextField.getText().isEmpty()) {
|
|
JOptionPane.showMessageDialog(this, "Database path cannot be empty");
|
|
return;
|
|
}
|
|
if(databaseNameTextField.getText().isEmpty()) {
|
|
JOptionPane.showMessageDialog(this, "Database name cannot be empty");
|
|
return;
|
|
}
|
|
|
|
DBType type;
|
|
if(nsrlRadioButton.isSelected()) {
|
|
type = DBType.NSRL;
|
|
} else {
|
|
type = DBType.KNOWN_BAD;
|
|
}
|
|
|
|
/// @todo Call the HashDb create factory method here
|
|
// HashDb db = HashDb.create(databaseNameTextField.getText(),
|
|
// Arrays.asList(new String[] {databasePathTextField.getText()}),
|
|
// useForIngestCheckbox.isSelected(),
|
|
// sendInboxMessagesCheckbox.isSelected(),
|
|
// type);
|
|
|
|
// if(type == DBType.KNOWN_BAD) {
|
|
// HashDbXML.getCurrent().addKnownBadSet(db);
|
|
// } else if(type == DBType.NSRL) {
|
|
// HashDbXML.getCurrent().setNSRLSet(db);
|
|
// }
|
|
databaseName = databaseNameTextField.getText();
|
|
this.dispose();
|
|
}//GEN-LAST:event_okButtonActionPerformed
|
|
|
|
private void useForIngestCheckboxActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_useForIngestCheckboxActionPerformed
|
|
// TODO add your handling code here:
|
|
}//GEN-LAST:event_useForIngestCheckboxActionPerformed
|
|
|
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
|
private javax.swing.JButton browseButton;
|
|
private javax.swing.ButtonGroup buttonGroup1;
|
|
private javax.swing.JButton cancelButton;
|
|
private javax.swing.JTextField databaseNameTextField;
|
|
private javax.swing.JTextField databasePathTextField;
|
|
private javax.swing.JLabel jLabel1;
|
|
private javax.swing.JLabel jLabel2;
|
|
private javax.swing.JRadioButton knownBadRadioButton;
|
|
private javax.swing.JRadioButton nsrlRadioButton;
|
|
private javax.swing.JButton okButton;
|
|
private javax.swing.JCheckBox sendInboxMessagesCheckbox;
|
|
private javax.swing.JCheckBox useForIngestCheckbox;
|
|
// End of variables declaration//GEN-END:variables
|
|
}
|