mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-13 08:26:15 +00:00
Name change
This commit is contained in:
parent
712cf88763
commit
bdf36b59c4
@ -166,7 +166,7 @@ public class ExtractedContent implements AutopsyVisitableItem {
|
|||||||
return filePath + "Bluetooth.png"; //NON-NLS
|
return filePath + "Bluetooth.png"; //NON-NLS
|
||||||
} else if (typeID == BlackboardArtifact.ARTIFACT_TYPE.TSK_DEVICE_INFO.getTypeID()) {
|
} else if (typeID == BlackboardArtifact.ARTIFACT_TYPE.TSK_DEVICE_INFO.getTypeID()) {
|
||||||
return filePath + "devices.png"; //NON-NLS
|
return filePath + "devices.png"; //NON-NLS
|
||||||
} else if (typeID == BlackboardArtifact.ARTIFACT_TYPE.TSK_VALIDATION_FAILED.getTypeID()) {
|
} else if (typeID == BlackboardArtifact.ARTIFACT_TYPE.TSK_VERIFICATION_FAILED.getTypeID()) {
|
||||||
return filePath + "validationFailed.png"; //NON-NLS
|
return filePath + "validationFailed.png"; //NON-NLS
|
||||||
}
|
}
|
||||||
return filePath + "artifact-icon.png"; //NON-NLS
|
return filePath + "artifact-icon.png"; //NON-NLS
|
||||||
|
@ -104,7 +104,7 @@ public class DataSourceIntegrityIngestModule implements DataSourceIngestModule {
|
|||||||
"# {0} - hashAlgorithm",
|
"# {0} - hashAlgorithm",
|
||||||
"# {1} - calculatedHashValue",
|
"# {1} - calculatedHashValue",
|
||||||
"# {2} - storedHashValue",
|
"# {2} - storedHashValue",
|
||||||
"DataSourceIntegrityIngestModule.process.hashFailedForArtifact={0} hash validation failed:\n Calculated hash: {1}\n Stored hash: {2}\n",
|
"DataSourceIntegrityIngestModule.process.hashFailedForArtifact={0} hash verification failed:\n Calculated hash: {1}\n Stored hash: {2}\n",
|
||||||
})
|
})
|
||||||
@Override
|
@Override
|
||||||
public ProcessResult process(Content dataSource, DataSourceIngestModuleProgress statusHelper) {
|
public ProcessResult process(Content dataSource, DataSourceIngestModuleProgress statusHelper) {
|
||||||
@ -289,11 +289,11 @@ public class DataSourceIntegrityIngestModule implements DataSourceIngestModule {
|
|||||||
|
|
||||||
if (!verified) {
|
if (!verified) {
|
||||||
try {
|
try {
|
||||||
BlackboardArtifact validationFailedArtifact = Case.getCurrentCase().getSleuthkitCase().newBlackboardArtifact(BlackboardArtifact.ARTIFACT_TYPE.TSK_VALIDATION_FAILED, img.getId());
|
BlackboardArtifact verificationFailedArtifact = Case.getCurrentCase().getSleuthkitCase().newBlackboardArtifact(BlackboardArtifact.ARTIFACT_TYPE.TSK_VERIFICATION_FAILED, img.getId());
|
||||||
validationFailedArtifact.addAttribute(new BlackboardAttribute(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_COMMENT,
|
verificationFailedArtifact.addAttribute(new BlackboardAttribute(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_COMMENT,
|
||||||
DataSourceIntegrityModuleFactory.getModuleName(), artifactComment));
|
DataSourceIntegrityModuleFactory.getModuleName(), artifactComment));
|
||||||
} catch (TskCoreException ex) {
|
} catch (TskCoreException ex) {
|
||||||
logger.log(Level.SEVERE, "Error creating validation failed artifact", ex);
|
logger.log(Level.SEVERE, "Error creating verification failed artifact", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -299,7 +299,7 @@ class ReportHTML implements TableReportModule {
|
|||||||
case TSK_DEVICE_INFO:
|
case TSK_DEVICE_INFO:
|
||||||
in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/images/devices.png"); //NON-NLS
|
in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/images/devices.png"); //NON-NLS
|
||||||
break;
|
break;
|
||||||
case TSK_VALIDATION_FAILED:
|
case TSK_VERIFICATION_FAILED:
|
||||||
in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/images/validationFailed.png"); //NON-NLS
|
in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/images/validationFailed.png"); //NON-NLS
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user