Examples of USBInfo


Examples of org.sleuthkit.autopsy.recentactivity.UsbDeviceIdMapper.USBInfo

                                    bbattributes.add(new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME.getTypeID(), parentModuleName, usbMtime));
                                    String dev = artnode.getAttribute("dev"); //NON-NLS
                                    String make = "";
                                    String model = dev;
                                    if (dev.toLowerCase().contains("vid")) { //NON-NLS
                                        USBInfo info = usbMapper.parseAndLookup(dev);
                                        if (info.getVendor() != null) {
                                            make = info.getVendor();
                                        }
                                        if (info.getProduct() != null) {
                                            model = info.getProduct();
                                        }
                                    }
                                    bbattributes.add(new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DEVICE_MAKE.getTypeID(), parentModuleName, make));
                                    bbattributes.add(new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DEVICE_MODEL.getTypeID(), parentModuleName, model));
                                    bbattributes.add(new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DEVICE_ID.getTypeID(), parentModuleName, value));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.