mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-20 11:26:53 +00:00
7142 fix conditionals for when to include other occurrences
This commit is contained in:
parent
12f2ecdeeb
commit
940c68a356
@ -5,7 +5,10 @@ CentralRepoCommentDialog.title.addEditCentralRepoComment=Add/Edit Central Reposi
|
|||||||
OpenIDE-Module-Name=Central Repository
|
OpenIDE-Module-Name=Central Repository
|
||||||
OpenIDE-Module-Display-Category=Ingest Module
|
OpenIDE-Module-Display-Category=Ingest Module
|
||||||
OpenIDE-Module-Short-Description=Central Repository Ingest Module
|
OpenIDE-Module-Short-Description=Central Repository Ingest Module
|
||||||
OpenIDE-Module-Long-Description=Central Repository ingest module and central database. \n\nThe Central Repository ingest module stores attributes of artifacts matching selected correlation types into a central database.\nStored attributes are used in future cases to correlate and analyzes files and artifacts during ingest.
|
OpenIDE-Module-Long-Description=\
|
||||||
|
Central Repository ingest module and central database. \n\n\
|
||||||
|
The Central Repository ingest module stores attributes of artifacts matching selected correlation types into a central database.\n\
|
||||||
|
Stored attributes are used in future cases to correlate and analyzes files and artifacts during ingest.
|
||||||
CentralRepoCommentDialog.commentLabel.text=Comment:
|
CentralRepoCommentDialog.commentLabel.text=Comment:
|
||||||
CentralRepoCommentDialog.okButton.text=&OK
|
CentralRepoCommentDialog.okButton.text=&OK
|
||||||
CentralRepoCommentDialog.cancelButton.text=C&ancel
|
CentralRepoCommentDialog.cancelButton.text=C&ancel
|
||||||
|
@ -451,10 +451,10 @@ public final class OtherOccurrencesPanel extends javax.swing.JPanel {
|
|||||||
// - the data source name is different
|
// - the data source name is different
|
||||||
// - the data source device ID is different
|
// - the data source device ID is different
|
||||||
// - the file path is different
|
// - the file path is different
|
||||||
if (!artifactInstance.getCorrelationCase().getCaseUUID().equals(caseUUID)
|
if (artifactInstance.getCorrelationCase().getCaseUUID().equals(caseUUID)
|
||||||
|| !artifactInstance.getCorrelationDataSource().getName().equals(dataSourceName)
|
|| artifactInstance.getCorrelationDataSource().getName().equals(dataSourceName)
|
||||||
|| !artifactInstance.getCorrelationDataSource().getDeviceID().equals(deviceId)
|
|| artifactInstance.getCorrelationDataSource().getDeviceID().equals(deviceId)
|
||||||
|| file != null && artifactInstance.getFilePath().equalsIgnoreCase(file.getParentPath() + file.getName())) {
|
|| (file != null && artifactInstance.getFilePath().equalsIgnoreCase(file.getParentPath() + file.getName()))) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
OtherOccurrenceNodeInstanceData newNode = new OtherOccurrenceNodeInstanceData(artifactInstance, corAttr.getCorrelationType(), corAttr.getCorrelationValue());
|
OtherOccurrenceNodeInstanceData newNode = new OtherOccurrenceNodeInstanceData(artifactInstance, corAttr.getCorrelationType(), corAttr.getCorrelationValue());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user