23 package org.sleuthkit.autopsy.recentactivity;
25 import java.io.BufferedReader;
27 import java.io.FileInputStream;
28 import java.io.FileNotFoundException;
29 import java.io.FileReader;
30 import java.io.FileWriter;
31 import java.io.IOException;
32 import java.io.StringReader;
33 import java.text.ParseException;
34 import java.text.SimpleDateFormat;
35 import java.util.logging.Level;
36 import javax.xml.parsers.DocumentBuilder;
37 import javax.xml.parsers.DocumentBuilderFactory;
38 import javax.xml.parsers.ParserConfigurationException;
39 import org.apache.commons.io.FilenameUtils;
40 import org.openide.modules.InstalledFileLocator;
41 import org.openide.util.NbBundle;
49 import org.
sleuthkit.datamodel.BlackboardArtifact.ARTIFACT_TYPE;
50 import org.
sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE;
51 import org.w3c.dom.Document;
52 import org.w3c.dom.Element;
53 import org.w3c.dom.Node;
54 import org.w3c.dom.NodeList;
55 import org.xml.sax.InputSource;
56 import org.xml.sax.SAXException;
57 import java.nio.file.Path;
58 import java.util.AbstractMap;
59 import java.util.ArrayList;
60 import java.util.Arrays;
61 import java.util.List;
62 import java.util.Collection;
63 import java.util.Date;
64 import java.util.HashMap;
66 import java.util.Scanner;
68 import java.util.HashSet;
69 import static java.util.Locale.US;
70 import static java.util.TimeZone.getTimeZone;
71 import org.openide.util.Lookup;
81 import static org.
sleuthkit.datamodel.BlackboardArtifact.ARTIFACT_TYPE.TSK_ASSOCIATED_OBJECT;
82 import static org.
sleuthkit.datamodel.BlackboardArtifact.ARTIFACT_TYPE.TSK_OS_ACCOUNT;
84 import static org.
sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.TSK_ASSOCIATED_ARTIFACT;
85 import static org.
sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.TSK_COMMENT;
86 import static org.
sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME_ACCESSED;
87 import static org.
sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME_CREATED;
88 import static org.
sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME_MODIFIED;
89 import static org.
sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.TSK_PATH;
90 import static org.
sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.TSK_USER_ID;
91 import static org.
sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.TSK_USER_NAME;
93 import org.
sleuthkit.datamodel.ReadContentInputStream.ReadContentInputStreamException;
105 "RegRipperNotFound=Autopsy RegRipper executable not found.",
106 "RegRipperFullNotFound=Full version RegRipper executable not found.",
107 "Progress_Message_Analyze_Registry=Analyzing Registry Files",
108 "Shellbag_Artifact_Display_Name=Shell Bags",
109 "Shellbag_Key_Attribute_Display_Name=Key",
110 "Shellbag_Last_Write_Attribute_Display_Name=Last Write",
111 "Recently_Used_Artifacts_Office_Trustrecords=Stored in TrustRecords because Office security exception was granted",
112 "Recently_Used_Artifacts_ArcHistory=Recently opened by 7Zip",
113 "Recently_Used_Artifacts_Applets=Recently opened according to Applets registry key",
114 "Recently_Used_Artifacts_Mmc=Recently opened according to Windows Management Console MRU",
115 "Recently_Used_Artifacts_Winrar=Recently opened according to WinRAR MRU",
116 "Recently_Used_Artifacts_Officedocs=Recently opened according to Office MRU",
117 "Recently_Used_Artifacts_Adobe=Recently opened according to Adobe MRU",
118 "Recently_Used_Artifacts_Mediaplayer=Recently opened according to Media Player MRU",
119 "Registry_System_Bam=Recently Executed according to Background Activity Moderator (BAM)"
121 class ExtractRegistry extends Extract {
123 private static final String USERNAME_KEY =
"Username";
124 private static final String SID_KEY =
"SID";
125 private static final String RID_KEY =
"RID";
126 private static final String ACCOUNT_CREATED_KEY =
"Account Created";
127 private static final String LAST_LOGIN_KEY =
"Last Login Date";
128 private static final String LOGIN_COUNT_KEY =
"Login Count";
129 private static final String FULL_NAME_KEY =
"Full Name";
130 private static final String USER_COMMENT_KEY =
"User Comment";
131 private static final String ACCOUNT_TYPE_KEY =
"Account Type";
132 private static final String NAME_KEY =
"Name";
133 private static final String PWD_RESET_KEY =
"Pwd Rest Date";
134 private static final String PWD_FAILE_KEY =
"Pwd Fail Date";
135 private static final String INTERNET_NAME_KEY =
"InternetName";
136 private static final String PWD_DOES_NOT_EXPIRE_KEY =
"Password does not expire";
137 private static final String ACCOUNT_DISABLED_KEY =
"Account Disabled";
138 private static final String PWD_NOT_REQUIRED_KEY =
"Password not required";
139 private static final String NORMAL_ACCOUNT_KEY =
"Normal user account";
140 private static final String HOME_DIRECTORY_REQUIRED_KEY =
"Home directory required";
141 private static final String TEMPORARY_DUPLICATE_ACCOUNT =
"Temporary duplicate account";
142 private static final String MNS_LOGON_ACCOUNT_KEY =
"MNS logon user account";
143 private static final String INTERDOMAIN_TRUST_ACCOUNT_KEY =
"Interdomain trust account";
144 private static final String WORKSTATION_TRUST_ACCOUNT =
"Workstation trust account";
145 private static final String SERVER_TRUST_ACCOUNT =
"Server trust account";
146 private static final String ACCOUNT_AUTO_LOCKED =
"Account auto locked";
147 private static final String PASSWORD_HINT =
"Password Hint";
149 private static final String[] PASSWORD_SETTINGS_FLAGS = {PWD_DOES_NOT_EXPIRE_KEY, PWD_NOT_REQUIRED_KEY};
150 private static final String[] ACCOUNT_SETTINGS_FLAGS = {ACCOUNT_AUTO_LOCKED, HOME_DIRECTORY_REQUIRED_KEY, ACCOUNT_DISABLED_KEY};
151 private static final String[] ACCOUNT_TYPE_FLAGS = {NORMAL_ACCOUNT_KEY, SERVER_TRUST_ACCOUNT, WORKSTATION_TRUST_ACCOUNT, INTERDOMAIN_TRUST_ACCOUNT_KEY, MNS_LOGON_ACCOUNT_KEY, TEMPORARY_DUPLICATE_ACCOUNT};
153 final private static UsbDeviceIdMapper USB_MAPPER =
new UsbDeviceIdMapper();
154 final private static String RIP_EXE =
"rip.exe";
155 final private static String RIP_PL =
"rip.pl";
156 final private static String RIP_PL_INCLUDE_FLAG =
"-I";
157 final private static int MS_IN_SEC = 1000;
158 final private static String NEVER_DATE =
"Never";
159 final private static String SECTION_DIVIDER =
"-------------------------";
160 final private static Logger logger = Logger.getLogger(ExtractRegistry.class.getName());
161 private final List<String> rrCmd =
new ArrayList<>();
162 private final List<String> rrFullCmd =
new ArrayList<>();
163 private final Path rrHome;
164 private final Path rrFullHome;
165 private Content dataSource;
166 private IngestJobContext context;
167 private Map<String, String> userNameMap;
169 private static final String SHELLBAG_ARTIFACT_NAME =
"RA_SHELL_BAG";
170 private static final String SHELLBAG_ATTRIBUTE_LAST_WRITE =
"RA_SHELL_BAG_LAST_WRITE";
171 private static final String SHELLBAG_ATTRIBUTE_KEY=
"RA_SHELL_BAG_KEY";
173 BlackboardArtifact.Type shellBagArtifactType = null;
174 BlackboardAttribute.Type shellBagKeyAttributeType = null;
175 BlackboardAttribute.Type shellBagLastWriteAttributeType = null;
177 ExtractRegistry() throws IngestModuleException {
178 moduleName = NbBundle.getMessage(ExtractIE.class,
"ExtractRegistry.moduleName.text");
180 final File rrRoot = InstalledFileLocator.getDefault().locate(
"rr", ExtractRegistry.class.getPackage().getName(),
false);
181 if (rrRoot == null) {
182 throw new IngestModuleException(Bundle.RegRipperNotFound());
185 final File rrFullRoot = InstalledFileLocator.getDefault().locate(
"rr-full", ExtractRegistry.class.getPackage().getName(),
false);
186 if (rrFullRoot == null) {
187 throw new IngestModuleException(Bundle.RegRipperFullNotFound());
190 String executableToRun = RIP_EXE;
191 if (!PlatformUtil.isWindowsOS()) {
192 executableToRun = RIP_PL;
194 rrHome = rrRoot.toPath();
195 String rrPath = rrHome.resolve(executableToRun).toString();
196 rrFullHome = rrFullRoot.toPath();
198 if (!(
new File(rrPath).exists())) {
199 throw new IngestModuleException(Bundle.RegRipperNotFound());
201 String rrFullPath = rrFullHome.resolve(executableToRun).toString();
202 if (!(
new File(rrFullPath).exists())) {
203 throw new IngestModuleException(Bundle.RegRipperFullNotFound());
205 if (PlatformUtil.isWindowsOS()) {
207 rrFullCmd.add(rrFullPath);
210 File usrBin =
new File(
"/usr/bin/perl");
211 File usrLocalBin =
new File(
"/usr/local/bin/perl");
212 if (usrBin.canExecute() && usrBin.exists() && !usrBin.isDirectory()) {
213 perl =
"/usr/bin/perl";
214 }
else if (usrLocalBin.canExecute() && usrLocalBin.exists() && !usrLocalBin.isDirectory()) {
215 perl =
"/usr/local/bin/perl";
217 throw new IngestModuleException(
"perl not found in your system");
220 rrCmd.add(RIP_PL_INCLUDE_FLAG);
221 rrCmd.add(rrHome.toString());
224 rrFullCmd.add(RIP_PL_INCLUDE_FLAG);
225 rrFullCmd.add(rrFullHome.toString());
226 rrFullCmd.add(rrFullPath);
233 private List<AbstractFile> findRegistryFiles() {
234 List<AbstractFile> allRegistryFiles =
new ArrayList<>();
239 allRegistryFiles.addAll(fileManager.findFiles(dataSource,
"sam",
"/system32/config"));
240 }
catch (TskCoreException ex) {
241 String msg = NbBundle.getMessage(this.getClass(),
242 "ExtractRegistry.findRegFiles.errMsg.errReadingFile",
"sam");
243 logger.log(Level.WARNING, msg, ex);
244 this.addErrorMessage(this.getName() +
": " + msg);
250 allRegistryFiles.addAll(fileManager.findFiles(dataSource,
"ntuser.dat"));
251 }
catch (TskCoreException ex) {
252 logger.log(Level.WARNING,
"Error fetching 'ntuser.dat' file.");
257 allRegistryFiles.addAll(fileManager.findFiles(dataSource,
"usrclass.dat"));
258 }
catch (TskCoreException ex) {
259 logger.log(Level.WARNING, String.format(
"Error finding 'usrclass.dat' files."), ex);
263 String[] regFileNames =
new String[]{
"system",
"software",
"security"};
264 for (String regFileName : regFileNames) {
266 allRegistryFiles.addAll(fileManager.findFiles(dataSource, regFileName,
"/system32/config"));
267 }
catch (TskCoreException ex) {
268 String msg = NbBundle.getMessage(this.getClass(),
269 "ExtractRegistry.findRegFiles.errMsg.errReadingFile", regFileName);
270 logger.log(Level.WARNING, msg, ex);
271 this.addErrorMessage(this.getName() +
": " + msg);
274 return allRegistryFiles;
281 private void analyzeRegistryFiles() {
282 List<AbstractFile> allRegistryFiles = findRegistryFiles();
285 FileWriter logFile = null;
287 logFile =
new FileWriter(RAImageIngestModule.getRAOutputPath(currentCase,
"reg") + File.separator +
"regripper-info.txt");
288 }
catch (IOException ex) {
289 logger.log(Level.SEVERE, null, ex);
292 for (AbstractFile regFile : allRegistryFiles) {
293 String regFileName = regFile.getName();
294 long regFileId = regFile.getId();
295 String regFileNameLocal = RAImageIngestModule.getRATempPath(currentCase,
"reg") + File.separator + regFileName;
296 String outputPathBase = RAImageIngestModule.getRAOutputPath(currentCase,
"reg") + File.separator + regFileName +
"-regripper-" + Long.toString(regFileId);
297 File regFileNameLocalFile =
new File(regFileNameLocal);
299 ContentUtils.writeToFile(regFile, regFileNameLocalFile, context::dataSourceIngestIsCancelled);
300 }
catch (ReadContentInputStreamException ex) {
301 logger.log(Level.WARNING, String.format(
"Error reading registry file '%s' (id=%d).",
302 regFile.getName(), regFileId), ex);
303 this.addErrorMessage(
304 NbBundle.getMessage(
this.getClass(),
"ExtractRegistry.analyzeRegFiles.errMsg.errWritingTemp",
305 this.getName(), regFileName));
307 }
catch (IOException ex) {
308 logger.log(Level.SEVERE, String.format(
"Error writing temp registry file '%s' for registry file '%s' (id=%d).",
309 regFileNameLocal, regFile.getName(), regFileId), ex);
310 this.addErrorMessage(
311 NbBundle.getMessage(
this.getClass(),
"ExtractRegistry.analyzeRegFiles.errMsg.errWritingTemp",
312 this.getName(), regFileName));
316 if (context.dataSourceIngestIsCancelled()) {
321 if (logFile != null) {
322 logFile.write(Long.toString(regFileId) +
"\t" + regFile.getUniquePath() +
"\n");
324 }
catch (TskCoreException | IOException ex) {
325 logger.log(Level.SEVERE, null, ex);
328 logger.log(Level.INFO,
"{0}- Now getting registry information from {1}",
new Object[]{moduleName, regFileNameLocal});
329 RegOutputFiles regOutputFiles = ripRegistryFile(regFileNameLocal, outputPathBase);
330 if (context.dataSourceIngestIsCancelled()) {
335 if (regOutputFiles.autopsyPlugins.isEmpty() ==
false && parseAutopsyPluginOutput(regOutputFiles.autopsyPlugins, regFile) ==
false) {
336 this.addErrorMessage(
337 NbBundle.getMessage(
this.getClass(),
"ExtractRegistry.analyzeRegFiles.failedParsingResults",
338 this.getName(), regFileName));
342 if (!regOutputFiles.fullPlugins.isEmpty()) {
344 if (regFileNameLocal.toLowerCase().contains(
"sam") && parseSamPluginOutput(regOutputFiles.fullPlugins, regFile) ==
false) {
345 this.addErrorMessage(
346 NbBundle.getMessage(
this.getClass(),
"ExtractRegistry.analyzeRegFiles.failedParsingResults",
347 this.getName(), regFileName));
348 }
else if (regFileNameLocal.toLowerCase().contains(
"ntuser") || regFileNameLocal.toLowerCase().contains(
"usrclass")) {
350 List<ShellBag> shellbags = ShellBagParser.parseShellbagOutput(regOutputFiles.fullPlugins);
351 createShellBagArtifacts(regFile, shellbags);
352 createRecentlyUsedArtifacts(regOutputFiles.fullPlugins, regFile);
353 }
catch (IOException | TskCoreException ex) {
354 logger.log(Level.WARNING, String.format(
"Unable to get shell bags from file %s", regOutputFiles.fullPlugins), ex);
356 }
else if (regFileNameLocal.toLowerCase().contains(
"system")) {
358 createSystemArtifacts(regOutputFiles.fullPlugins, regFile);
359 }
catch (IOException ex) {
360 logger.log(Level.WARNING, String.format(
"Unable to get artifacts from file %s", regOutputFiles.fullPlugins), ex);
364 Report report = currentCase.addReport(regOutputFiles.fullPlugins,
365 NbBundle.getMessage(
this.getClass(),
"ExtractRegistry.parentModuleName.noSpace"),
366 "RegRipper " + regFile.getUniquePath(), regFile);
369 KeywordSearchService searchService = Lookup.getDefault().lookup(KeywordSearchService.class);
370 if (null == searchService) {
371 logger.log(Level.WARNING,
"Keyword search service not found. Report will not be indexed");
373 searchService.index(report);
376 }
catch (TskCoreException e) {
377 this.addErrorMessage(
"Error adding regripper output as Autopsy report: " + e.getLocalizedMessage());
381 regFileNameLocalFile.delete();
385 if (logFile != null) {
388 }
catch (IOException ex) {
389 logger.log(Level.SEVERE, null, ex);
400 private RegOutputFiles ripRegistryFile(String regFilePath, String outFilePathBase) {
401 String autopsyType =
"";
404 RegOutputFiles regOutputFiles =
new RegOutputFiles();
406 if (regFilePath.toLowerCase().contains(
"system")) {
407 autopsyType =
"autopsysystem";
409 }
else if (regFilePath.toLowerCase().contains(
"software")) {
410 autopsyType =
"autopsysoftware";
411 fullType =
"software";
412 }
else if (regFilePath.toLowerCase().contains(
"ntuser")) {
413 autopsyType =
"autopsyntuser";
415 }
else if (regFilePath.toLowerCase().contains(
"sam")) {
418 }
else if (regFilePath.toLowerCase().contains(
"security")) {
419 fullType =
"security";
420 }
else if (regFilePath.toLowerCase().contains(
"usrclass")) {
421 fullType =
"usrclass";
423 return regOutputFiles;
427 if (!autopsyType.isEmpty()) {
428 regOutputFiles.autopsyPlugins = outFilePathBase +
"-autopsy.txt";
429 String errFilePath = outFilePathBase +
"-autopsy.err.txt";
430 logger.log(Level.INFO,
"Writing RegRipper results to: {0}", regOutputFiles.autopsyPlugins);
431 executeRegRipper(rrCmd, rrHome, regFilePath, autopsyType, regOutputFiles.autopsyPlugins, errFilePath);
433 if (context.dataSourceIngestIsCancelled()) {
434 return regOutputFiles;
438 if (!fullType.isEmpty()) {
439 regOutputFiles.fullPlugins = outFilePathBase +
"-full.txt";
440 String errFilePath = outFilePathBase +
"-full.err.txt";
441 logger.log(Level.INFO,
"Writing Full RegRipper results to: {0}", regOutputFiles.fullPlugins);
442 executeRegRipper(rrFullCmd, rrFullHome, regFilePath, fullType, regOutputFiles.fullPlugins, errFilePath);
444 scanErrorLogs(errFilePath);
445 }
catch (IOException ex) {
446 logger.log(Level.SEVERE,
"Unable to run RegRipper", ex);
447 this.addErrorMessage(NbBundle.getMessage(
this.getClass(),
"ExtractRegistry.execRegRip.errMsg.failedAnalyzeRegFile", this.getName()));
450 return regOutputFiles;
453 private void scanErrorLogs(String errFilePath)
throws IOException {
454 File regfile =
new File(errFilePath);
455 try (BufferedReader reader =
new BufferedReader(
new FileReader(regfile))) {
456 String line = reader.readLine();
457 while (line != null) {
459 if (line.toLowerCase().contains(
"error") || line.toLowerCase().contains(
"@inc")) {
460 logger.log(Level.WARNING,
"Regripper file {0} contains errors from run", errFilePath);
463 line = reader.readLine();
468 private void executeRegRipper(List<String> regRipperPath, Path regRipperHomeDir, String hiveFilePath, String hiveFileType, String outputFile, String errFile) {
470 List<String> commandLine =
new ArrayList<>();
471 for (String cmd : regRipperPath) {
472 commandLine.add(cmd);
474 commandLine.add(
"-r");
475 commandLine.add(hiveFilePath);
476 commandLine.add(
"-f");
477 commandLine.add(hiveFileType);
479 ProcessBuilder processBuilder =
new ProcessBuilder(commandLine);
480 processBuilder.directory(regRipperHomeDir.toFile());
481 processBuilder.redirectOutput(
new File(outputFile));
482 processBuilder.redirectError(
new File(errFile));
483 ExecUtil.execute(processBuilder,
new DataSourceIngestModuleProcessTerminator(context));
484 }
catch (IOException ex) {
485 logger.log(Level.SEVERE,
"Unable to run RegRipper", ex);
486 this.addErrorMessage(NbBundle.getMessage(
this.getClass(),
"ExtractRegistry.execRegRip.errMsg.failedAnalyzeRegFile", this.getName()));
499 private boolean parseAutopsyPluginOutput(String regFilePath, AbstractFile regFile) {
500 FileInputStream fstream = null;
501 List<BlackboardArtifact> newArtifacts =
new ArrayList<>();
504 File regfile =
new File(regFilePath);
505 fstream =
new FileInputStream(regfile);
506 String regString =
new Scanner(fstream,
"UTF-8").useDelimiter(
"\\Z").next();
507 String startdoc =
"<?xml version=\"1.0\"?><document>";
508 String result = regString.replaceAll(
"----------------------------------------",
"");
509 result = result.replaceAll(
"\\n",
"");
510 result = result.replaceAll(
"\\r",
"");
511 result = result.replaceAll(
"'",
"'");
512 result = result.replaceAll(
"&",
"&");
513 result = result.replace(
'\0',
' ');
514 String enddoc =
"</document>";
515 String stringdoc = startdoc + result + enddoc;
516 DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
517 Document doc = builder.parse(
new InputSource(
new StringReader(stringdoc)));
520 Element oroot = doc.getDocumentElement();
521 NodeList children = oroot.getChildNodes();
522 int len = children.getLength();
523 for (
int i = 0; i < len; i++) {
525 if (context.dataSourceIngestIsCancelled()) {
529 Element tempnode = (Element) children.item(i);
531 String dataType = tempnode.getNodeName();
532 NodeList timenodes = tempnode.getElementsByTagName(
"mtime");
534 if (timenodes.getLength() > 0) {
535 Element timenode = (Element) timenodes.item(0);
536 String etime = timenode.getTextContent();
538 if (etime != null && !etime.isEmpty()) {
540 mtime =
new SimpleDateFormat(
"EEE MMM d HH:mm:ss yyyy").parse(etime).getTime();
541 String Tempdate = mtime.toString();
542 mtime = Long.valueOf(Tempdate) / MS_IN_SEC;
543 }
catch (ParseException ex) {
544 logger.log(Level.WARNING,
"Failed to parse epoch time when parsing the registry.", ex);
549 NodeList artroots = tempnode.getElementsByTagName(
"artifacts");
550 if (artroots.getLength() == 0) {
555 Element artroot = (Element) artroots.item(0);
556 NodeList myartlist = artroot.getChildNodes();
557 String parentModuleName = RecentActivityExtracterModuleFactory.getModuleName();
563 String systemRoot =
"";
564 String productId =
"";
565 String regOwner =
"";
567 Long installtime = null;
568 for (
int j = 0; j < myartlist.getLength(); j++) {
569 Node artchild = myartlist.item(j);
571 if (artchild.hasAttributes()) {
572 Element artnode = (Element) artchild;
574 String value = artnode.getTextContent();
576 value = value.trim();
578 String name = artnode.getAttribute(
"name");
588 version = version +
" " + value;
596 case "RegisteredOwner":
599 case "RegisteredOrganization":
603 if (value != null && !value.isEmpty()) {
605 installtime =
new SimpleDateFormat(
"EEE MMM d HH:mm:ss yyyy").parse(value).getTime();
606 String Tempdate = installtime.toString();
607 installtime = Long.valueOf(Tempdate) / MS_IN_SEC;
608 }
catch (ParseException e) {
609 logger.log(Level.WARNING,
"RegRipper::Conversion on DateTime -> ", e);
619 Collection<BlackboardAttribute> bbattributes =
new ArrayList<>();
620 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_PROG_NAME, parentModuleName, version));
621 if (installtime != null) {
622 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME, parentModuleName, installtime));
624 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_PATH, parentModuleName, systemRoot));
625 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_PRODUCT_ID, parentModuleName, productId));
626 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_OWNER, parentModuleName, regOwner));
627 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_ORGANIZATION, parentModuleName, regOrg));
630 ArrayList<BlackboardArtifact> results = tskCase.getBlackboardArtifacts(ARTIFACT_TYPE.TSK_OS_INFO, regFile.getId());
631 if (results.isEmpty()) {
632 BlackboardArtifact bbart = regFile.newArtifact(ARTIFACT_TYPE.TSK_OS_INFO);
633 bbart.addAttributes(bbattributes);
635 newArtifacts.add(bbart);
637 results.get(0).addAttributes(bbattributes);
640 }
catch (TskCoreException ex) {
641 logger.log(Level.SEVERE,
"Error adding installed program artifact to blackboard.");
646 String procArch =
"";
648 for (
int j = 0; j < myartlist.getLength(); j++) {
649 Node artchild = myartlist.item(j);
651 if (artchild.hasAttributes()) {
652 Element artnode = (Element) artchild;
654 String value = artnode.getTextContent().trim();
655 String name = artnode.getAttribute(
"name");
660 case "PROCESSOR_ARCHITECTURE":
663 case "PROCESSOR_IDENTIFIER":
674 Collection<BlackboardAttribute> bbattributes =
new ArrayList<>();
675 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_VERSION, parentModuleName, os));
676 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_PROCESSOR_ARCHITECTURE, parentModuleName, procArch));
677 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_TEMP_DIR, parentModuleName, tempDir));
680 ArrayList<BlackboardArtifact> results = tskCase.getBlackboardArtifacts(ARTIFACT_TYPE.TSK_OS_INFO, regFile.getId());
681 if (results.isEmpty()) {
682 BlackboardArtifact bbart = regFile.newArtifact(ARTIFACT_TYPE.TSK_OS_INFO);
683 bbart.addAttributes(bbattributes);
685 newArtifacts.add(bbart);
687 results.get(0).addAttributes(bbattributes);
689 }
catch (TskCoreException ex) {
690 logger.log(Level.SEVERE,
"Error adding os info artifact to blackboard.");
694 String compName =
"";
696 for (
int j = 0; j < myartlist.getLength(); j++) {
697 Node artchild = myartlist.item(j);
699 if (artchild.hasAttributes()) {
700 Element artnode = (Element) artchild;
702 String value = artnode.getTextContent().trim();
703 String name = artnode.getAttribute(
"name");
705 if (name.equals(
"ComputerName")) {
707 }
else if (name.equals(
"Domain")) {
713 Collection<BlackboardAttribute> bbattributes =
new ArrayList<>();
714 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_NAME, parentModuleName, compName));
715 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DOMAIN, parentModuleName, domain));
718 ArrayList<BlackboardArtifact> results = tskCase.getBlackboardArtifacts(ARTIFACT_TYPE.TSK_OS_INFO, regFile.getId());
719 if (results.isEmpty()) {
720 BlackboardArtifact bbart = regFile.newArtifact(ARTIFACT_TYPE.TSK_OS_INFO);
721 bbart.addAttributes(bbattributes);
723 newArtifacts.add(bbart);
725 results.get(0).addAttributes(bbattributes);
727 }
catch (TskCoreException ex) {
728 logger.log(Level.SEVERE,
"Error adding os info artifact to blackboard.", ex);
732 for (
int j = 0; j < myartlist.getLength(); j++) {
733 Node artchild = myartlist.item(j);
735 if (artchild.hasAttributes()) {
736 Element artnode = (Element) artchild;
738 String value = artnode.getTextContent().trim();
739 Collection<BlackboardAttribute> bbattributes =
new ArrayList<>();
752 Long usbMtime = Long.parseLong(artnode.getAttribute(
"mtime"));
753 usbMtime = Long.valueOf(usbMtime.toString());
755 BlackboardArtifact bbart = regFile.newArtifact(ARTIFACT_TYPE.TSK_DEVICE_ATTACHED);
756 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME, parentModuleName, usbMtime));
757 String dev = artnode.getAttribute(
"dev");
760 if (dev.toLowerCase().contains(
"vid")) {
761 USBInfo info = USB_MAPPER.parseAndLookup(dev);
762 if (info.getVendor() != null) {
763 make = info.getVendor();
765 if (info.getProduct() != null) {
766 model = info.getProduct();
769 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DEVICE_MAKE, parentModuleName, make));
770 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DEVICE_MODEL, parentModuleName, model));
771 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DEVICE_ID, parentModuleName, value));
772 bbart.addAttributes(bbattributes);
774 newArtifacts.add(bbart);
775 }
catch (TskCoreException ex) {
776 logger.log(Level.SEVERE,
"Error adding device attached artifact to blackboard.", ex);
780 Long itemMtime = null;
782 String mTimeAttr = artnode.getAttribute(
"mtime");
783 if (mTimeAttr != null && !mTimeAttr.isEmpty()) {
784 itemMtime =
new SimpleDateFormat(
"EEE MMM d HH:mm:ss yyyy").parse(mTimeAttr).getTime();
785 itemMtime /= MS_IN_SEC;
787 }
catch (ParseException ex) {
788 logger.log(Level.SEVERE,
"Failed to parse epoch time for installed program artifact.", ex);
792 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_PROG_NAME, parentModuleName, value));
793 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME, parentModuleName, itemMtime));
794 BlackboardArtifact bbart = regFile.newArtifact(ARTIFACT_TYPE.TSK_INSTALLED_PROG);
795 bbart.addAttributes(bbattributes);
797 newArtifacts.add(bbart);
798 }
catch (TskCoreException ex) {
799 logger.log(Level.SEVERE,
"Error adding installed program artifact to blackboard.", ex);
803 String officeName = artnode.getAttribute(
"name");
806 BlackboardArtifact bbart = regFile.newArtifact(ARTIFACT_TYPE.TSK_RECENT_OBJECT);
809 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME_ACCESSED, parentModuleName, mtime));
811 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_NAME, parentModuleName, officeName));
812 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_VALUE, parentModuleName, value));
813 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_PROG_NAME, parentModuleName, artnode.getNodeName()));
814 bbart.addAttributes(bbattributes);
816 newArtifacts.add(bbart);
817 }
catch (TskCoreException ex) {
818 logger.log(Level.SEVERE,
"Error adding recent object artifact to blackboard.", ex);
822 case "ProcessorArchitecture":
839 String homeDir = value;
840 String sid = artnode.getAttribute(
"sid");
841 String username = artnode.getAttribute(
"username");
842 BlackboardArtifact bbart = null;
845 ArrayList<BlackboardArtifact> existingArtifacts = currentCase.getSleuthkitCase().getBlackboardArtifacts(ARTIFACT_TYPE.TSK_OS_ACCOUNT);
846 for (BlackboardArtifact artifact : existingArtifacts) {
847 if (artifact.getDataSource().getId() == regFile.getDataSourceObjectId()) {
848 BlackboardAttribute attribute = artifact.getAttribute(
new BlackboardAttribute.Type(ATTRIBUTE_TYPE.TSK_USER_ID));
849 if (attribute != null && attribute.getValueString().equals(sid)) {
855 }
catch (TskCoreException ex) {
856 logger.log(Level.SEVERE,
"Error getting existing os account artifact", ex);
860 bbart = regFile.newArtifact(ARTIFACT_TYPE.TSK_OS_ACCOUNT);
861 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_USER_NAME,
862 parentModuleName, username));
863 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_USER_ID,
864 parentModuleName, sid));
865 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_PATH,
866 parentModuleName, homeDir));
869 BlackboardAttribute bbattr = bbart.getAttribute(
new BlackboardAttribute.Type(ATTRIBUTE_TYPE.TSK_USER_NAME));
871 if (bbattr == null) {
872 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_USER_NAME,
873 parentModuleName, username));
875 bbattr = bbart.getAttribute(
new BlackboardAttribute.Type(ATTRIBUTE_TYPE.TSK_PATH));
876 if (bbattr == null) {
877 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_PATH,
878 parentModuleName, homeDir));
881 bbart.addAttributes(bbattributes);
882 newArtifacts.add(bbart);
883 }
catch (TskCoreException ex) {
884 logger.log(Level.SEVERE,
"Error adding account artifact to blackboard.", ex);
888 case "NtuserNetwork":
890 String localPath = artnode.getAttribute(
"localPath");
891 String remoteName = value;
892 BlackboardArtifact bbart = regFile.newArtifact(ARTIFACT_TYPE.TSK_REMOTE_DRIVE);
893 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_LOCAL_PATH,
894 parentModuleName, localPath));
895 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_REMOTE_PATH,
896 parentModuleName, remoteName));
897 bbart.addAttributes(bbattributes);
898 newArtifacts.add(bbart);
899 }
catch (TskCoreException ex) {
900 logger.log(Level.SEVERE,
"Error adding network artifact to blackboard.", ex);
904 String adapter = artnode.getAttribute(
"adapter");
906 Long lastWriteTime = Long.parseLong(artnode.getAttribute(
"writeTime"));
907 lastWriteTime = Long.valueOf(lastWriteTime.toString());
908 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_SSID, parentModuleName, value));
909 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME, parentModuleName, lastWriteTime));
910 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DEVICE_ID, parentModuleName, adapter));
911 BlackboardArtifact bbart = regFile.newArtifact(ARTIFACT_TYPE.TSK_WIFI_NETWORK);
912 bbart.addAttributes(bbattributes);
913 newArtifacts.add(bbart);
914 }
catch (TskCoreException ex) {
915 logger.log(Level.SEVERE,
"Error adding SSID artifact to blackboard.", ex);
925 logger.log(Level.SEVERE,
"Unrecognized node name: {0}", dataType);
934 }
catch (FileNotFoundException ex) {
935 logger.log(Level.WARNING, String.format(
"Error finding the registry file: %s", regFilePath), ex);
936 }
catch (SAXException ex) {
937 logger.log(Level.WARNING, String.format(
"Error parsing the registry XML: %s", regFilePath), ex);
938 }
catch (IOException ex) {
939 logger.log(Level.WARNING, String.format(
"Error building the document parser: %s", regFilePath), ex);
940 }
catch (ParserConfigurationException ex) {
941 logger.log(Level.WARNING, String.format(
"Error configuring the registry parser: %s", regFilePath), ex);
944 if (fstream != null) {
947 }
catch (IOException ex) {
950 postArtifacts(newArtifacts);
964 private boolean parseSamPluginOutput(String regFilePath, AbstractFile regAbstractFile) {
965 File regfile =
new File(regFilePath);
966 List<BlackboardArtifact> newArtifacts =
new ArrayList<>();
967 try (BufferedReader bufferedReader =
new BufferedReader(
new FileReader(regfile))) {
969 String userInfoSection =
"User Information";
970 String previousLine = null;
971 String line = bufferedReader.readLine();
972 Set<Map<String, String>> userSet =
new HashSet<>();
973 Map<String, List<String>> groupMap = null;
974 while (line != null) {
975 if (line.contains(SECTION_DIVIDER) && previousLine != null && previousLine.contains(userInfoSection)) {
976 readUsers(bufferedReader, userSet);
979 if (line.contains(SECTION_DIVIDER) && previousLine != null && previousLine.contains(
"Group Membership Information")) {
980 groupMap = readGroups(bufferedReader);
984 line = bufferedReader.readLine();
986 Map<String, Map<String, String>> userInfoMap =
new HashMap<>();
988 for (Map<String, String> userInfo : userSet) {
989 userInfoMap.put(userInfo.get(SID_KEY), userInfo);
992 List<BlackboardArtifact> existingOsAccounts = tskCase.getBlackboardArtifacts(ARTIFACT_TYPE.TSK_OS_ACCOUNT);
993 for (BlackboardArtifact osAccount : existingOsAccounts) {
995 if (osAccount.getDataSource().getId() == regAbstractFile.getDataSourceObjectId()) {
996 BlackboardAttribute existingUserId = osAccount.getAttribute(
new BlackboardAttribute.Type(ATTRIBUTE_TYPE.TSK_USER_ID));
997 if (existingUserId != null) {
998 String userID = existingUserId.getValueString().trim();
999 Map<String, String> userInfo = userInfoMap.remove(userID);
1001 if (userInfo != null) {
1002 osAccount.addAttributes(getAttributesForAccount(userInfo, groupMap.get(userID),
true, regAbstractFile));
1009 for (Map<String, String> userInfo : userInfoMap.values()) {
1010 BlackboardArtifact bbart = regAbstractFile.newArtifact(ARTIFACT_TYPE.TSK_OS_ACCOUNT);
1011 bbart.addAttributes(getAttributesForAccount(userInfo, groupMap.get(userInfo.get(SID_KEY)),
false, regAbstractFile));
1013 newArtifacts.add(bbart);
1018 userNameMap = makeUserNameMap(dataSource);
1019 }
catch (TskCoreException ex) {
1020 logger.log(Level.WARNING,
"Unable to create OS Account user name map", ex);
1023 userNameMap =
new HashMap<>();
1026 }
catch (FileNotFoundException ex) {
1027 logger.log(Level.WARNING,
"Error finding the registry file.", ex);
1028 }
catch (IOException ex) {
1029 logger.log(Level.WARNING,
"Error building the document parser: {0}", ex);
1030 }
catch (ParseException ex) {
1031 logger.log(Level.WARNING,
"Error parsing the the date from the registry file", ex);
1032 }
catch (TskCoreException ex) {
1033 logger.log(Level.WARNING,
"Error updating TSK_OS_ACCOUNT artifacts to include newly parsed data.", ex);
1035 postArtifacts(newArtifacts);
1051 Collection<BlackboardAttribute> getAttributesForAccount(Map<String, String> userInfo, List<String> groupList,
boolean existingUser, AbstractFile regAbstractFile)
throws ParseException {
1052 Collection<BlackboardAttribute> bbattributes =
new ArrayList<>();
1054 SimpleDateFormat regRipperTimeFormat =
new SimpleDateFormat(
"EEE MMM dd HH:mm:ss yyyy 'Z'");
1055 regRipperTimeFormat.setTimeZone(getTimeZone(
"GMT"));
1057 if (!existingUser) {
1058 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_USER_ID,
1059 getRAModuleName(), userInfo.get(SID_KEY)));
1061 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_USER_NAME,
1062 this.moduleName, userInfo.get(USERNAME_KEY)));
1065 String value = userInfo.get(ACCOUNT_CREATED_KEY);
1066 if (value != null && !value.isEmpty() && !value.equals(NEVER_DATE)) {
1067 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME_CREATED,
1068 getRAModuleName(), regRipperTimeFormat.parse(value).getTime() / MS_IN_SEC));
1071 value = userInfo.get(LAST_LOGIN_KEY);
1072 if (value != null && !value.isEmpty() && !value.equals(NEVER_DATE)) {
1073 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME_ACCESSED,
1074 getRAModuleName(), regRipperTimeFormat.parse(value).getTime() / MS_IN_SEC));
1077 value = userInfo.get(LOGIN_COUNT_KEY);
1078 if (value != null && !value.isEmpty()) {
1079 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_COUNT,
1080 getRAModuleName(), Integer.parseInt(value)));
1083 value = userInfo.get(ACCOUNT_TYPE_KEY);
1084 if (value != null && !value.isEmpty()) {
1085 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_ACCOUNT_TYPE,
1086 getRAModuleName(), value));
1089 value = userInfo.get(USER_COMMENT_KEY);
1090 if (value != null && !value.isEmpty()) {
1091 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DESCRIPTION,
1092 getRAModuleName(), value));
1095 value = userInfo.get(NAME_KEY);
1096 if (value != null && !value.isEmpty()) {
1097 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_NAME,
1098 getRAModuleName(), value));
1101 value = userInfo.get(INTERNET_NAME_KEY);
1102 if (value != null && !value.isEmpty()) {
1105 Case.getCurrentCaseThrows()
1107 .getCommunicationsManager()
1108 .createAccountFileInstance(Account.Type.EMAIL,
1109 value, getRAModuleName(), regAbstractFile);
1110 }
catch (NoCurrentCaseException | TskCoreException ex) {
1111 logger.log(Level.SEVERE,
1112 String.format(
"Error adding email account with value "
1113 +
"%s, to the case database for file %s [objId=%d]",
1114 value, regAbstractFile.getName(), regAbstractFile.getId()), ex);
1117 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_EMAIL,
1118 getRAModuleName(), value));
1121 value = userInfo.get(FULL_NAME_KEY);
1122 if (value != null && !value.isEmpty()) {
1123 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DISPLAY_NAME,
1124 getRAModuleName(), value));
1127 value = userInfo.get(PWD_RESET_KEY);
1128 if (value != null && !value.isEmpty() && !value.equals(NEVER_DATE)) {
1129 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME_PASSWORD_RESET,
1130 getRAModuleName(), regRipperTimeFormat.parse(value).getTime() / MS_IN_SEC));
1133 value = userInfo.get(PASSWORD_HINT);
1134 if (value != null && !value.isEmpty()) {
1135 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_PASSWORD_HINT,
1136 getRAModuleName(), value));
1139 value = userInfo.get(PWD_FAILE_KEY);
1140 if (value != null && !value.isEmpty() && !value.equals(NEVER_DATE)) {
1141 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME_PASSWORD_FAIL,
1142 getRAModuleName(), regRipperTimeFormat.parse(value).getTime() / MS_IN_SEC));
1145 String settingString =
"";
1146 for (String setting : PASSWORD_SETTINGS_FLAGS) {
1147 if (userInfo.containsKey(setting)) {
1148 settingString += setting +
", ";
1152 if (!settingString.isEmpty()) {
1153 settingString = settingString.substring(0, settingString.length() - 2);
1154 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_PASSWORD_SETTINGS,
1155 getRAModuleName(), settingString));
1159 for (String setting : ACCOUNT_SETTINGS_FLAGS) {
1160 if (userInfo.containsKey(setting)) {
1161 settingString += setting +
", ";
1165 if (!settingString.isEmpty()) {
1166 settingString = settingString.substring(0, settingString.length() - 2);
1167 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_ACCOUNT_SETTINGS,
1168 getRAModuleName(), settingString));
1172 for (String setting : ACCOUNT_TYPE_FLAGS) {
1173 if (userInfo.containsKey(setting)) {
1174 settingString += setting +
", ";
1178 if (!settingString.isEmpty()) {
1179 settingString = settingString.substring(0, settingString.length() - 2);
1180 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_FLAG,
1181 getRAModuleName(), settingString));
1184 if (groupList != null && groupList.isEmpty()) {
1186 for (String group : groupList) {
1187 groups += group +
", ";
1190 bbattributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_GROUPS,
1191 getRAModuleName(), groups.substring(0, groups.length() - 2)));
1194 return bbattributes;
1208 private void readUsers(BufferedReader bufferedReader, Set<Map<String, String>> users) throws IOException {
1209 String line = bufferedReader.readLine();
1211 String userName =
"";
1212 String user_rid =
"";
1213 while (line != null && !line.contains(SECTION_DIVIDER)) {
1215 if (line.contains(USERNAME_KEY)) {
1216 String regx = USERNAME_KEY +
"\\s*?:";
1217 String userNameAndIdString = line.replaceAll(regx,
"");
1218 userName = userNameAndIdString.substring(0, userNameAndIdString.lastIndexOf(
'[')).trim();
1219 user_rid = userNameAndIdString.substring(userNameAndIdString.lastIndexOf(
'['), userNameAndIdString.lastIndexOf(
']'));
1220 }
else if (line.contains(SID_KEY) && !userName.isEmpty()) {
1221 Map.Entry<String, String> entry = getSAMKeyValue(line);
1223 HashMap<String, String> userInfo =
new HashMap<>();
1224 userInfo.put(USERNAME_KEY, userName);
1225 userInfo.put(RID_KEY, user_rid);
1226 userInfo.put(entry.getKey(), entry.getValue());
1229 line = bufferedReader.readLine();
1230 while (line != null && !line.isEmpty()) {
1231 entry = getSAMKeyValue(line);
1232 if (entry != null) {
1233 userInfo.put(entry.getKey(), entry.getValue());
1235 line = bufferedReader.readLine();
1237 users.add(userInfo);
1241 line = bufferedReader.readLine();
1254 private void createRecentlyUsedArtifacts(String regFileName, AbstractFile regFile)
throws FileNotFoundException, IOException {
1255 File regfile =
new File(regFileName);
1256 try (BufferedReader reader =
new BufferedReader(
new FileReader(regfile))) {
1257 String line = reader.readLine();
1258 while (line != null) {
1261 if (line.matches(
"^adoberdr v.*")) {
1262 parseAdobeMRUList(regFile, reader, Bundle.Recently_Used_Artifacts_Adobe());
1263 }
else if (line.matches(
"^mpmru v.*")) {
1264 parseMediaPlayerMRUList(regFile, reader, Bundle.Recently_Used_Artifacts_Mediaplayer());
1265 }
else if (line.matches(
"^trustrecords v.*")) {
1266 parseOfficeTrustRecords(regFile, reader, Bundle.Recently_Used_Artifacts_Office_Trustrecords());
1267 }
else if (line.matches(
"^ArcHistory:")) {
1268 parse7ZipMRU(regFile, reader, Bundle.Recently_Used_Artifacts_ArcHistory());
1269 }
else if (line.matches(
"^applets v.*")) {
1270 parseGenericMRUList(regFile, reader, Bundle.Recently_Used_Artifacts_Applets());
1271 }
else if (line.matches(
"^mmc v.*")) {
1272 parseGenericMRUList(regFile, reader, Bundle.Recently_Used_Artifacts_Mmc());
1273 }
else if (line.matches(
"^winrar v.*")) {
1274 parseWinRARMRUList(regFile, reader, Bundle.Recently_Used_Artifacts_Winrar());
1275 }
else if (line.matches(
"^officedocs2010 v.*")) {
1276 parseOfficeDocs2010MRUList(regFile, reader, Bundle.Recently_Used_Artifacts_Officedocs());
1278 line = reader.readLine();
1292 private void createSystemArtifacts(String regFileName, AbstractFile regFile)
throws FileNotFoundException, IOException {
1293 File regfile =
new File(regFileName);
1294 try (BufferedReader reader =
new BufferedReader(
new FileReader(regfile))) {
1295 String line = reader.readLine();
1296 while (line != null) {
1299 if (line.matches(
"^bam v.*")) {
1300 parseBamKey(regFile, reader, Bundle.Registry_System_Bam());
1302 line = reader.readLine();
1318 private void parseBamKey(AbstractFile regFile, BufferedReader reader, String comment)
throws FileNotFoundException, IOException {
1319 List<BlackboardArtifact> bbartifacts =
new ArrayList<>();
1320 String line = reader.readLine();
1322 while (!line.contains(SECTION_DIVIDER)) {
1323 line = reader.readLine();
1326 line = reader.readLine();
1328 while (!line.contains(SECTION_DIVIDER)) {
1331 String tokens[] = line.split(
"\\|");
1332 Long progRunDateTime = Long.valueOf(tokens[0]);
1335 String fileNameSid[] = tokens[4].split(
"\\s+\\(S-");
1336 String userSid =
"S-" + fileNameSid[1].substring(0, fileNameSid[1].length() - 1);
1337 String userName = userNameMap.get(userSid);
1338 if (userName == null) {
1341 String fileName = fileNameSid[0];
1342 if (fileName.startsWith(
"\\Device\\HarddiskVolume")) {
1344 int fileNameStart = fileName.indexOf(
'\\', 16);
1345 fileName = fileName.substring(fileNameStart, fileName.length());
1348 Collection<BlackboardAttribute> attributes =
new ArrayList<>();
1349 attributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_PROG_NAME, getName(), fileName));
1350 attributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_USER_NAME, getName(), userName));
1351 attributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME, getName(), progRunDateTime));
1352 attributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_COMMENT, getName(), comment));
1353 BlackboardArtifact bba = createArtifactWithAttributes(ARTIFACT_TYPE.TSK_PROG_RUN, regFile, attributes);
1355 bbartifacts.add(bba);
1356 bba = createAssociatedArtifact(FilenameUtils.normalize(fileName,
true), bba);
1358 bbartifacts.add(bba);
1361 line = reader.readLine();
1363 if (!bbartifacts.isEmpty()) {
1364 postArtifacts(bbartifacts);
1379 private void parseAdobeMRUList(AbstractFile regFile, BufferedReader reader, String comment)
throws FileNotFoundException, IOException {
1380 List<BlackboardArtifact> bbartifacts =
new ArrayList<>();
1381 String line = reader.readLine();
1382 SimpleDateFormat adobePluginDateFormat =
new SimpleDateFormat(
"yyyyMMddHHmmssZ", US);
1383 Long adobeUsedTime = Long.valueOf(0);
1384 while (!line.contains(SECTION_DIVIDER)) {
1385 line = reader.readLine();
1387 if (line.matches(
"^Key name,file name,sDate,uFileSize,uPageCount")) {
1388 line = reader.readLine();
1391 while (!line.contains(SECTION_DIVIDER)) {
1394 String tokens[] = line.split(
",(?=([^\"]*\"[^\"]*\")*[^\"]*$)");
1395 String fileName = tokens[1].substring(0, tokens[1].length() -1);
1396 fileName = fileName.replace(
"\"",
"");
1397 if (fileName.charAt(0) ==
'/') {
1398 fileName = fileName.substring(1,fileName.length() - 1);
1399 fileName = fileName.replaceFirst(
"/",
":/");
1402 if (tokens.length > 2) {
1405 String fileUsedTime = tokens[2].replaceAll(
"'",
"");
1406 Date usedDate = adobePluginDateFormat.parse(fileUsedTime);
1407 adobeUsedTime = usedDate.getTime()/1000;
1408 }
catch (ParseException ex) {
1411 logger.log(Level.WARNING, String.format(
"Failed to parse date/time %s for adobe file artifact.", tokens[2]), ex);
1414 Collection<BlackboardAttribute> attributes =
new ArrayList<>();
1415 attributes.add(
new BlackboardAttribute(TSK_PATH, getName(), fileName));
1416 attributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME, getName(), adobeUsedTime));
1417 attributes.add(
new BlackboardAttribute(TSK_COMMENT, getName(), comment));
1418 BlackboardArtifact bba = createArtifactWithAttributes(ARTIFACT_TYPE.TSK_RECENT_OBJECT, regFile, attributes);
1420 bbartifacts.add(bba);
1421 fileName = fileName.replace(
"\0",
"");
1422 bba = createAssociatedArtifact(FilenameUtils.normalize(fileName,
true), bba);
1424 bbartifacts.add(bba);
1427 line = reader.readLine();
1432 if (!bbartifacts.isEmpty()) {
1433 postArtifacts(bbartifacts);
1448 private void parseMediaPlayerMRUList(AbstractFile regFile, BufferedReader reader, String comment)
throws FileNotFoundException, IOException {
1449 List<BlackboardArtifact> bbartifacts =
new ArrayList<>();
1450 String line = reader.readLine();
1451 while (!line.contains(SECTION_DIVIDER)) {
1452 line = reader.readLine();
1454 if (line.contains(
"LastWrite")) {
1455 line = reader.readLine();
1458 while (!line.contains(SECTION_DIVIDER) && !line.contains(
"RecentFileList has no values.")) {
1460 String tokens[] = line.split(
"> ");
1461 String fileName = tokens[1];
1462 Collection<BlackboardAttribute> attributes =
new ArrayList<>();
1463 attributes.add(
new BlackboardAttribute(TSK_PATH, getName(), fileName));
1464 attributes.add(
new BlackboardAttribute(TSK_COMMENT, getName(), comment));
1465 BlackboardArtifact bba = createArtifactWithAttributes(ARTIFACT_TYPE.TSK_RECENT_OBJECT, regFile, attributes);
1467 bbartifacts.add(bba);
1468 bba = createAssociatedArtifact(fileName, bba);
1470 bbartifacts.add(bba);
1471 bba = createAssociatedArtifact(FilenameUtils.normalize(fileName,
true), bba);
1473 bbartifacts.add(bba);
1477 line = reader.readLine();
1482 if (!bbartifacts.isEmpty()) {
1483 postArtifacts(bbartifacts);
1498 private void parseGenericMRUList(AbstractFile regFile, BufferedReader reader, String comment)
throws FileNotFoundException, IOException {
1499 List<BlackboardArtifact> bbartifacts =
new ArrayList<>();
1500 String line = reader.readLine();
1501 while (!line.contains(SECTION_DIVIDER)) {
1502 line = reader.readLine();
1504 if (line.contains(
"LastWrite")) {
1505 line = reader.readLine();
1508 while (!line.contains(SECTION_DIVIDER) && !line.isEmpty() && !line.contains(
"Applets")
1509 && !line.contains((
"Recent File List"))) {
1511 String tokens[] = line.split(
"> ");
1512 String fileName = tokens[1];
1513 Collection<BlackboardAttribute> attributes =
new ArrayList<>();
1514 attributes.add(
new BlackboardAttribute(TSK_PATH, getName(), fileName));
1515 attributes.add(
new BlackboardAttribute(TSK_COMMENT, getName(), comment));
1516 BlackboardArtifact bba = createArtifactWithAttributes(ARTIFACT_TYPE.TSK_RECENT_OBJECT, regFile, attributes);
1518 bbartifacts.add(bba);
1519 bba = createAssociatedArtifact(FilenameUtils.normalize(fileName,
true), bba);
1521 bbartifacts.add(bba);
1524 line = reader.readLine();
1529 if (!bbartifacts.isEmpty()) {
1530 postArtifacts(bbartifacts);
1545 private void parseWinRARMRUList(AbstractFile regFile, BufferedReader reader, String comment)
throws FileNotFoundException, IOException {
1546 List<BlackboardArtifact> bbartifacts =
new ArrayList<>();
1547 String line = reader.readLine();
1548 while (!line.contains(SECTION_DIVIDER)) {
1549 line = reader.readLine();
1551 if (line.contains(
"LastWrite")) {
1552 line = reader.readLine();
1555 if (!line.isEmpty()) {
1556 while (!line.contains(SECTION_DIVIDER)) {
1558 String tokens[] = line.split(
"> ");
1559 String fileName = tokens[1];
1560 Collection<BlackboardAttribute> attributes =
new ArrayList<>();
1561 attributes.add(
new BlackboardAttribute(TSK_PATH, getName(), fileName));
1562 attributes.add(
new BlackboardAttribute(TSK_COMMENT, getName(), comment));
1563 BlackboardArtifact bba = createArtifactWithAttributes(ARTIFACT_TYPE.TSK_RECENT_OBJECT, regFile, attributes);
1565 bbartifacts.add(bba);
1566 bba = createAssociatedArtifact(FilenameUtils.normalize(fileName,
true), bba);
1568 bbartifacts.add(bba);
1571 line = reader.readLine();
1577 if (!bbartifacts.isEmpty()) {
1578 postArtifacts(bbartifacts);
1593 private void parse7ZipMRU(AbstractFile regFile, BufferedReader reader, String comment)
throws FileNotFoundException, IOException {
1594 List<BlackboardArtifact> bbartifacts =
new ArrayList<>();
1595 String line = reader.readLine();
1597 if (!line.contains(
"PathHistory:")) {
1598 while (!line.contains(
"PathHistory:") && !line.isEmpty()) {
1601 String fileName = line;
1602 Collection<BlackboardAttribute> attributes =
new ArrayList<>();
1603 attributes.add(
new BlackboardAttribute(TSK_PATH, getName(), fileName));
1604 attributes.add(
new BlackboardAttribute(TSK_COMMENT, getName(), comment));
1605 BlackboardArtifact bba = createArtifactWithAttributes(ARTIFACT_TYPE.TSK_RECENT_OBJECT, regFile, attributes);
1607 bbartifacts.add(bba);
1608 bba = createAssociatedArtifact(FilenameUtils.normalize(fileName,
true), bba);
1610 bbartifacts.add(bba);
1613 line = reader.readLine();
1617 if (!bbartifacts.isEmpty()) {
1618 postArtifacts(bbartifacts);
1633 private void parseOfficeDocs2010MRUList(AbstractFile regFile, BufferedReader reader, String comment)
throws FileNotFoundException, IOException {
1634 List<BlackboardArtifact> bbartifacts =
new ArrayList<>();
1635 String line = reader.readLine();
1639 while (!line.contains(SECTION_DIVIDER)) {
1640 line = reader.readLine();
1642 line = reader.readLine();
1643 while (!line.contains(SECTION_DIVIDER)) {
1646 String tokens[] = line.split(
"\\|");
1647 Long docDate = Long.valueOf(tokens[0]);
1648 String fileNameTokens[] = tokens[4].split(
" - ");
1649 String fileName = fileNameTokens[1];
1650 Collection<BlackboardAttribute> attributes =
new ArrayList<>();
1651 attributes.add(
new BlackboardAttribute(TSK_PATH, getName(), fileName));
1652 attributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME, getName(), docDate));
1653 attributes.add(
new BlackboardAttribute(TSK_COMMENT, getName(), comment));
1654 BlackboardArtifact bba = createArtifactWithAttributes(ARTIFACT_TYPE.TSK_RECENT_OBJECT, regFile, attributes);
1656 bbartifacts.add(bba);
1657 bba = createAssociatedArtifact(FilenameUtils.normalize(fileName,
true), bba);
1659 bbartifacts.add(bba);
1662 line = reader.readLine();
1665 if (!bbartifacts.isEmpty()) {
1666 postArtifacts(bbartifacts);
1681 private void parseOfficeTrustRecords(AbstractFile regFile, BufferedReader reader, String comment)
throws FileNotFoundException, IOException {
1682 String userProfile = regFile.getParentPath();
1683 userProfile = userProfile.substring(0, userProfile.length() - 1);
1684 List<BlackboardArtifact> bbartifacts =
new ArrayList<>();
1685 SimpleDateFormat pluginDateFormat =
new SimpleDateFormat(
"EEE MMM dd HH:mm:ss yyyy", US);
1686 Long usedTime = Long.valueOf(0);
1687 String line = reader.readLine();
1688 while (!line.contains(SECTION_DIVIDER)) {
1689 line = reader.readLine();
1691 usedTime = Long.valueOf(0);
1692 if (!line.contains(
"**") && !line.contains(
"----------") && !line.contains(
"LastWrite")
1693 && !line.contains(SECTION_DIVIDER) && !line.isEmpty() && !line.contains(
"TrustRecords")) {
1697 String fileName = null;
1698 String tokens[] = line.split(
" : ");
1699 fileName = tokens[1];
1700 fileName = fileName.replace(
"%USERPROFILE%", userProfile);
1703 String fileUsedTime = tokens[0].replaceAll(
" Z",
"");
1704 Date usedDate = pluginDateFormat.parse(fileUsedTime);
1705 usedTime = usedDate.getTime()/1000;
1706 }
catch (ParseException ex) {
1709 logger.log(Level.WARNING, String.format(
"Failed to parse date/time %s for TrustRecords artifact.", tokens[0]), ex);
1711 Collection<BlackboardAttribute> attributes =
new ArrayList<>();
1712 attributes.add(
new BlackboardAttribute(TSK_PATH, getName(), fileName));
1713 attributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME, getName(), usedTime));
1714 attributes.add(
new BlackboardAttribute(TSK_COMMENT, getName(), comment));
1715 BlackboardArtifact bba = createArtifactWithAttributes(ARTIFACT_TYPE.TSK_RECENT_OBJECT, regFile, attributes);
1717 bbartifacts.add(bba);
1718 bba = createAssociatedArtifact(FilenameUtils.normalize(fileName,
true), bba);
1720 bbartifacts.add(bba);
1726 if (!bbartifacts.isEmpty()) {
1727 postArtifacts(bbartifacts);
1740 private BlackboardArtifact createAssociatedArtifact(String filePathName, BlackboardArtifact bba) {
1742 String fileName = FilenameUtils.getName(filePathName);
1743 String filePath = FilenameUtils.getPath(filePathName);
1744 List<AbstractFile> sourceFiles;
1746 sourceFiles = fileManager.
findFiles(dataSource, fileName, filePath);
1747 if (!sourceFiles.isEmpty()) {
1748 for (AbstractFile sourceFile : sourceFiles) {
1749 if (sourceFile.getParentPath().endsWith(filePath)) {
1750 Collection<BlackboardAttribute> bbattributes2 =
new ArrayList<>();
1751 bbattributes2.addAll(Arrays.asList(
1752 new BlackboardAttribute(TSK_ASSOCIATED_ARTIFACT, this.getName(),
1753 bba.getArtifactID())));
1755 BlackboardArtifact associatedObjectBba = createArtifactWithAttributes(TSK_ASSOCIATED_OBJECT, sourceFile, bbattributes2);
1756 if (associatedObjectBba != null) {
1757 return associatedObjectBba;
1762 }
catch (TskCoreException ex) {
1765 logger.log(Level.WARNING, String.format(
"Error finding actual file %s. file may not exist", filePathName));
1780 private Map<String, String> makeUserNameMap(Content dataSource)
throws TskCoreException {
1781 Map<String, String> userNameMap =
new HashMap<>();
1783 List<BlackboardArtifact> accounts = blackboard.getArtifacts(TSK_OS_ACCOUNT.getTypeID(), dataSource.getId());
1785 for (BlackboardArtifact account : accounts) {
1786 BlackboardAttribute nameAttribute = getAttributeForArtifact(account, TSK_USER_NAME);
1787 BlackboardAttribute idAttribute = getAttributeForArtifact(account, TSK_USER_ID);
1789 String userName = nameAttribute != null ? nameAttribute.getDisplayString() :
"";
1790 String userID = idAttribute != null ? idAttribute.getDisplayString() :
"";
1792 if (!userID.isEmpty()) {
1793 userNameMap.put(userID, userName);
1810 private BlackboardAttribute getAttributeForArtifact(BlackboardArtifact artifact, BlackboardAttribute.ATTRIBUTE_TYPE type) throws TskCoreException {
1811 return artifact.getAttribute(
new BlackboardAttribute.Type(BlackboardAttribute.ATTRIBUTE_TYPE.fromID(type.getTypeID())));
1822 void createShellBagArtifacts(AbstractFile regFile, List<ShellBag> shellbags)
throws TskCoreException {
1823 List<BlackboardArtifact> artifacts =
new ArrayList<>();
1825 for (ShellBag bag : shellbags) {
1826 Collection<BlackboardAttribute> attributes =
new ArrayList<>();
1827 BlackboardArtifact artifact = regFile.newArtifact(getShellBagArtifact().getTypeID());
1828 attributes.add(
new BlackboardAttribute(TSK_PATH, getName(), bag.getResource()));
1829 attributes.add(
new BlackboardAttribute(getKeyAttribute(), getName(), bag.getKey()));
1832 time = bag.getLastWrite();
1834 attributes.add(
new BlackboardAttribute(getLastWriteAttribute(), getName(), time));
1837 time = bag.getModified();
1839 attributes.add(
new BlackboardAttribute(TSK_DATETIME_MODIFIED, getName(), time));
1842 time = bag.getCreated();
1844 attributes.add(
new BlackboardAttribute(TSK_DATETIME_CREATED, getName(), time));
1847 time = bag.getAccessed();
1849 attributes.add(
new BlackboardAttribute(TSK_DATETIME_ACCESSED, getName(), time));
1852 artifact.addAttributes(attributes);
1854 artifacts.add(artifact);
1857 postArtifacts(artifacts);
1869 private BlackboardArtifact.Type getShellBagArtifact() throws TskCoreException {
1870 if (shellBagArtifactType == null) {
1871 shellBagArtifactType = tskCase.getArtifactType(SHELLBAG_ARTIFACT_NAME);
1873 if(shellBagArtifactType == null) {
1875 tskCase.addBlackboardArtifactType(SHELLBAG_ARTIFACT_NAME, Bundle.Shellbag_Artifact_Display_Name());
1876 }
catch (TskDataException ex) {
1878 logger.log(Level.INFO, String.format(
"%s may have already been defined for this case", SHELLBAG_ARTIFACT_NAME));
1881 shellBagArtifactType = tskCase.getArtifactType(SHELLBAG_ARTIFACT_NAME);
1885 return shellBagArtifactType;
1896 private BlackboardAttribute.Type getLastWriteAttribute() throws TskCoreException {
1897 if (shellBagLastWriteAttributeType == null) {
1899 shellBagLastWriteAttributeType = tskCase.addArtifactAttributeType(SHELLBAG_ATTRIBUTE_LAST_WRITE,
1900 BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DATETIME,
1901 Bundle.Shellbag_Last_Write_Attribute_Display_Name());
1902 }
catch (TskDataException ex) {
1904 shellBagLastWriteAttributeType = tskCase.getAttributeType(SHELLBAG_ATTRIBUTE_LAST_WRITE);
1907 return shellBagLastWriteAttributeType;
1918 private BlackboardAttribute.Type getKeyAttribute() throws TskCoreException {
1919 if (shellBagKeyAttributeType == null) {
1921 shellBagKeyAttributeType = tskCase.addArtifactAttributeType(SHELLBAG_ATTRIBUTE_KEY,
1922 BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING,
1923 Bundle.Shellbag_Key_Attribute_Display_Name());
1924 }
catch (TskDataException ex) {
1926 shellBagKeyAttributeType = tskCase.getAttributeType(SHELLBAG_ATTRIBUTE_KEY);
1929 return shellBagKeyAttributeType;
1941 Map<String, List<String>> readGroups(BufferedReader bufferedReader)
throws IOException {
1942 Map<String, List<String>> groupMap =
new HashMap<>();
1944 String line = bufferedReader.readLine();
1947 String groupName = null;
1949 while (line != null && !line.contains(SECTION_DIVIDER)) {
1951 if (line.contains(
"Group Name")) {
1952 String value = line.replaceAll(
"Group Name\\s*?:",
"").trim();
1953 groupName = (value.replaceAll(
"\\[\\d*?\\]",
"")).trim();
1954 int startIndex = value.indexOf(
'[');
1955 int endIndex = value.indexOf(
']');
1957 if (startIndex != -1 && endIndex != -1) {
1958 String countStr = value.substring(startIndex + 1, endIndex);
1959 userCount = Integer.parseInt(countStr);
1961 }
else if (line.matches(
"Users\\s*?:")) {
1962 for (
int i = 0; i < userCount; i++) {
1963 line = bufferedReader.readLine();
1965 String sid = line.trim();
1966 List<String> groupList = groupMap.get(sid);
1967 if (groupList == null) {
1968 groupList =
new ArrayList<>();
1969 groupMap.put(sid, groupList);
1971 groupList.add(groupName);
1976 line = bufferedReader.readLine();
1990 private Map.Entry<String, String> getSAMKeyValue(String line) {
1991 int index = line.indexOf(
':');
1992 Map.Entry<String, String> returnValue = null;
1994 String value = null;
1997 key = line.substring(0, index).trim();
1998 if (index + 1 < line.length()) {
1999 value = line.substring(index + 1).trim();
2004 }
else if (line.contains(
"-->")) {
2005 key = line.replace(
"-->",
"").trim();
2010 returnValue =
new AbstractMap.SimpleEntry<>(key, value);
2017 public void process(Content dataSource, IngestJobContext context, DataSourceIngestModuleProgress progressBar) {
2018 this.dataSource = dataSource;
2019 this.context = context;
2021 progressBar.progress(Bundle.Progress_Message_Analyze_Registry());
2022 analyzeRegistryFiles();
2031 public String autopsyPlugins =
"";
2032 public String fullPlugins =
"";
synchronized List< AbstractFile > findFiles(String fileName)