diff --git a/.gitignore b/.gitignore index 62fc485729..7d7a3e0543 100644 --- a/.gitignore +++ b/.gitignore @@ -3,20 +3,23 @@ /*/build/ */nbproject/private/* /nbproject/private/* - +/Core/release/ /Core/src/org/sleuthkit/autopsy/coreutils/Version.properties +/Core/src/org/sleuthkit/autopsy/casemodule/docs/QuickStart.html +/Core/src/org/sleuthkit/autopsy/casemodule/docs/screenshot.png +/Core/src/org/sleuthkit/autopsy/datamodel/ranges.csv /Core/build/ /Core/dist/ /Core/nbproject/* !/Core/nbproject/project.xml !/Core/nbproject/project.properties - +/CoreLibs/release/ /CoreLibs/build/ /CoreLibs/dist/ /CoreLibs/nbproject/* !/CoreLibs/nbproject/project.xml !/CoreLibs/nbproject/project.properties - +KeywordSearch/release/ /KeywordSearch/build/ /KeywordSearch/dist/ /KeywordSearch/nbproject/* @@ -46,6 +49,8 @@ genfiles.properties /test/script/DBDump.txt /test/script/SortedData-Diff.txt /test/script/SortedData.txt +/test/script/myconfig.xml +/test/script/*/*.xml /test/build/ /test/dist/ /test/nbproject/* @@ -59,19 +64,12 @@ genfiles.properties /jdiff-logs/* /gen_version.txt hs_err_pid*.log -Core/src/org/sleuthkit/autopsy/casemodule/docs/QuickStart.html -Core/src/org/sleuthkit/autopsy/casemodule/docs/screenshot.png -Core/src/org/sleuthkit/autopsy/datamodel/ranges.csv -/test/script/myconfig.xml -/test/script/*/*.xml + + .DS_Store .*.swp - - -Core/release/ -CoreLibs/release/ -Experimental/release/ -ImageGallery/release/ -KeywordSearch/release/ -thunderbirdparser/release/ +/ImageGallery/release/ +/RecentActivity/release/ +/Experimental/release/ +/thunderbirdparser/release/ diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardAddingProgressPanel.java b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardAddingProgressPanel.java index 8b1a4dd1e0..22a6ee9762 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardAddingProgressPanel.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardAddingProgressPanel.java @@ -20,17 +20,30 @@ package org.sleuthkit.autopsy.casemodule; import java.awt.Color; import java.awt.EventQueue; +import java.awt.Window; +import java.util.ArrayList; +import java.util.Collections; import java.util.HashSet; import java.util.Iterator; +import java.util.List; import java.util.Set; +import java.util.UUID; +import javax.swing.JOptionPane; +import javax.swing.SwingUtilities; import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; import org.openide.WizardDescriptor; import org.openide.util.HelpCtx; import org.openide.util.Lookup; import org.openide.util.NbBundle; +import org.sleuthkit.autopsy.corecomponentinterfaces.DataSourceProcessor; +import org.sleuthkit.autopsy.corecomponentinterfaces.DataSourceProcessorCallback; import org.sleuthkit.autopsy.corecomponentinterfaces.DataSourceProcessorProgressMonitor; +import org.sleuthkit.autopsy.coreutils.PlatformUtil; +import org.sleuthkit.autopsy.ingest.IngestJobSettings; +import org.sleuthkit.autopsy.ingest.IngestManager; import org.sleuthkit.autopsy.ingest.runIngestModuleWizard.ShortcutWizardDescriptorPanel; +import org.sleuthkit.datamodel.Content; /** * The final panel of the add image wizard. It displays a progress bar and @@ -42,21 +55,35 @@ import org.sleuthkit.autopsy.ingest.runIngestModuleWizard.ShortcutWizardDescript */ class AddImageWizardAddingProgressPanel extends ShortcutWizardDescriptorPanel { + private boolean readyToIngest = false; + // task that will clean up the created database file if the wizard is cancelled before it finishes + private AddImageAction.CleanupTask cleanupTask; + + private final AddImageAction addImageAction; + + private DataSourceProcessor dsProcessor = null; + private boolean cancelled; /** * flag to indicate that the image adding process is finished and this panel * is completed(valid) */ private boolean imgAdded = false; + private boolean ingested = false; /** * The visual component that displays this panel. If you need to access the * component from this class, just use getComponent(). */ private AddImageWizardAddingProgressVisual component; private final Set listeners = new HashSet<>(1); // or can use ChangeSupport in NB 6.0 - + private final List newContents = Collections.synchronizedList(new ArrayList()); private final DSPProgressMonitorImpl dspProgressMonitorImpl = new DSPProgressMonitorImpl(); + private IngestJobSettings ingestJobSettings; - public DSPProgressMonitorImpl getDSPProgressMonitorImpl() { + AddImageWizardAddingProgressPanel(AddImageAction action) { + this.addImageAction = action; + } + + DSPProgressMonitorImpl getDSPProgressMonitorImpl() { return dspProgressMonitorImpl; } @@ -209,12 +236,24 @@ class AddImageWizardAddingProgressPanel extends ShortcutWizardDescriptorPanel { */ @Override public void readSettings(WizardDescriptor settings) { + // Start ingest if it hasn't already been started + startIngest(); settings.setOptions(new Object[]{WizardDescriptor.PREVIOUS_OPTION, WizardDescriptor.NEXT_OPTION, WizardDescriptor.FINISH_OPTION, WizardDescriptor.CANCEL_OPTION}); if (imgAdded) { getComponent().setStateFinished(); } } + void resetReadyToIngest() { + this.readyToIngest = false; + } + + void setIngestJobSettings(IngestJobSettings ingestSettings) { + showWarnings(ingestSettings); + this.readyToIngest = true; + this.ingestJobSettings = ingestSettings; + } + /** * this doesn't appear to store anything? plus, there are no settings in * this panel -jm @@ -240,4 +279,136 @@ class AddImageWizardAddingProgressPanel extends ShortcutWizardDescriptorPanel { getComponent().showErrors(errorString, critical); } + /** + * Start ingest after verifying we have a new image, we are ready to ingest, + * and we haven't already ingested. + */ + private void startIngest() { + if (!newContents.isEmpty() && readyToIngest && !ingested) { + ingested = true; + IngestManager.getInstance().queueIngestJob(newContents, ingestJobSettings); + setStateFinished(); + } + } + + private static void showWarnings(IngestJobSettings ingestJobSettings) { + List warnings = ingestJobSettings.getWarnings(); + if (warnings.isEmpty() == false) { + StringBuilder warningMessage = new StringBuilder(); + for (String warning : warnings) { + warningMessage.append(warning).append("\n"); + } + JOptionPane.showMessageDialog(null, warningMessage.toString()); + } + } + + /** + * Starts the Data source processing by kicking off the selected + * DataSourceProcessor + */ + void startDataSourceProcessing(DataSourceProcessor dsp) { + if (dsProcessor == null) { //this can only be run once + final UUID dataSourceId = UUID.randomUUID(); + newContents.clear(); + cleanupTask = null; + readyToIngest = false; + dsProcessor = dsp; + + // Add a cleanup task to interrupt the background process if the + // wizard exits while the background process is running. + cleanupTask = addImageAction.new CleanupTask() { + @Override + void cleanup() throws Exception { + cancelDataSourceProcessing(dataSourceId); + cancelled = true; + } + }; + + cleanupTask.enable(); + + new Thread(() -> { + Case.getCurrentCase().notifyAddingDataSource(dataSourceId); + }).start(); + DataSourceProcessorCallback cbObj = new DataSourceProcessorCallback() { + @Override + public void doneEDT(DataSourceProcessorCallback.DataSourceProcessorResult result, List errList, List contents) { + dataSourceProcessorDone(dataSourceId, result, errList, contents); + } + }; + + setStateStarted(); + + // Kick off the DSProcessor + dsProcessor.run(getDSPProgressMonitorImpl(), cbObj); + } + } + + /* + * Cancels the data source processing - in case the users presses 'Cancel' + */ + private void cancelDataSourceProcessing(UUID dataSourceId) { + dsProcessor.cancel(); + } + + /* + * Callback for the data source processor. Invoked by the DSP on the EDT + * thread, when it finishes processing the data source. + */ + private void dataSourceProcessorDone(UUID dataSourceId, DataSourceProcessorCallback.DataSourceProcessorResult result, List errList, List contents) { + // disable the cleanup task + cleanupTask.disable(); + + // Get attention for the process finish + // this caused a crash on OS X + if (PlatformUtil.isWindowsOS() == true) { + java.awt.Toolkit.getDefaultToolkit().beep(); //BEEP! + } + AddImageWizardAddingProgressVisual panel = getComponent(); + if (panel != null) { + Window w = SwingUtilities.getWindowAncestor(panel); + if (w != null) { + w.toFront(); + } + } + // Tell the panel we're done + setStateFinished(); + + //check the result and display to user + if (result == DataSourceProcessorCallback.DataSourceProcessorResult.NO_ERRORS) { + getComponent().setProgressBarTextAndColor( + NbBundle.getMessage(this.getClass(), "AddImageWizardIngestConfigPanel.dsProcDone.noErrs.text"), 100, Color.black); + } else { + getComponent().setProgressBarTextAndColor( + NbBundle.getMessage(this.getClass(), "AddImageWizardIngestConfigPanel.dsProcDone.errs.text"), 100, Color.red); + } + + //if errors, display them on the progress panel + boolean critErr = false; + if (result == DataSourceProcessorCallback.DataSourceProcessorResult.CRITICAL_ERRORS) { + critErr = true; + } + for (String err : errList) { + // TBD: there probably should be an error level for each error + addErrors(err, critErr); + } + + //notify the UI of the new content added to the case + new Thread(() -> { + if (!contents.isEmpty()) { + Case.getCurrentCase().notifyDataSourceAdded(contents.get(0), dataSourceId); + } else { + Case.getCurrentCase().notifyFailedAddingDataSource(dataSourceId); + } + }).start(); + + if (!cancelled) { + newContents.clear(); + newContents.addAll(contents); + setStateStarted(); + startIngest(); + } else { + cancelled = false; + } + + } } diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardDataSourceSettingsPanel.java b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardDataSourceSettingsPanel.java index 1643769be0..8f1dc59444 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardDataSourceSettingsPanel.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardDataSourceSettingsPanel.java @@ -50,7 +50,6 @@ class AddImageWizardDataSourceSettingsPanel extends ShortcutWizardDescriptorPane // paths to any set hash lookup databases (can be null) AddImageWizardDataSourceSettingsPanel() { - } /** @@ -169,7 +168,7 @@ class AddImageWizardDataSourceSettingsPanel extends ShortcutWizardDescriptorPane public void readSettings(WizardDescriptor settings) { // Prepopulate the image directory from the properties file try { - + // If there is a process object in the settings, revert it and remove it from the settings AddImageAction.CleanupTask cleanupTask = (AddImageAction.CleanupTask) settings.getProperty(AddImageAction.IMAGECLEANUPTASK_PROP); if (cleanupTask != null) { @@ -184,7 +183,7 @@ class AddImageWizardDataSourceSettingsPanel extends ShortcutWizardDescriptorPane } } catch (Exception e) { } - component.setDspSelection((String)settings.getProperty("SelectedDsp")); //NON-NLS magic string used SelectDataSourceProcessorPanel + component.setDspSelection((String) settings.getProperty("SelectedDsp")); //NON-NLS magic string used SelectDataSourceProcessorPanel } /** @@ -197,7 +196,7 @@ class AddImageWizardDataSourceSettingsPanel extends ShortcutWizardDescriptorPane * @param settings the setting to be stored to */ @Override - public void storeSettings(WizardDescriptor settings) { + public void storeSettings(WizardDescriptor settings) { } /** diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardIngestConfigPanel.java b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardIngestConfigPanel.java index 1d7bbb8a13..2dad6784c3 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardIngestConfigPanel.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardIngestConfigPanel.java @@ -19,28 +19,17 @@ package org.sleuthkit.autopsy.casemodule; import org.openide.util.NbBundle; -import java.awt.Color; import java.awt.Component; -import java.awt.Window; -import java.util.ArrayList; -import java.util.Collections; import java.util.List; -import java.util.UUID; import javax.swing.JButton; import javax.swing.JOptionPane; -import javax.swing.SwingUtilities; import javax.swing.event.ChangeListener; import org.openide.WizardDescriptor; import org.openide.util.HelpCtx; import org.openide.util.NbBundle.Messages; -import org.sleuthkit.datamodel.Content; -import org.sleuthkit.autopsy.corecomponentinterfaces.DataSourceProcessorCallback; -import org.sleuthkit.autopsy.corecomponentinterfaces.DataSourceProcessor; import org.sleuthkit.autopsy.coreutils.ModuleSettings; -import org.sleuthkit.autopsy.coreutils.PlatformUtil; import org.sleuthkit.autopsy.ingest.IngestJobSettings; import org.sleuthkit.autopsy.ingest.IngestJobSettingsPanel; -import org.sleuthkit.autopsy.ingest.IngestManager; import org.sleuthkit.autopsy.ingest.runIngestModuleWizard.IngestProfileSelectionWizardPanel; import org.sleuthkit.autopsy.ingest.runIngestModuleWizard.ShortcutWizardDescriptorPanel; @@ -60,24 +49,10 @@ class AddImageWizardIngestConfigPanel extends ShortcutWizardDescriptorPanel { */ private Component component = null; private String lastProfileUsed = AddImageWizardIngestConfigPanel.class.getCanonicalName(); - private final List newContents = Collections.synchronizedList(new ArrayList()); - private boolean ingested = false; - private boolean readyToIngest = false; - // task that will clean up the created database file if the wizard is cancelled before it finishes - private AddImageAction.CleanupTask cleanupTask; - - private final AddImageAction addImageAction; - private final AddImageWizardAddingProgressPanel progressPanel; - private final AddImageWizardDataSourceSettingsPanel dataSourcePanel; - private DataSourceProcessor dsProcessor; - private boolean cancelled; - - AddImageWizardIngestConfigPanel(AddImageWizardDataSourceSettingsPanel dsPanel, AddImageAction action, AddImageWizardAddingProgressPanel proPanel) { - this.addImageAction = action; + AddImageWizardIngestConfigPanel(AddImageWizardAddingProgressPanel proPanel) { this.progressPanel = proPanel; - this.dataSourcePanel = dsPanel; IngestJobSettings ingestJobSettings = new IngestJobSettings(AddImageWizardIngestConfigPanel.class.getCanonicalName()); showWarnings(ingestJobSettings); //When this panel is viewed by the user it will always be displaying the @@ -170,12 +145,6 @@ class AddImageWizardIngestConfigPanel extends ShortcutWizardDescriptorPanel { NbBundle.getMessage(this.getClass(), "AddImageWizardIngestConfigPanel.CANCEL_BUTTON.text")); cancel.setEnabled(false); settings.setOptions(new Object[]{WizardDescriptor.PREVIOUS_OPTION, WizardDescriptor.NEXT_OPTION, WizardDescriptor.FINISH_OPTION, cancel}); - cleanupTask = null; - readyToIngest = false; - newContents.clear(); - // Start processing the data source by handing it off to the selected DSP, - // so it gets going in the background while the user is still picking the Ingest modules - startDataSourceProcessing(); } /** @@ -190,12 +159,8 @@ class AddImageWizardIngestConfigPanel extends ShortcutWizardDescriptorPanel { @Override public void storeSettings(WizardDescriptor settings) { IngestJobSettings ingestJobSettings = ingestJobSettingsPanel.getSettings(); - ingestJobSettings.save(); - showWarnings(ingestJobSettings); - - // Start ingest if it hasn't already been started - readyToIngest = true; - startIngest(); + ingestJobSettings.save(); + progressPanel.setIngestJobSettings(ingestJobSettings); //prepare ingest for being started } private static void showWarnings(IngestJobSettings ingestJobSettings) { @@ -222,132 +187,7 @@ class AddImageWizardIngestConfigPanel extends ShortcutWizardDescriptorPanel { } //Because this panel kicks off ingest during the wizard we need to //swap out the ingestJobSettings for the ones of the chosen profile before - //we start processing IngestJobSettings ingestJobSettings = new IngestJobSettings(lastProfileUsed); - ingestJobSettingsPanel = new IngestJobSettingsPanel(ingestJobSettings); - showWarnings(ingestJobSettings); - component = new AddImageWizardIngestConfigVisual(this.ingestJobSettingsPanel); - readyToIngest = true; - startDataSourceProcessing(); - } - - /** - * Start ingest after verifying we have a new image, we are ready to ingest, - * and we haven't already ingested. - */ - private void startIngest() { - if (!newContents.isEmpty() && readyToIngest && !ingested) { - ingested = true; - IngestManager.getInstance().queueIngestJob(newContents, ingestJobSettingsPanel.getSettings()); - progressPanel.setStateFinished(); - } - } - - /** - * Starts the Data source processing by kicking off the selected - * DataSourceProcessor - */ - private void startDataSourceProcessing() { - final UUID dataSourceId = UUID.randomUUID(); - - // Add a cleanup task to interrupt the background process if the - // wizard exits while the background process is running. - cleanupTask = addImageAction.new CleanupTask() { - @Override - void cleanup() throws Exception { - cancelDataSourceProcessing(dataSourceId); - cancelled = true; - } - }; - - cleanupTask.enable(); - - // get the selected DSProcessor - dsProcessor = dataSourcePanel.getComponent().getCurrentDSProcessor(); - - new Thread(() -> { - Case.getCurrentCase().notifyAddingDataSource(dataSourceId); - }).start(); - DataSourceProcessorCallback cbObj = new DataSourceProcessorCallback() { - @Override - public void doneEDT(DataSourceProcessorCallback.DataSourceProcessorResult result, List errList, List contents) { - dataSourceProcessorDone(dataSourceId, result, errList, contents); - } - }; - - progressPanel.setStateStarted(); - - // Kick off the DSProcessor - dsProcessor.run(progressPanel.getDSPProgressMonitorImpl(), cbObj); - - } - - /* - * Cancels the data source processing - in case the users presses 'Cancel' - */ - private void cancelDataSourceProcessing(UUID dataSourceId) { - dsProcessor.cancel(); - } - - /* - * Callback for the data source processor. Invoked by the DSP on the EDT - * thread, when it finishes processing the data source. - */ - private void dataSourceProcessorDone(UUID dataSourceId, DataSourceProcessorCallback.DataSourceProcessorResult result, List errList, List contents) { - // disable the cleanup task - cleanupTask.disable(); - - // Get attention for the process finish - // this caused a crash on OS X - if (PlatformUtil.isWindowsOS() == true) { - java.awt.Toolkit.getDefaultToolkit().beep(); //BEEP! - } - AddImageWizardAddingProgressVisual panel = progressPanel.getComponent(); - if (panel != null) { - Window w = SwingUtilities.getWindowAncestor(panel); - if (w != null) { - w.toFront(); - } - } - // Tell the panel we're done - progressPanel.setStateFinished(); - - //check the result and display to user - if (result == DataSourceProcessorCallback.DataSourceProcessorResult.NO_ERRORS) { - progressPanel.getComponent().setProgressBarTextAndColor( - NbBundle.getMessage(this.getClass(), "AddImageWizardIngestConfigPanel.dsProcDone.noErrs.text"), 100, Color.black); - } else { - progressPanel.getComponent().setProgressBarTextAndColor( - NbBundle.getMessage(this.getClass(), "AddImageWizardIngestConfigPanel.dsProcDone.errs.text"), 100, Color.red); - } - - //if errors, display them on the progress panel - boolean critErr = false; - if (result == DataSourceProcessorCallback.DataSourceProcessorResult.CRITICAL_ERRORS) { - critErr = true; - } - for (String err : errList) { - // TBD: there probably should be an error level for each error - progressPanel.addErrors(err, critErr); - } - - //notify the UI of the new content added to the case - new Thread(() -> { - if (!contents.isEmpty()) { - Case.getCurrentCase().notifyDataSourceAdded(contents.get(0), dataSourceId); - } else { - Case.getCurrentCase().notifyFailedAddingDataSource(dataSourceId); - } - }).start(); - - if (!cancelled) { - newContents.clear(); - newContents.addAll(contents); - progressPanel.setStateStarted(); - startIngest(); - } else { - cancelled = false; - } - + progressPanel.setIngestJobSettings(ingestJobSettings); //prepare ingest for being started } } diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardIterator.java b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardIterator.java index 3558ffe83b..9dad21446e 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardIterator.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardIterator.java @@ -56,10 +56,10 @@ class AddImageWizardIterator implements WizardDescriptor.Iterator(); AddImageWizardSelectDspPanel dspSelection = new AddImageWizardSelectDspPanel(); panels.add(dspSelection); - AddImageWizardAddingProgressPanel progressPanel = new AddImageWizardAddingProgressPanel(); + AddImageWizardAddingProgressPanel progressPanel = new AddImageWizardAddingProgressPanel(action); AddImageWizardDataSourceSettingsPanel dsPanel = new AddImageWizardDataSourceSettingsPanel(); - AddImageWizardIngestConfigPanel ingestConfigPanel = new AddImageWizardIngestConfigPanel(dsPanel, action, progressPanel); + AddImageWizardIngestConfigPanel ingestConfigPanel = new AddImageWizardIngestConfigPanel(progressPanel); panels.add(dsPanel); List profiles = IngestProfiles.getIngestProfiles(); if (!profiles.isEmpty()) { @@ -174,7 +174,13 @@ class AddImageWizardIterator implements WizardDescriptor.Iterator | +NewCaseWizardPanel1.validate.errMsg.invalidSymbols=The Case Name cannot contain any of the following symbols\: \\ / \: * ? " < > | NewCaseWizardPanel1.validate.errMsg.dirExists=Case directory ''{0}'' already exists. NewCaseWizardPanel1.validate.confMsg.createDir.msg=The base directory "{0}" does not exist. \n\n\ Do you want to create that directory? diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/Bundle_ja.properties b/Core/src/org/sleuthkit/autopsy/casemodule/Bundle_ja.properties index 68605bb1b8..3ae0166f8c 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/Bundle_ja.properties +++ b/Core/src/org/sleuthkit/autopsy/casemodule/Bundle_ja.properties @@ -135,7 +135,7 @@ NewCaseVisualPanel1.caseDirBrowse.selectButton.text=\u9078\u629e NewCaseVisualPanel2.getName.text=\u4ed8\u52a0\u60c5\u5831 NewCaseWizardAction.newCase.windowTitle.text=\u65b0\u898f\u30b1\u30fc\u30b9\u60c5\u5831 NewCaseWizardAction.getName.text=\u65b0\u898f\u30b1\u30fc\u30b9\u30a6\u30a3\u30b6\u30fc\u30c9 -NewCaseWizardPanel1.validate.errMsg.invalidSymbols=\u30b1\u30fc\u30b9\u540d\u306b\u306f\u6b21\u306e\u8a18\u53f7\u3092\u542b\u3081\u307e\u305b\u3093\uff1a\\ / \: * ? " < > | +NewCaseWizardPanel1.validate.errMsg.invalidSymbols=\u30b1\u30fc\u30b9\u540d\u306b\u306f\u6b21\u306e\u8a18\u53f7\u3092\u542b\u3081\u307e\u305b\u3093\uff1a\\ / \: * ? " < > | NewCaseWizardPanel1.validate.errMsg.dirExists=\u30b1\u30fc\u30b9\u30c7\u30a3\u30ec\u30af\u30c8\u30ea''{0}''\u306f\u65e2\u306b\u5b58\u5728\u3057\u307e\u3059\u3002 NewCaseWizardPanel1.validate.confMsg.createDir.msg=\u30d9\u30fc\u30b9\u30c7\u30a3\u30ec\u30af\u30c8\u30ea''{0}''\u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002\n\n\ \u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059\u304b\uff1f diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/Case.java b/Core/src/org/sleuthkit/autopsy/casemodule/Case.java index 5facca3088..63cffcaa0c 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/Case.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/Case.java @@ -116,7 +116,7 @@ public class Case { private static final int NAME_LOCK_TIMOUT_HOURS = 12; private static final int SHARED_DIR_LOCK_TIMOUT_HOURS = 12; private static final int RESOURCE_LOCK_TIMOUT_HOURS = 12; - private static final int MAX_SANITIZED_CASE_NAME_LEN = 47; + private static final int MAX_CASEDB_NAME_LEN_MINUS_TIMESTAMP = 47; //Truncate to 63-16=47 chars to accomodate the timestamp private static final String SINGLE_USER_CASE_DB_NAME = "autopsy.db"; private static final String EVENT_CHANNEL_NAME = "%s-Case-Events"; //NON-NLS private static final String CACHE_FOLDER = "Cache"; //NON-NLS @@ -725,56 +725,83 @@ public class Case { } /** - * Cleans up the display name for a case to make a suitable case name for - * use in case direcotry paths, coordination service locks, PostgreSQL - * database names, Active MQ message message channels, etc. - * - * PostgreSQL: - * http://www.postgresql.org/docs/9.4/static/sql-syntax-lexical.html 63 - * chars max, must start with a-z or _ following chars can be letters _ or - * digits + * Transforms the display name for a case to make a suitable case name for + * use in case directory paths, coordination service locks, Active MQ + * message channels, etc. * * ActiveMQ: * http://activemq.2283324.n4.nabble.com/What-are-limitations-restrictions-on-destination-name-td4664141.html * may not be ? * - * @param caseName A candidate case name. + * @param caseDisplayName A case display name. * - * @return The sanitized case name. + * @return The case display name transformed into a corresponding case name. * * @throws org.sleuthkit.autopsy.casemodule.Case.IllegalCaseNameException */ - public static String displayNameToCaseName(String caseName) throws IllegalCaseNameException { + public static String displayNameToCaseName(String caseDisplayName) throws IllegalCaseNameException { - String result; + /* + * Remove all non-ASCII characters. + */ + String caseName = caseDisplayName.replaceAll("[^\\p{ASCII}]", "_"); //NON-NLS - // Remove all non-ASCII characters - result = caseName.replaceAll("[^\\p{ASCII}]", "_"); //NON-NLS + /* + * Remove all control characters. + */ + caseName = caseName.replaceAll("[\\p{Cntrl}]", "_"); //NON-NLS - // Remove all control characters - result = result.replaceAll("[\\p{Cntrl}]", "_"); //NON-NLS + /* + * Remove /, \, :, ?, space, ' ". + */ + caseName = caseName.replaceAll("[ /?:'\"\\\\]", "_"); //NON-NLS - // Remove / \ : ? space ' " - result = result.replaceAll("[ /?:'\"\\\\]", "_"); //NON-NLS + /* + * Make it all lowercase. + */ + caseName = caseName.toLowerCase(); - // Make it all lowercase - result = result.toLowerCase(); - - // Must start with letter or underscore for PostgreSQL. If not, prepend an underscore. - if (result.length() > 0 && !(Character.isLetter(result.codePointAt(0))) && !(result.codePointAt(0) == '_')) { - result = "_" + result; + if (caseName.isEmpty()) { + throw new IllegalCaseNameException(String.format("Failed to convert case name '%s'", caseDisplayName)); } - // Chop to 63-16=47 left (63 max for PostgreSQL, taking 16 for the date _20151225_123456) - if (result.length() > MAX_SANITIZED_CASE_NAME_LEN) { - result = result.substring(0, MAX_SANITIZED_CASE_NAME_LEN); + return caseName; + } + + /** + * Transforms a case name into a name for a PostgreSQL database that can be + * safely used in SQL commands as described at + * http://www.postgresql.org/docs/9.4/static/sql-syntax-lexical.html: 63 + * chars max, must start with a letter or underscore, following chars can be + * letters, underscores, or digits. A timestamp suffix is added to ensure + * uniqueness. + * + * @param caseName The case name. + * + * @return The case name transformed into a corresponding PostgreSQL + * case database name. + */ + private static String caseNameToCaseDbName(String caseName) throws IllegalCaseNameException { + /* + * Must start with letter or underscore. If not, prepend an underscore. + */ + String dbName = caseName; + if (dbName.length() > 0 && !(Character.isLetter(dbName.codePointAt(0))) && !(dbName.codePointAt(0) == '_')) { + dbName = "_" + dbName; } - if (result.isEmpty()) { - throw new IllegalCaseNameException(String.format("Failed to sanitize case name '%s'", caseName)); + /* + * Truncate to 63-16=47 chars to accomodate the timestamp, then add the + * timestamp. + */ + if (dbName.length() > MAX_CASEDB_NAME_LEN_MINUS_TIMESTAMP) { + dbName = dbName.substring(0, MAX_CASEDB_NAME_LEN_MINUS_TIMESTAMP); } + SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMdd_HHmmss"); + Date date = new Date(); + dbName = dbName + "_" + dateFormat.format(date); - return result; + return dbName; } /** @@ -1740,6 +1767,7 @@ public class Case { @Messages({ "Case.progressMessage.creatingCaseDirectory=Creating case directory...", "Case.progressMessage.creatingCaseDatabase=Creating case database...", + "Case.exceptionMessage.couldNotCreateCaseDatabaseName=Failed to create case database name from case name.", "Case.progressMessage.creatingCaseMetadataFile=Creating case metadata file...", "Case.exceptionMessage.couldNotCreateMetadataFile=Failed to create case metadata file.", "Case.exceptionMessage.couldNotCreateCaseDatabase=Failed to create case database." @@ -1775,25 +1803,27 @@ public class Case { */ progressIndicator.progress(Bundle.Case_progressMessage_creatingCaseDatabase()); String dbName = null; + try { + if (CaseType.SINGLE_USER_CASE == caseType) { + dbName = SINGLE_USER_CASE_DB_NAME; + } else if (CaseType.MULTI_USER_CASE == caseType) { + dbName = caseNameToCaseDbName(caseName); + } + } catch (IllegalCaseNameException ex) { + throw new CaseActionException(Bundle.Case_exceptionMessage_couldNotCreateCaseDatabaseName(), ex); + } try { if (CaseType.SINGLE_USER_CASE == caseType) { /* * For single-user cases, the case database is a SQLite database - * with a fixed name and is physically located in the root of - * the case directory. + * physically located in the root of the case directory. */ - dbName = SINGLE_USER_CASE_DB_NAME; this.caseDb = SleuthkitCase.newCase(Paths.get(caseDir, SINGLE_USER_CASE_DB_NAME).toString()); } else if (CaseType.MULTI_USER_CASE == caseType) { /* * For multi-user cases, the case database is a PostgreSQL - * database with a name consiting of the case name with a time - * stamp suffix and is physically located on the database - * server. + * database physically located on the database server. */ - SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMdd_HHmmss"); - Date date = new Date(); - dbName = caseName + "_" + dateFormat.format(date); this.caseDb = SleuthkitCase.newCase(dbName, UserPreferences.getDatabaseConnectionInfo(), caseDir); } } catch (TskCoreException ex) { diff --git a/CoreLibs/build.xml b/CoreLibs/build.xml index abafbf9848..4084652c2c 100644 --- a/CoreLibs/build.xml +++ b/CoreLibs/build.xml @@ -7,11 +7,6 @@ - - - - - @@ -23,6 +18,8 @@ + + @@ -31,7 +28,7 @@ - + - + Builds, tests, and runs the project org.sleuthkit.autopsy.recentactivity. + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/RecentActivity/ivy.xml b/RecentActivity/ivy.xml new file mode 100644 index 0000000000..9b857153ee --- /dev/null +++ b/RecentActivity/ivy.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/RecentActivity/ivysettings.xml b/RecentActivity/ivysettings.xml new file mode 100644 index 0000000000..c27d905255 --- /dev/null +++ b/RecentActivity/ivysettings.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/RecentActivity/release/modules/ext/gson-2.1.jar b/RecentActivity/release/modules/ext/gson-2.1.jar deleted file mode 100644 index b85f091a0d..0000000000 Binary files a/RecentActivity/release/modules/ext/gson-2.1.jar and /dev/null differ diff --git a/RecentActivity/release/pasco2/commons-cli-1.0.jar b/RecentActivity/release/pasco2/commons-cli-1.0.jar deleted file mode 100644 index 22a004e14e..0000000000 Binary files a/RecentActivity/release/pasco2/commons-cli-1.0.jar and /dev/null differ diff --git a/RecentActivity/release/pasco2/commons-collections-3.1.jar b/RecentActivity/release/pasco2/commons-collections-3.1.jar deleted file mode 100644 index 41e230feea..0000000000 Binary files a/RecentActivity/release/pasco2/commons-collections-3.1.jar and /dev/null differ diff --git a/RecentActivity/release/pasco2/ctypes4j.dll b/RecentActivity/release/pasco2/ctypes4j.dll deleted file mode 100644 index 3455ad1771..0000000000 Binary files a/RecentActivity/release/pasco2/ctypes4j.dll and /dev/null differ diff --git a/RecentActivity/release/pasco2/ctypes4j.jar b/RecentActivity/release/pasco2/ctypes4j.jar deleted file mode 100644 index a6c6f3c3b0..0000000000 Binary files a/RecentActivity/release/pasco2/ctypes4j.jar and /dev/null differ diff --git a/RecentActivity/release/pasco2/ctypes4j.zip b/RecentActivity/release/pasco2/ctypes4j.zip deleted file mode 100644 index 84d28c2dba..0000000000 Binary files a/RecentActivity/release/pasco2/ctypes4j.zip and /dev/null differ diff --git a/RecentActivity/release/pasco2/pasco2.jar b/RecentActivity/release/pasco2/pasco2.jar deleted file mode 100644 index 1f07a5e960..0000000000 Binary files a/RecentActivity/release/pasco2/pasco2.jar and /dev/null differ diff --git a/RecentActivity/release/pasco2/trove-1.0.2.jar b/RecentActivity/release/pasco2/trove-1.0.2.jar deleted file mode 100644 index ac62eb35cd..0000000000 Binary files a/RecentActivity/release/pasco2/trove-1.0.2.jar and /dev/null differ diff --git a/RecentActivity/release/pasco2/trove-3.0.2.jar b/RecentActivity/release/pasco2/trove-3.0.2.jar deleted file mode 100644 index 12fb57681f..0000000000 Binary files a/RecentActivity/release/pasco2/trove-3.0.2.jar and /dev/null differ diff --git a/RecentActivity/release/rr-full/license.txt b/thirdparty/rr-full/license.txt old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/license.txt rename to thirdparty/rr-full/license.txt diff --git a/RecentActivity/release/rr-full/p2x5124.dll b/thirdparty/rr-full/p2x5124.dll old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/p2x5124.dll rename to thirdparty/rr-full/p2x5124.dll diff --git a/RecentActivity/release/rr-full/plugins/acmru.pl b/thirdparty/rr-full/plugins/acmru.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/acmru.pl rename to thirdparty/rr-full/plugins/acmru.pl diff --git a/RecentActivity/release/rr-full/plugins/adoberdr.pl b/thirdparty/rr-full/plugins/adoberdr.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/adoberdr.pl rename to thirdparty/rr-full/plugins/adoberdr.pl diff --git a/RecentActivity/release/rr-full/plugins/ahaha.pl b/thirdparty/rr-full/plugins/ahaha.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/ahaha.pl rename to thirdparty/rr-full/plugins/ahaha.pl diff --git a/RecentActivity/release/rr-full/plugins/aim.pl b/thirdparty/rr-full/plugins/aim.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/aim.pl rename to thirdparty/rr-full/plugins/aim.pl diff --git a/RecentActivity/release/rr-full/plugins/all b/thirdparty/rr-full/plugins/all old mode 100755 new mode 100644 similarity index 92% rename from RecentActivity/release/rr-full/plugins/all rename to thirdparty/rr-full/plugins/all index 137dd3039c..c9312edbf7 --- a/RecentActivity/release/rr-full/plugins/all +++ b/thirdparty/rr-full/plugins/all @@ -1,6 +1,6 @@ -# 20120528 *ALL* Plugins that apply on any HIVES, alphabetical order -baseline -findexes -regtime -rlo +# 20120528 *ALL* Plugins that apply on any HIVES, alphabetical order +baseline +findexes +regtime +rlo del \ No newline at end of file diff --git a/RecentActivity/release/rr-full/plugins/amcache.pl b/thirdparty/rr-full/plugins/amcache.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/amcache.pl rename to thirdparty/rr-full/plugins/amcache.pl diff --git a/RecentActivity/release/rr-full/plugins/aports.pl b/thirdparty/rr-full/plugins/aports.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/aports.pl rename to thirdparty/rr-full/plugins/aports.pl diff --git a/RecentActivity/release/rr-full/plugins/appcertdlls.pl b/thirdparty/rr-full/plugins/appcertdlls.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/appcertdlls.pl rename to thirdparty/rr-full/plugins/appcertdlls.pl diff --git a/RecentActivity/release/rr-full/plugins/appcompatcache.pl b/thirdparty/rr-full/plugins/appcompatcache.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/appcompatcache.pl rename to thirdparty/rr-full/plugins/appcompatcache.pl diff --git a/RecentActivity/release/rr-full/plugins/appcompatcache_tln.pl b/thirdparty/rr-full/plugins/appcompatcache_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/appcompatcache_tln.pl rename to thirdparty/rr-full/plugins/appcompatcache_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/appcompatflags.pl b/thirdparty/rr-full/plugins/appcompatflags.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/appcompatflags.pl rename to thirdparty/rr-full/plugins/appcompatflags.pl diff --git a/RecentActivity/release/rr-full/plugins/appinitdlls.pl b/thirdparty/rr-full/plugins/appinitdlls.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/appinitdlls.pl rename to thirdparty/rr-full/plugins/appinitdlls.pl diff --git a/RecentActivity/release/rr-full/plugins/applets.pl b/thirdparty/rr-full/plugins/applets.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/applets.pl rename to thirdparty/rr-full/plugins/applets.pl diff --git a/RecentActivity/release/rr-full/plugins/applets_tln.pl b/thirdparty/rr-full/plugins/applets_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/applets_tln.pl rename to thirdparty/rr-full/plugins/applets_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/apppaths.pl b/thirdparty/rr-full/plugins/apppaths.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/apppaths.pl rename to thirdparty/rr-full/plugins/apppaths.pl diff --git a/RecentActivity/release/rr-full/plugins/apppaths_tln.pl b/thirdparty/rr-full/plugins/apppaths_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/apppaths_tln.pl rename to thirdparty/rr-full/plugins/apppaths_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/appspecific.pl b/thirdparty/rr-full/plugins/appspecific.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/appspecific.pl rename to thirdparty/rr-full/plugins/appspecific.pl diff --git a/RecentActivity/release/rr-full/plugins/ares.pl b/thirdparty/rr-full/plugins/ares.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/ares.pl rename to thirdparty/rr-full/plugins/ares.pl diff --git a/RecentActivity/release/rr-full/plugins/arpcache.pl b/thirdparty/rr-full/plugins/arpcache.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/arpcache.pl rename to thirdparty/rr-full/plugins/arpcache.pl diff --git a/RecentActivity/release/rr-full/plugins/assoc.pl b/thirdparty/rr-full/plugins/assoc.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/assoc.pl rename to thirdparty/rr-full/plugins/assoc.pl diff --git a/RecentActivity/release/rr-full/plugins/at.pl b/thirdparty/rr-full/plugins/at.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/at.pl rename to thirdparty/rr-full/plugins/at.pl diff --git a/RecentActivity/release/rr-full/plugins/at_tln.pl b/thirdparty/rr-full/plugins/at_tln.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/at_tln.pl rename to thirdparty/rr-full/plugins/at_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/attachmgr.pl b/thirdparty/rr-full/plugins/attachmgr.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/attachmgr.pl rename to thirdparty/rr-full/plugins/attachmgr.pl diff --git a/RecentActivity/release/rr-full/plugins/attachmgr_tln.pl b/thirdparty/rr-full/plugins/attachmgr_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/attachmgr_tln.pl rename to thirdparty/rr-full/plugins/attachmgr_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/audiodev.pl b/thirdparty/rr-full/plugins/audiodev.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/audiodev.pl rename to thirdparty/rr-full/plugins/audiodev.pl diff --git a/RecentActivity/release/rr-full/plugins/auditfail.pl b/thirdparty/rr-full/plugins/auditfail.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/auditfail.pl rename to thirdparty/rr-full/plugins/auditfail.pl diff --git a/RecentActivity/release/rr-full/plugins/auditpol.pl b/thirdparty/rr-full/plugins/auditpol.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/auditpol.pl rename to thirdparty/rr-full/plugins/auditpol.pl diff --git a/RecentActivity/release/rr-full/plugins/autoendtasks.pl b/thirdparty/rr-full/plugins/autoendtasks.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/autoendtasks.pl rename to thirdparty/rr-full/plugins/autoendtasks.pl diff --git a/RecentActivity/release/rr-full/plugins/autorun.pl b/thirdparty/rr-full/plugins/autorun.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/autorun.pl rename to thirdparty/rr-full/plugins/autorun.pl diff --git a/RecentActivity/release/rr-full/plugins/backuprestore.pl b/thirdparty/rr-full/plugins/backuprestore.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/backuprestore.pl rename to thirdparty/rr-full/plugins/backuprestore.pl diff --git a/RecentActivity/release/rr-full/plugins/banner.pl b/thirdparty/rr-full/plugins/banner.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/banner.pl rename to thirdparty/rr-full/plugins/banner.pl diff --git a/RecentActivity/release/rr-full/plugins/baseline.pl b/thirdparty/rr-full/plugins/baseline.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/baseline.pl rename to thirdparty/rr-full/plugins/baseline.pl diff --git a/RecentActivity/release/rr-full/plugins/bho.pl b/thirdparty/rr-full/plugins/bho.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/bho.pl rename to thirdparty/rr-full/plugins/bho.pl diff --git a/RecentActivity/release/rr-full/plugins/bitbucket.pl b/thirdparty/rr-full/plugins/bitbucket.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/bitbucket.pl rename to thirdparty/rr-full/plugins/bitbucket.pl diff --git a/RecentActivity/release/rr-full/plugins/bitbucket_user.pl b/thirdparty/rr-full/plugins/bitbucket_user.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/bitbucket_user.pl rename to thirdparty/rr-full/plugins/bitbucket_user.pl diff --git a/RecentActivity/release/rr-full/plugins/brisv.pl b/thirdparty/rr-full/plugins/brisv.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/brisv.pl rename to thirdparty/rr-full/plugins/brisv.pl diff --git a/RecentActivity/release/rr-full/plugins/btconfig.pl b/thirdparty/rr-full/plugins/btconfig.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/btconfig.pl rename to thirdparty/rr-full/plugins/btconfig.pl diff --git a/RecentActivity/release/rr-full/plugins/bthport.pl b/thirdparty/rr-full/plugins/bthport.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/bthport.pl rename to thirdparty/rr-full/plugins/bthport.pl diff --git a/RecentActivity/release/rr-full/plugins/cain.pl b/thirdparty/rr-full/plugins/cain.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/cain.pl rename to thirdparty/rr-full/plugins/cain.pl diff --git a/RecentActivity/release/rr-full/plugins/ccleaner.pl b/thirdparty/rr-full/plugins/ccleaner.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/ccleaner.pl rename to thirdparty/rr-full/plugins/ccleaner.pl diff --git a/RecentActivity/release/rr-full/plugins/cdstaginginfo.pl b/thirdparty/rr-full/plugins/cdstaginginfo.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/cdstaginginfo.pl rename to thirdparty/rr-full/plugins/cdstaginginfo.pl diff --git a/RecentActivity/release/rr-full/plugins/clampi.pl b/thirdparty/rr-full/plugins/clampi.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/clampi.pl rename to thirdparty/rr-full/plugins/clampi.pl diff --git a/RecentActivity/release/rr-full/plugins/clampitm.pl b/thirdparty/rr-full/plugins/clampitm.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/clampitm.pl rename to thirdparty/rr-full/plugins/clampitm.pl diff --git a/RecentActivity/release/rr-full/plugins/clsid.pl b/thirdparty/rr-full/plugins/clsid.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/clsid.pl rename to thirdparty/rr-full/plugins/clsid.pl diff --git a/RecentActivity/release/rr-full/plugins/cmd_shell.pl b/thirdparty/rr-full/plugins/cmd_shell.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/cmd_shell.pl rename to thirdparty/rr-full/plugins/cmd_shell.pl diff --git a/RecentActivity/release/rr-full/plugins/cmd_shell_tln.pl b/thirdparty/rr-full/plugins/cmd_shell_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/cmd_shell_tln.pl rename to thirdparty/rr-full/plugins/cmd_shell_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/cmd_shell_u.pl b/thirdparty/rr-full/plugins/cmd_shell_u.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/cmd_shell_u.pl rename to thirdparty/rr-full/plugins/cmd_shell_u.pl diff --git a/RecentActivity/release/rr-full/plugins/cmdproc.pl b/thirdparty/rr-full/plugins/cmdproc.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/cmdproc.pl rename to thirdparty/rr-full/plugins/cmdproc.pl diff --git a/RecentActivity/release/rr-full/plugins/cmdproc_tln.pl b/thirdparty/rr-full/plugins/cmdproc_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/cmdproc_tln.pl rename to thirdparty/rr-full/plugins/cmdproc_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/codeid.pl b/thirdparty/rr-full/plugins/codeid.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/codeid.pl rename to thirdparty/rr-full/plugins/codeid.pl diff --git a/RecentActivity/release/rr-full/plugins/comdlg32.pl b/thirdparty/rr-full/plugins/comdlg32.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/comdlg32.pl rename to thirdparty/rr-full/plugins/comdlg32.pl diff --git a/RecentActivity/release/rr-full/plugins/comfoo.pl b/thirdparty/rr-full/plugins/comfoo.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/comfoo.pl rename to thirdparty/rr-full/plugins/comfoo.pl diff --git a/RecentActivity/release/rr-full/plugins/compdesc.pl b/thirdparty/rr-full/plugins/compdesc.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/compdesc.pl rename to thirdparty/rr-full/plugins/compdesc.pl diff --git a/RecentActivity/release/rr-full/plugins/compname.pl b/thirdparty/rr-full/plugins/compname.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/compname.pl rename to thirdparty/rr-full/plugins/compname.pl diff --git a/RecentActivity/release/rr-full/plugins/controlpanel.pl b/thirdparty/rr-full/plugins/controlpanel.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/controlpanel.pl rename to thirdparty/rr-full/plugins/controlpanel.pl diff --git a/RecentActivity/release/rr-full/plugins/cpldontload.pl b/thirdparty/rr-full/plugins/cpldontload.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/cpldontload.pl rename to thirdparty/rr-full/plugins/cpldontload.pl diff --git a/RecentActivity/release/rr-full/plugins/crashcontrol.pl b/thirdparty/rr-full/plugins/crashcontrol.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/crashcontrol.pl rename to thirdparty/rr-full/plugins/crashcontrol.pl diff --git a/RecentActivity/release/rr-full/plugins/ctrlpnl.pl b/thirdparty/rr-full/plugins/ctrlpnl.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/ctrlpnl.pl rename to thirdparty/rr-full/plugins/ctrlpnl.pl diff --git a/RecentActivity/release/rr-full/plugins/ddm.pl b/thirdparty/rr-full/plugins/ddm.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/ddm.pl rename to thirdparty/rr-full/plugins/ddm.pl diff --git a/RecentActivity/release/rr-full/plugins/ddo.pl b/thirdparty/rr-full/plugins/ddo.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/ddo.pl rename to thirdparty/rr-full/plugins/ddo.pl diff --git a/RecentActivity/release/rr-full/plugins/decaf.pl b/thirdparty/rr-full/plugins/decaf.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/decaf.pl rename to thirdparty/rr-full/plugins/decaf.pl diff --git a/RecentActivity/release/rr-full/plugins/defbrowser.pl b/thirdparty/rr-full/plugins/defbrowser.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/defbrowser.pl rename to thirdparty/rr-full/plugins/defbrowser.pl diff --git a/RecentActivity/release/rr-full/plugins/del.pl b/thirdparty/rr-full/plugins/del.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/del.pl rename to thirdparty/rr-full/plugins/del.pl diff --git a/RecentActivity/release/rr-full/plugins/del_tln.pl b/thirdparty/rr-full/plugins/del_tln.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/del_tln.pl rename to thirdparty/rr-full/plugins/del_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/dependency_walker.pl b/thirdparty/rr-full/plugins/dependency_walker.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/dependency_walker.pl rename to thirdparty/rr-full/plugins/dependency_walker.pl diff --git a/RecentActivity/release/rr-full/plugins/devclass.pl b/thirdparty/rr-full/plugins/devclass.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/devclass.pl rename to thirdparty/rr-full/plugins/devclass.pl diff --git a/RecentActivity/release/rr-full/plugins/dfrg.pl b/thirdparty/rr-full/plugins/dfrg.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/dfrg.pl rename to thirdparty/rr-full/plugins/dfrg.pl diff --git a/RecentActivity/release/rr-full/plugins/diag_sr.pl b/thirdparty/rr-full/plugins/diag_sr.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/diag_sr.pl rename to thirdparty/rr-full/plugins/diag_sr.pl diff --git a/RecentActivity/release/rr-full/plugins/direct.pl b/thirdparty/rr-full/plugins/direct.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/direct.pl rename to thirdparty/rr-full/plugins/direct.pl diff --git a/RecentActivity/release/rr-full/plugins/direct_tln.pl b/thirdparty/rr-full/plugins/direct_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/direct_tln.pl rename to thirdparty/rr-full/plugins/direct_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/disablelastaccess.pl b/thirdparty/rr-full/plugins/disablelastaccess.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/disablelastaccess.pl rename to thirdparty/rr-full/plugins/disablelastaccess.pl diff --git a/RecentActivity/release/rr-full/plugins/disablesr.pl b/thirdparty/rr-full/plugins/disablesr.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/disablesr.pl rename to thirdparty/rr-full/plugins/disablesr.pl diff --git a/RecentActivity/release/rr-full/plugins/dllsearch.pl b/thirdparty/rr-full/plugins/dllsearch.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/dllsearch.pl rename to thirdparty/rr-full/plugins/dllsearch.pl diff --git a/RecentActivity/release/rr-full/plugins/dnschanger.pl b/thirdparty/rr-full/plugins/dnschanger.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/dnschanger.pl rename to thirdparty/rr-full/plugins/dnschanger.pl diff --git a/RecentActivity/release/rr-full/plugins/domains.pl b/thirdparty/rr-full/plugins/domains.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/domains.pl rename to thirdparty/rr-full/plugins/domains.pl diff --git a/RecentActivity/release/rr-full/plugins/drivers32.pl b/thirdparty/rr-full/plugins/drivers32.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/drivers32.pl rename to thirdparty/rr-full/plugins/drivers32.pl diff --git a/RecentActivity/release/rr-full/plugins/drwatson.pl b/thirdparty/rr-full/plugins/drwatson.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/drwatson.pl rename to thirdparty/rr-full/plugins/drwatson.pl diff --git a/RecentActivity/release/rr-full/plugins/emdmgmt.pl b/thirdparty/rr-full/plugins/emdmgmt.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/emdmgmt.pl rename to thirdparty/rr-full/plugins/emdmgmt.pl diff --git a/RecentActivity/release/rr-full/plugins/environment.pl b/thirdparty/rr-full/plugins/environment.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/environment.pl rename to thirdparty/rr-full/plugins/environment.pl diff --git a/RecentActivity/release/rr-full/plugins/esent.pl b/thirdparty/rr-full/plugins/esent.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/esent.pl rename to thirdparty/rr-full/plugins/esent.pl diff --git a/RecentActivity/release/rr-full/plugins/eventlog.pl b/thirdparty/rr-full/plugins/eventlog.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/eventlog.pl rename to thirdparty/rr-full/plugins/eventlog.pl diff --git a/RecentActivity/release/rr-full/plugins/eventlogs.pl b/thirdparty/rr-full/plugins/eventlogs.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/eventlogs.pl rename to thirdparty/rr-full/plugins/eventlogs.pl diff --git a/RecentActivity/release/rr-full/plugins/fileexts.pl b/thirdparty/rr-full/plugins/fileexts.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/fileexts.pl rename to thirdparty/rr-full/plugins/fileexts.pl diff --git a/RecentActivity/release/rr-full/plugins/filehistory.pl b/thirdparty/rr-full/plugins/filehistory.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/filehistory.pl rename to thirdparty/rr-full/plugins/filehistory.pl diff --git a/RecentActivity/release/rr-full/plugins/findexes.pl b/thirdparty/rr-full/plugins/findexes.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/findexes.pl rename to thirdparty/rr-full/plugins/findexes.pl diff --git a/RecentActivity/release/rr-full/plugins/fw_config.pl b/thirdparty/rr-full/plugins/fw_config.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/fw_config.pl rename to thirdparty/rr-full/plugins/fw_config.pl diff --git a/RecentActivity/release/rr-full/plugins/gauss.pl b/thirdparty/rr-full/plugins/gauss.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/gauss.pl rename to thirdparty/rr-full/plugins/gauss.pl diff --git a/RecentActivity/release/rr-full/plugins/gthist.pl b/thirdparty/rr-full/plugins/gthist.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/gthist.pl rename to thirdparty/rr-full/plugins/gthist.pl diff --git a/RecentActivity/release/rr-full/plugins/gtwhitelist.pl b/thirdparty/rr-full/plugins/gtwhitelist.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/gtwhitelist.pl rename to thirdparty/rr-full/plugins/gtwhitelist.pl diff --git a/RecentActivity/release/rr-full/plugins/haven_and_hearth.pl b/thirdparty/rr-full/plugins/haven_and_hearth.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/haven_and_hearth.pl rename to thirdparty/rr-full/plugins/haven_and_hearth.pl diff --git a/RecentActivity/release/rr-full/plugins/hibernate.pl b/thirdparty/rr-full/plugins/hibernate.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/hibernate.pl rename to thirdparty/rr-full/plugins/hibernate.pl diff --git a/RecentActivity/release/rr-full/plugins/ide.pl b/thirdparty/rr-full/plugins/ide.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/ide.pl rename to thirdparty/rr-full/plugins/ide.pl diff --git a/RecentActivity/release/rr-full/plugins/ie_main.pl b/thirdparty/rr-full/plugins/ie_main.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/ie_main.pl rename to thirdparty/rr-full/plugins/ie_main.pl diff --git a/RecentActivity/release/rr-full/plugins/ie_settings.pl b/thirdparty/rr-full/plugins/ie_settings.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/ie_settings.pl rename to thirdparty/rr-full/plugins/ie_settings.pl diff --git a/RecentActivity/release/rr-full/plugins/ie_version.pl b/thirdparty/rr-full/plugins/ie_version.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/ie_version.pl rename to thirdparty/rr-full/plugins/ie_version.pl diff --git a/RecentActivity/release/rr-full/plugins/ie_zones.pl b/thirdparty/rr-full/plugins/ie_zones.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/ie_zones.pl rename to thirdparty/rr-full/plugins/ie_zones.pl diff --git a/RecentActivity/release/rr-full/plugins/iejava.pl b/thirdparty/rr-full/plugins/iejava.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/iejava.pl rename to thirdparty/rr-full/plugins/iejava.pl diff --git a/RecentActivity/release/rr-full/plugins/imagedev.pl b/thirdparty/rr-full/plugins/imagedev.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/imagedev.pl rename to thirdparty/rr-full/plugins/imagedev.pl diff --git a/RecentActivity/release/rr-full/plugins/imagefile.pl b/thirdparty/rr-full/plugins/imagefile.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/imagefile.pl rename to thirdparty/rr-full/plugins/imagefile.pl diff --git a/RecentActivity/release/rr-full/plugins/init_dlls.pl b/thirdparty/rr-full/plugins/init_dlls.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/init_dlls.pl rename to thirdparty/rr-full/plugins/init_dlls.pl diff --git a/RecentActivity/release/rr-full/plugins/inprocserver.pl b/thirdparty/rr-full/plugins/inprocserver.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/inprocserver.pl rename to thirdparty/rr-full/plugins/inprocserver.pl diff --git a/RecentActivity/release/rr-full/plugins/installedcomp.pl b/thirdparty/rr-full/plugins/installedcomp.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/installedcomp.pl rename to thirdparty/rr-full/plugins/installedcomp.pl diff --git a/RecentActivity/release/rr-full/plugins/installer.pl b/thirdparty/rr-full/plugins/installer.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/installer.pl rename to thirdparty/rr-full/plugins/installer.pl diff --git a/RecentActivity/release/rr-full/plugins/internet_explorer_cu.pl b/thirdparty/rr-full/plugins/internet_explorer_cu.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/internet_explorer_cu.pl rename to thirdparty/rr-full/plugins/internet_explorer_cu.pl diff --git a/RecentActivity/release/rr-full/plugins/internet_settings_cu.pl b/thirdparty/rr-full/plugins/internet_settings_cu.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/internet_settings_cu.pl rename to thirdparty/rr-full/plugins/internet_settings_cu.pl diff --git a/RecentActivity/release/rr-full/plugins/itempos.pl b/thirdparty/rr-full/plugins/itempos.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/itempos.pl rename to thirdparty/rr-full/plugins/itempos.pl diff --git a/RecentActivity/release/rr-full/plugins/javafx.pl b/thirdparty/rr-full/plugins/javafx.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/javafx.pl rename to thirdparty/rr-full/plugins/javafx.pl diff --git a/RecentActivity/release/rr-full/plugins/javasoft.pl b/thirdparty/rr-full/plugins/javasoft.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/javasoft.pl rename to thirdparty/rr-full/plugins/javasoft.pl diff --git a/RecentActivity/release/rr-full/plugins/kankan.pl b/thirdparty/rr-full/plugins/kankan.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/kankan.pl rename to thirdparty/rr-full/plugins/kankan.pl diff --git a/RecentActivity/release/rr-full/plugins/kb950582.pl b/thirdparty/rr-full/plugins/kb950582.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/kb950582.pl rename to thirdparty/rr-full/plugins/kb950582.pl diff --git a/RecentActivity/release/rr-full/plugins/kbdcrash.pl b/thirdparty/rr-full/plugins/kbdcrash.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/kbdcrash.pl rename to thirdparty/rr-full/plugins/kbdcrash.pl diff --git a/RecentActivity/release/rr-full/plugins/knowndev.pl b/thirdparty/rr-full/plugins/knowndev.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/knowndev.pl rename to thirdparty/rr-full/plugins/knowndev.pl diff --git a/RecentActivity/release/rr-full/plugins/landesk.pl b/thirdparty/rr-full/plugins/landesk.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/landesk.pl rename to thirdparty/rr-full/plugins/landesk.pl diff --git a/RecentActivity/release/rr-full/plugins/landesk_tln.pl b/thirdparty/rr-full/plugins/landesk_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/landesk_tln.pl rename to thirdparty/rr-full/plugins/landesk_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/lazyshell.pl b/thirdparty/rr-full/plugins/lazyshell.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/lazyshell.pl rename to thirdparty/rr-full/plugins/lazyshell.pl diff --git a/RecentActivity/release/rr-full/plugins/legacy.pl b/thirdparty/rr-full/plugins/legacy.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/legacy.pl rename to thirdparty/rr-full/plugins/legacy.pl diff --git a/RecentActivity/release/rr-full/plugins/legacy_tln.pl b/thirdparty/rr-full/plugins/legacy_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/legacy_tln.pl rename to thirdparty/rr-full/plugins/legacy_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/licenses.pl b/thirdparty/rr-full/plugins/licenses.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/licenses.pl rename to thirdparty/rr-full/plugins/licenses.pl diff --git a/RecentActivity/release/rr-full/plugins/listsoft.pl b/thirdparty/rr-full/plugins/listsoft.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/listsoft.pl rename to thirdparty/rr-full/plugins/listsoft.pl diff --git a/RecentActivity/release/rr-full/plugins/liveContactsGUID.pl b/thirdparty/rr-full/plugins/liveContactsGUID.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/liveContactsGUID.pl rename to thirdparty/rr-full/plugins/liveContactsGUID.pl diff --git a/RecentActivity/release/rr-full/plugins/load.pl b/thirdparty/rr-full/plugins/load.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/load.pl rename to thirdparty/rr-full/plugins/load.pl diff --git a/RecentActivity/release/rr-full/plugins/logonusername.pl b/thirdparty/rr-full/plugins/logonusername.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/logonusername.pl rename to thirdparty/rr-full/plugins/logonusername.pl diff --git a/RecentActivity/release/rr-full/plugins/lsa_packages.pl b/thirdparty/rr-full/plugins/lsa_packages.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/lsa_packages.pl rename to thirdparty/rr-full/plugins/lsa_packages.pl diff --git a/RecentActivity/release/rr-full/plugins/lsasecrets.pl b/thirdparty/rr-full/plugins/lsasecrets.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/lsasecrets.pl rename to thirdparty/rr-full/plugins/lsasecrets.pl diff --git a/RecentActivity/release/rr-full/plugins/macaddr.pl b/thirdparty/rr-full/plugins/macaddr.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/macaddr.pl rename to thirdparty/rr-full/plugins/macaddr.pl diff --git a/RecentActivity/release/rr-full/plugins/menuorder.pl b/thirdparty/rr-full/plugins/menuorder.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/menuorder.pl rename to thirdparty/rr-full/plugins/menuorder.pl diff --git a/RecentActivity/release/rr-full/plugins/mixer.pl b/thirdparty/rr-full/plugins/mixer.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/mixer.pl rename to thirdparty/rr-full/plugins/mixer.pl diff --git a/RecentActivity/release/rr-full/plugins/mixer_tln.pl b/thirdparty/rr-full/plugins/mixer_tln.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/mixer_tln.pl rename to thirdparty/rr-full/plugins/mixer_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/mmc.pl b/thirdparty/rr-full/plugins/mmc.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/mmc.pl rename to thirdparty/rr-full/plugins/mmc.pl diff --git a/RecentActivity/release/rr-full/plugins/mmc_tln.pl b/thirdparty/rr-full/plugins/mmc_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/mmc_tln.pl rename to thirdparty/rr-full/plugins/mmc_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/mmo.pl b/thirdparty/rr-full/plugins/mmo.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/mmo.pl rename to thirdparty/rr-full/plugins/mmo.pl diff --git a/RecentActivity/release/rr-full/plugins/mndmru.pl b/thirdparty/rr-full/plugins/mndmru.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/mndmru.pl rename to thirdparty/rr-full/plugins/mndmru.pl diff --git a/RecentActivity/release/rr-full/plugins/mndmru_tln.pl b/thirdparty/rr-full/plugins/mndmru_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/mndmru_tln.pl rename to thirdparty/rr-full/plugins/mndmru_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/mountdev.pl b/thirdparty/rr-full/plugins/mountdev.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/mountdev.pl rename to thirdparty/rr-full/plugins/mountdev.pl diff --git a/RecentActivity/release/rr-full/plugins/mountdev2.pl b/thirdparty/rr-full/plugins/mountdev2.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/mountdev2.pl rename to thirdparty/rr-full/plugins/mountdev2.pl diff --git a/RecentActivity/release/rr-full/plugins/mountdev2.pl.old b/thirdparty/rr-full/plugins/mountdev2.pl.old similarity index 100% rename from RecentActivity/release/rr-full/plugins/mountdev2.pl.old rename to thirdparty/rr-full/plugins/mountdev2.pl.old diff --git a/RecentActivity/release/rr-full/plugins/mp2.pl b/thirdparty/rr-full/plugins/mp2.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/mp2.pl rename to thirdparty/rr-full/plugins/mp2.pl diff --git a/RecentActivity/release/rr-full/plugins/mp3.pl b/thirdparty/rr-full/plugins/mp3.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/mp3.pl rename to thirdparty/rr-full/plugins/mp3.pl diff --git a/RecentActivity/release/rr-full/plugins/mpmru.pl b/thirdparty/rr-full/plugins/mpmru.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/mpmru.pl rename to thirdparty/rr-full/plugins/mpmru.pl diff --git a/RecentActivity/release/rr-full/plugins/mrt.pl b/thirdparty/rr-full/plugins/mrt.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/mrt.pl rename to thirdparty/rr-full/plugins/mrt.pl diff --git a/RecentActivity/release/rr-full/plugins/msis.pl b/thirdparty/rr-full/plugins/msis.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/msis.pl rename to thirdparty/rr-full/plugins/msis.pl diff --git a/RecentActivity/release/rr-full/plugins/mspaper.pl b/thirdparty/rr-full/plugins/mspaper.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/mspaper.pl rename to thirdparty/rr-full/plugins/mspaper.pl diff --git a/RecentActivity/release/rr-full/plugins/muicache.pl b/thirdparty/rr-full/plugins/muicache.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/muicache.pl rename to thirdparty/rr-full/plugins/muicache.pl diff --git a/RecentActivity/release/rr-full/plugins/muicache_tln.pl b/thirdparty/rr-full/plugins/muicache_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/muicache_tln.pl rename to thirdparty/rr-full/plugins/muicache_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/nero.pl b/thirdparty/rr-full/plugins/nero.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/nero.pl rename to thirdparty/rr-full/plugins/nero.pl diff --git a/RecentActivity/release/rr-full/plugins/netassist.pl b/thirdparty/rr-full/plugins/netassist.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/netassist.pl rename to thirdparty/rr-full/plugins/netassist.pl diff --git a/RecentActivity/release/rr-full/plugins/netsvcs.pl b/thirdparty/rr-full/plugins/netsvcs.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/netsvcs.pl rename to thirdparty/rr-full/plugins/netsvcs.pl diff --git a/RecentActivity/release/rr-full/plugins/network.pl b/thirdparty/rr-full/plugins/network.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/network.pl rename to thirdparty/rr-full/plugins/network.pl diff --git a/RecentActivity/release/rr-full/plugins/networkcards.pl b/thirdparty/rr-full/plugins/networkcards.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/networkcards.pl rename to thirdparty/rr-full/plugins/networkcards.pl diff --git a/RecentActivity/release/rr-full/plugins/networklist.pl b/thirdparty/rr-full/plugins/networklist.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/networklist.pl rename to thirdparty/rr-full/plugins/networklist.pl diff --git a/RecentActivity/release/rr-full/plugins/networklist_tln.pl b/thirdparty/rr-full/plugins/networklist_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/networklist_tln.pl rename to thirdparty/rr-full/plugins/networklist_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/networkuid.pl b/thirdparty/rr-full/plugins/networkuid.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/networkuid.pl rename to thirdparty/rr-full/plugins/networkuid.pl diff --git a/RecentActivity/release/rr-full/plugins/nic.pl b/thirdparty/rr-full/plugins/nic.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/nic.pl rename to thirdparty/rr-full/plugins/nic.pl diff --git a/RecentActivity/release/rr-full/plugins/nic2.pl b/thirdparty/rr-full/plugins/nic2.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/nic2.pl rename to thirdparty/rr-full/plugins/nic2.pl diff --git a/RecentActivity/release/rr-full/plugins/nic_mst2.pl b/thirdparty/rr-full/plugins/nic_mst2.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/nic_mst2.pl rename to thirdparty/rr-full/plugins/nic_mst2.pl diff --git a/RecentActivity/release/rr-full/plugins/nolmhash.pl b/thirdparty/rr-full/plugins/nolmhash.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/nolmhash.pl rename to thirdparty/rr-full/plugins/nolmhash.pl diff --git a/RecentActivity/release/rr-full/plugins/ntuser b/thirdparty/rr-full/plugins/ntuser old mode 100755 new mode 100644 similarity index 91% rename from RecentActivity/release/rr-full/plugins/ntuser rename to thirdparty/rr-full/plugins/ntuser index 83eff2a1f1..4d724f2cb3 --- a/RecentActivity/release/rr-full/plugins/ntuser +++ b/thirdparty/rr-full/plugins/ntuser @@ -1,103 +1,103 @@ -# 20120528 *ALL* Plugins that apply on NTUSER hive, alphabetical order -acmru -adoberdr -aim -aports -appcompatflags -applets -appspecific -ares -arpcache -autoendtasks -autorun -bitbucket_user -brisv -cain -ccleaner -clampi -clampitm -comdlg32 -compatassist -compdesc -controlpanel -cpldontload -decaf -dependency_walker -domains -environment -fileexts -filehistory -gthist -gtwhitelist -haven_and_hearth -ie_settings -internet_explorer_cu -internet_settings_cu -javafx -listsoft -liveContactsGUID -load -logonusername -mmc -mndmru -mp2 -mpmru -mspaper -muicache -nero -netassist -odysseus -officedocs -officedocs2010 -oisc -osversion -outlook -policies_u -printermru -printers -privoxy -proxysettings -publishingwizard -putty -rdphint -realplayer6 -realvnc -recentdocs -rootkit_revealer -runmru -sevenzip -shellfolders -skype -snapshot_viewer -ssh_host_keys -startmenuinternetapps_cu -startpage -streammru -streams -sysinternals -trustrecords -tsclient -typedpaths -typedurls -typedurlstime -unreadmail -user_run -user_win -userassist -userinfo -userlocsvc -vista_bitbucket -vmplayer -vmware_vsphere_client -vnchooksapplicationprefs -vncviewer -wallpaper -warcraft3 -winlivemail -winlogon_u -winrar -winscp_sessions -winvnc -winzip -wordwheelquery +# 20120528 *ALL* Plugins that apply on NTUSER hive, alphabetical order +acmru +adoberdr +aim +aports +appcompatflags +applets +appspecific +ares +arpcache +autoendtasks +autorun +bitbucket_user +brisv +cain +ccleaner +clampi +clampitm +comdlg32 +compatassist +compdesc +controlpanel +cpldontload +decaf +dependency_walker +domains +environment +fileexts +filehistory +gthist +gtwhitelist +haven_and_hearth +ie_settings +internet_explorer_cu +internet_settings_cu +javafx +listsoft +liveContactsGUID +load +logonusername +mmc +mndmru +mp2 +mpmru +mspaper +muicache +nero +netassist +odysseus +officedocs +officedocs2010 +oisc +osversion +outlook +policies_u +printermru +printers +privoxy +proxysettings +publishingwizard +putty +rdphint +realplayer6 +realvnc +recentdocs +rootkit_revealer +runmru +sevenzip +shellfolders +skype +snapshot_viewer +ssh_host_keys +startmenuinternetapps_cu +startpage +streammru +streams +sysinternals +trustrecords +tsclient +typedpaths +typedurls +typedurlstime +unreadmail +user_run +user_win +userassist +userinfo +userlocsvc +vista_bitbucket +vmplayer +vmware_vsphere_client +vnchooksapplicationprefs +vncviewer +wallpaper +warcraft3 +winlivemail +winlogon_u +winrar +winscp_sessions +winvnc +winzip +wordwheelquery yahoo_cu \ No newline at end of file diff --git a/RecentActivity/release/rr-full/plugins/ntusernetwork.pl b/thirdparty/rr-full/plugins/ntusernetwork.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/ntusernetwork.pl rename to thirdparty/rr-full/plugins/ntusernetwork.pl diff --git a/RecentActivity/release/rr-full/plugins/odysseus.pl b/thirdparty/rr-full/plugins/odysseus.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/odysseus.pl rename to thirdparty/rr-full/plugins/odysseus.pl diff --git a/RecentActivity/release/rr-full/plugins/officedocs.pl b/thirdparty/rr-full/plugins/officedocs.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/officedocs.pl rename to thirdparty/rr-full/plugins/officedocs.pl diff --git a/RecentActivity/release/rr-full/plugins/officedocs2010.pl b/thirdparty/rr-full/plugins/officedocs2010.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/officedocs2010.pl rename to thirdparty/rr-full/plugins/officedocs2010.pl diff --git a/RecentActivity/release/rr-full/plugins/officedocs2010_tln.pl b/thirdparty/rr-full/plugins/officedocs2010_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/officedocs2010_tln.pl rename to thirdparty/rr-full/plugins/officedocs2010_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/oisc.pl b/thirdparty/rr-full/plugins/oisc.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/oisc.pl rename to thirdparty/rr-full/plugins/oisc.pl diff --git a/RecentActivity/release/rr-full/plugins/olsearch.pl b/thirdparty/rr-full/plugins/olsearch.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/olsearch.pl rename to thirdparty/rr-full/plugins/olsearch.pl diff --git a/RecentActivity/release/rr-full/plugins/opencandy.pl b/thirdparty/rr-full/plugins/opencandy.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/opencandy.pl rename to thirdparty/rr-full/plugins/opencandy.pl diff --git a/RecentActivity/release/rr-full/plugins/osversion.pl b/thirdparty/rr-full/plugins/osversion.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/osversion.pl rename to thirdparty/rr-full/plugins/osversion.pl diff --git a/RecentActivity/release/rr-full/plugins/osversion_tln.pl b/thirdparty/rr-full/plugins/osversion_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/osversion_tln.pl rename to thirdparty/rr-full/plugins/osversion_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/outlook.pl b/thirdparty/rr-full/plugins/outlook.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/outlook.pl rename to thirdparty/rr-full/plugins/outlook.pl diff --git a/RecentActivity/release/rr-full/plugins/outlook2.pl b/thirdparty/rr-full/plugins/outlook2.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/outlook2.pl rename to thirdparty/rr-full/plugins/outlook2.pl diff --git a/RecentActivity/release/rr-full/plugins/pagefile.pl b/thirdparty/rr-full/plugins/pagefile.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/pagefile.pl rename to thirdparty/rr-full/plugins/pagefile.pl diff --git a/RecentActivity/release/rr-full/plugins/pending.pl b/thirdparty/rr-full/plugins/pending.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/pending.pl rename to thirdparty/rr-full/plugins/pending.pl diff --git a/RecentActivity/release/rr-full/plugins/phdet.pl b/thirdparty/rr-full/plugins/phdet.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/phdet.pl rename to thirdparty/rr-full/plugins/phdet.pl diff --git a/RecentActivity/release/rr-full/plugins/photos.pl b/thirdparty/rr-full/plugins/photos.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/photos.pl rename to thirdparty/rr-full/plugins/photos.pl diff --git a/RecentActivity/release/rr-full/plugins/polacdms.pl b/thirdparty/rr-full/plugins/polacdms.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/polacdms.pl rename to thirdparty/rr-full/plugins/polacdms.pl diff --git a/RecentActivity/release/rr-full/plugins/policies_u.pl b/thirdparty/rr-full/plugins/policies_u.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/policies_u.pl rename to thirdparty/rr-full/plugins/policies_u.pl diff --git a/RecentActivity/release/rr-full/plugins/port_dev.pl b/thirdparty/rr-full/plugins/port_dev.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/port_dev.pl rename to thirdparty/rr-full/plugins/port_dev.pl diff --git a/RecentActivity/release/rr-full/plugins/prefetch.pl b/thirdparty/rr-full/plugins/prefetch.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/prefetch.pl rename to thirdparty/rr-full/plugins/prefetch.pl diff --git a/RecentActivity/release/rr-full/plugins/printermru.pl b/thirdparty/rr-full/plugins/printermru.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/printermru.pl rename to thirdparty/rr-full/plugins/printermru.pl diff --git a/RecentActivity/release/rr-full/plugins/printers.pl b/thirdparty/rr-full/plugins/printers.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/printers.pl rename to thirdparty/rr-full/plugins/printers.pl diff --git a/RecentActivity/release/rr-full/plugins/privoxy.pl b/thirdparty/rr-full/plugins/privoxy.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/privoxy.pl rename to thirdparty/rr-full/plugins/privoxy.pl diff --git a/RecentActivity/release/rr-full/plugins/processor_architecture.pl b/thirdparty/rr-full/plugins/processor_architecture.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/processor_architecture.pl rename to thirdparty/rr-full/plugins/processor_architecture.pl diff --git a/RecentActivity/release/rr-full/plugins/product.pl b/thirdparty/rr-full/plugins/product.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/product.pl rename to thirdparty/rr-full/plugins/product.pl diff --git a/RecentActivity/release/rr-full/plugins/productpolicy.pl b/thirdparty/rr-full/plugins/productpolicy.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/productpolicy.pl rename to thirdparty/rr-full/plugins/productpolicy.pl diff --git a/RecentActivity/release/rr-full/plugins/producttype.pl b/thirdparty/rr-full/plugins/producttype.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/producttype.pl rename to thirdparty/rr-full/plugins/producttype.pl diff --git a/RecentActivity/release/rr-full/plugins/profilelist.pl b/thirdparty/rr-full/plugins/profilelist.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/profilelist.pl rename to thirdparty/rr-full/plugins/profilelist.pl diff --git a/RecentActivity/release/rr-full/plugins/profiler.pl b/thirdparty/rr-full/plugins/profiler.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/profiler.pl rename to thirdparty/rr-full/plugins/profiler.pl diff --git a/RecentActivity/release/rr-full/plugins/proxysettings.pl b/thirdparty/rr-full/plugins/proxysettings.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/proxysettings.pl rename to thirdparty/rr-full/plugins/proxysettings.pl diff --git a/RecentActivity/release/rr-full/plugins/publishingwizard.pl b/thirdparty/rr-full/plugins/publishingwizard.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/publishingwizard.pl rename to thirdparty/rr-full/plugins/publishingwizard.pl diff --git a/RecentActivity/release/rr-full/plugins/putty.pl b/thirdparty/rr-full/plugins/putty.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/putty.pl rename to thirdparty/rr-full/plugins/putty.pl diff --git a/RecentActivity/release/rr-full/plugins/rdphint.pl b/thirdparty/rr-full/plugins/rdphint.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/rdphint.pl rename to thirdparty/rr-full/plugins/rdphint.pl diff --git a/RecentActivity/release/rr-full/plugins/rdpport.pl b/thirdparty/rr-full/plugins/rdpport.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/rdpport.pl rename to thirdparty/rr-full/plugins/rdpport.pl diff --git a/RecentActivity/release/rr-full/plugins/reading_locations.pl b/thirdparty/rr-full/plugins/reading_locations.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/reading_locations.pl rename to thirdparty/rr-full/plugins/reading_locations.pl diff --git a/RecentActivity/release/rr-full/plugins/real_profilelist.pl b/thirdparty/rr-full/plugins/real_profilelist.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/real_profilelist.pl rename to thirdparty/rr-full/plugins/real_profilelist.pl diff --git a/RecentActivity/release/rr-full/plugins/realplayer6.pl b/thirdparty/rr-full/plugins/realplayer6.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/realplayer6.pl rename to thirdparty/rr-full/plugins/realplayer6.pl diff --git a/RecentActivity/release/rr-full/plugins/realvnc.pl b/thirdparty/rr-full/plugins/realvnc.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/realvnc.pl rename to thirdparty/rr-full/plugins/realvnc.pl diff --git a/RecentActivity/release/rr-full/plugins/recentdocs.pl b/thirdparty/rr-full/plugins/recentdocs.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/recentdocs.pl rename to thirdparty/rr-full/plugins/recentdocs.pl diff --git a/RecentActivity/release/rr-full/plugins/recentdocs_tln.pl b/thirdparty/rr-full/plugins/recentdocs_tln.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/recentdocs_tln.pl rename to thirdparty/rr-full/plugins/recentdocs_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/regback.pl b/thirdparty/rr-full/plugins/regback.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/regback.pl rename to thirdparty/rr-full/plugins/regback.pl diff --git a/RecentActivity/release/rr-full/plugins/regtime.pl b/thirdparty/rr-full/plugins/regtime.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/regtime.pl rename to thirdparty/rr-full/plugins/regtime.pl diff --git a/RecentActivity/release/rr-full/plugins/regtime_tln.pl b/thirdparty/rr-full/plugins/regtime_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/regtime_tln.pl rename to thirdparty/rr-full/plugins/regtime_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/removdev.pl b/thirdparty/rr-full/plugins/removdev.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/removdev.pl rename to thirdparty/rr-full/plugins/removdev.pl diff --git a/RecentActivity/release/rr-full/plugins/renocide.pl b/thirdparty/rr-full/plugins/renocide.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/renocide.pl rename to thirdparty/rr-full/plugins/renocide.pl diff --git a/RecentActivity/release/rr-full/plugins/reveton.pl b/thirdparty/rr-full/plugins/reveton.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/reveton.pl rename to thirdparty/rr-full/plugins/reveton.pl diff --git a/RecentActivity/release/rr-full/plugins/rlo.pl b/thirdparty/rr-full/plugins/rlo.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/rlo.pl rename to thirdparty/rr-full/plugins/rlo.pl diff --git a/RecentActivity/release/rr-full/plugins/rootkit_revealer.pl b/thirdparty/rr-full/plugins/rootkit_revealer.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/rootkit_revealer.pl rename to thirdparty/rr-full/plugins/rootkit_revealer.pl diff --git a/RecentActivity/release/rr-full/plugins/routes.pl b/thirdparty/rr-full/plugins/routes.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/routes.pl rename to thirdparty/rr-full/plugins/routes.pl diff --git a/RecentActivity/release/rr-full/plugins/runmru.pl b/thirdparty/rr-full/plugins/runmru.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/runmru.pl rename to thirdparty/rr-full/plugins/runmru.pl diff --git a/RecentActivity/release/rr-full/plugins/runmru_tln.pl b/thirdparty/rr-full/plugins/runmru_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/runmru_tln.pl rename to thirdparty/rr-full/plugins/runmru_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/safeboot.pl b/thirdparty/rr-full/plugins/safeboot.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/safeboot.pl rename to thirdparty/rr-full/plugins/safeboot.pl diff --git a/RecentActivity/release/rr-full/plugins/sam b/thirdparty/rr-full/plugins/sam old mode 100755 new mode 100644 similarity index 88% rename from RecentActivity/release/rr-full/plugins/sam rename to thirdparty/rr-full/plugins/sam index 5a42c8bbb4..31712a88c9 --- a/RecentActivity/release/rr-full/plugins/sam +++ b/thirdparty/rr-full/plugins/sam @@ -1,2 +1,2 @@ -# 20120528 *ALL* Plugins that apply on SAM hive, alphabetical order +# 20120528 *ALL* Plugins that apply on SAM hive, alphabetical order samparse \ No newline at end of file diff --git a/RecentActivity/release/rr-full/plugins/samparse.pl b/thirdparty/rr-full/plugins/samparse.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/samparse.pl rename to thirdparty/rr-full/plugins/samparse.pl diff --git a/RecentActivity/release/rr-full/plugins/samparse_tln.pl b/thirdparty/rr-full/plugins/samparse_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/samparse_tln.pl rename to thirdparty/rr-full/plugins/samparse_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/schedagent.pl b/thirdparty/rr-full/plugins/schedagent.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/schedagent.pl rename to thirdparty/rr-full/plugins/schedagent.pl diff --git a/RecentActivity/release/rr-full/plugins/secctr.pl b/thirdparty/rr-full/plugins/secctr.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/secctr.pl rename to thirdparty/rr-full/plugins/secctr.pl diff --git a/RecentActivity/release/rr-full/plugins/secrets.pl b/thirdparty/rr-full/plugins/secrets.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/secrets.pl rename to thirdparty/rr-full/plugins/secrets.pl diff --git a/RecentActivity/release/rr-full/plugins/secrets_tln.pl b/thirdparty/rr-full/plugins/secrets_tln.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/secrets_tln.pl rename to thirdparty/rr-full/plugins/secrets_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/security b/thirdparty/rr-full/plugins/security old mode 100755 new mode 100644 similarity index 89% rename from RecentActivity/release/rr-full/plugins/security rename to thirdparty/rr-full/plugins/security index 57e2f96cfc..12841a87ca --- a/RecentActivity/release/rr-full/plugins/security +++ b/thirdparty/rr-full/plugins/security @@ -1,4 +1,4 @@ -# 20120528 *ALL* Plugins that apply on SECURITY hive, alphabetical order -auditpol -lsasecrets +# 20120528 *ALL* Plugins that apply on SECURITY hive, alphabetical order +auditpol +lsasecrets polacdms \ No newline at end of file diff --git a/RecentActivity/release/rr-full/plugins/securityproviders.pl b/thirdparty/rr-full/plugins/securityproviders.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/securityproviders.pl rename to thirdparty/rr-full/plugins/securityproviders.pl diff --git a/RecentActivity/release/rr-full/plugins/services.pl b/thirdparty/rr-full/plugins/services.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/services.pl rename to thirdparty/rr-full/plugins/services.pl diff --git a/RecentActivity/release/rr-full/plugins/sevenzip.pl b/thirdparty/rr-full/plugins/sevenzip.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/sevenzip.pl rename to thirdparty/rr-full/plugins/sevenzip.pl diff --git a/RecentActivity/release/rr-full/plugins/sfc.pl b/thirdparty/rr-full/plugins/sfc.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/sfc.pl rename to thirdparty/rr-full/plugins/sfc.pl diff --git a/RecentActivity/release/rr-full/plugins/shares.pl b/thirdparty/rr-full/plugins/shares.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/shares.pl rename to thirdparty/rr-full/plugins/shares.pl diff --git a/RecentActivity/release/rr-full/plugins/shc.pl b/thirdparty/rr-full/plugins/shc.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/shc.pl rename to thirdparty/rr-full/plugins/shc.pl diff --git a/RecentActivity/release/rr-full/plugins/shellbags.pl b/thirdparty/rr-full/plugins/shellbags.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/shellbags.pl rename to thirdparty/rr-full/plugins/shellbags.pl diff --git a/RecentActivity/release/rr-full/plugins/shellbags_test.pl b/thirdparty/rr-full/plugins/shellbags_test.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/shellbags_test.pl rename to thirdparty/rr-full/plugins/shellbags_test.pl diff --git a/RecentActivity/release/rr-full/plugins/shellbags_tln.pl b/thirdparty/rr-full/plugins/shellbags_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/shellbags_tln.pl rename to thirdparty/rr-full/plugins/shellbags_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/shellbags_xp.pl b/thirdparty/rr-full/plugins/shellbags_xp.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/shellbags_xp.pl rename to thirdparty/rr-full/plugins/shellbags_xp.pl diff --git a/RecentActivity/release/rr-full/plugins/shellexec.pl b/thirdparty/rr-full/plugins/shellexec.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/shellexec.pl rename to thirdparty/rr-full/plugins/shellexec.pl diff --git a/RecentActivity/release/rr-full/plugins/shellext.pl b/thirdparty/rr-full/plugins/shellext.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/shellext.pl rename to thirdparty/rr-full/plugins/shellext.pl diff --git a/RecentActivity/release/rr-full/plugins/shellfolders.pl b/thirdparty/rr-full/plugins/shellfolders.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/shellfolders.pl rename to thirdparty/rr-full/plugins/shellfolders.pl diff --git a/RecentActivity/release/rr-full/plugins/shelloverlay.pl b/thirdparty/rr-full/plugins/shelloverlay.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/shelloverlay.pl rename to thirdparty/rr-full/plugins/shelloverlay.pl diff --git a/RecentActivity/release/rr-full/plugins/shutdown.pl b/thirdparty/rr-full/plugins/shutdown.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/shutdown.pl rename to thirdparty/rr-full/plugins/shutdown.pl diff --git a/RecentActivity/release/rr-full/plugins/shutdowncount.pl b/thirdparty/rr-full/plugins/shutdowncount.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/shutdowncount.pl rename to thirdparty/rr-full/plugins/shutdowncount.pl diff --git a/RecentActivity/release/rr-full/plugins/skype.pl b/thirdparty/rr-full/plugins/skype.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/skype.pl rename to thirdparty/rr-full/plugins/skype.pl diff --git a/RecentActivity/release/rr-full/plugins/snapshot.pl b/thirdparty/rr-full/plugins/snapshot.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/snapshot.pl rename to thirdparty/rr-full/plugins/snapshot.pl diff --git a/RecentActivity/release/rr-full/plugins/snapshot_viewer.pl b/thirdparty/rr-full/plugins/snapshot_viewer.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/snapshot_viewer.pl rename to thirdparty/rr-full/plugins/snapshot_viewer.pl diff --git a/RecentActivity/release/rr-full/plugins/soft_run.pl b/thirdparty/rr-full/plugins/soft_run.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/soft_run.pl rename to thirdparty/rr-full/plugins/soft_run.pl diff --git a/RecentActivity/release/rr-full/plugins/software b/thirdparty/rr-full/plugins/software old mode 100755 new mode 100644 similarity index 90% rename from RecentActivity/release/rr-full/plugins/software rename to thirdparty/rr-full/plugins/software index 9b99b757d2..24d62ad19e --- a/RecentActivity/release/rr-full/plugins/software +++ b/thirdparty/rr-full/plugins/software @@ -1,59 +1,59 @@ -# 20120528 *ALL* Plugins that apply on SOFTWARE hive, alphabetical order -appinitdlls -apppaths -assoc -banner -bho -bitbucket -clsid -cmd_shell -codeid -ctrlpnl -defbrowser -direct -disablesr -drivers32 -drwatson -emdmgmt -ie_version -imagefile -init_dlls -installedcomp -installer -kb950582 -landesk -macaddr -mrt -msis -networkcards -networklist -networkuid -product -profilelist -regback -removdev -renocide -schedagent -secctr -sfc -shellexec -shellext -shelloverlay -snapshot -soft_run -spp_clients -sql_lastconnect -ssid -startmenuinternetapps_lm -svchost -tracing -uninstall -urlzone -uac -virut -win_cv -winbackup -winlogon -winnt_cv -winver +# 20120528 *ALL* Plugins that apply on SOFTWARE hive, alphabetical order +appinitdlls +apppaths +assoc +banner +bho +bitbucket +clsid +cmd_shell +codeid +ctrlpnl +defbrowser +direct +disablesr +drivers32 +drwatson +emdmgmt +ie_version +imagefile +init_dlls +installedcomp +installer +kb950582 +landesk +macaddr +mrt +msis +networkcards +networklist +networkuid +product +profilelist +regback +removdev +renocide +schedagent +secctr +sfc +shellexec +shellext +shelloverlay +snapshot +soft_run +spp_clients +sql_lastconnect +ssid +startmenuinternetapps_lm +svchost +tracing +uninstall +urlzone +uac +virut +win_cv +winbackup +winlogon +winnt_cv +winver yahoo_lm \ No newline at end of file diff --git a/RecentActivity/release/rr-full/plugins/spp_clients.pl b/thirdparty/rr-full/plugins/spp_clients.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/spp_clients.pl rename to thirdparty/rr-full/plugins/spp_clients.pl diff --git a/RecentActivity/release/rr-full/plugins/sql_lastconnect.pl b/thirdparty/rr-full/plugins/sql_lastconnect.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/sql_lastconnect.pl rename to thirdparty/rr-full/plugins/sql_lastconnect.pl diff --git a/RecentActivity/release/rr-full/plugins/srun_tln.pl b/thirdparty/rr-full/plugins/srun_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/srun_tln.pl rename to thirdparty/rr-full/plugins/srun_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/ssh_host_keys.pl b/thirdparty/rr-full/plugins/ssh_host_keys.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/ssh_host_keys.pl rename to thirdparty/rr-full/plugins/ssh_host_keys.pl diff --git a/RecentActivity/release/rr-full/plugins/ssid.pl b/thirdparty/rr-full/plugins/ssid.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/ssid.pl rename to thirdparty/rr-full/plugins/ssid.pl diff --git a/RecentActivity/release/rr-full/plugins/startmenuinternetapps_cu.pl b/thirdparty/rr-full/plugins/startmenuinternetapps_cu.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/startmenuinternetapps_cu.pl rename to thirdparty/rr-full/plugins/startmenuinternetapps_cu.pl diff --git a/RecentActivity/release/rr-full/plugins/startmenuinternetapps_lm.pl b/thirdparty/rr-full/plugins/startmenuinternetapps_lm.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/startmenuinternetapps_lm.pl rename to thirdparty/rr-full/plugins/startmenuinternetapps_lm.pl diff --git a/RecentActivity/release/rr-full/plugins/startpage.pl b/thirdparty/rr-full/plugins/startpage.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/startpage.pl rename to thirdparty/rr-full/plugins/startpage.pl diff --git a/RecentActivity/release/rr-full/plugins/startup.pl b/thirdparty/rr-full/plugins/startup.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/startup.pl rename to thirdparty/rr-full/plugins/startup.pl diff --git a/RecentActivity/release/rr-full/plugins/stillimage.pl b/thirdparty/rr-full/plugins/stillimage.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/stillimage.pl rename to thirdparty/rr-full/plugins/stillimage.pl diff --git a/RecentActivity/release/rr-full/plugins/susclient.pl b/thirdparty/rr-full/plugins/susclient.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/susclient.pl rename to thirdparty/rr-full/plugins/susclient.pl diff --git a/RecentActivity/release/rr-full/plugins/svc.pl b/thirdparty/rr-full/plugins/svc.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/svc.pl rename to thirdparty/rr-full/plugins/svc.pl diff --git a/RecentActivity/release/rr-full/plugins/svc_plus.pl b/thirdparty/rr-full/plugins/svc_plus.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/svc_plus.pl rename to thirdparty/rr-full/plugins/svc_plus.pl diff --git a/RecentActivity/release/rr-full/plugins/svc_tln.pl b/thirdparty/rr-full/plugins/svc_tln.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/svc_tln.pl rename to thirdparty/rr-full/plugins/svc_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/svcdll.pl b/thirdparty/rr-full/plugins/svcdll.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/svcdll.pl rename to thirdparty/rr-full/plugins/svcdll.pl diff --git a/RecentActivity/release/rr-full/plugins/svchost.pl b/thirdparty/rr-full/plugins/svchost.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/svchost.pl rename to thirdparty/rr-full/plugins/svchost.pl diff --git a/RecentActivity/release/rr-full/plugins/sysinternals.pl b/thirdparty/rr-full/plugins/sysinternals.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/sysinternals.pl rename to thirdparty/rr-full/plugins/sysinternals.pl diff --git a/RecentActivity/release/rr-full/plugins/sysinternals_tln.pl b/thirdparty/rr-full/plugins/sysinternals_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/sysinternals_tln.pl rename to thirdparty/rr-full/plugins/sysinternals_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/system b/thirdparty/rr-full/plugins/system old mode 100755 new mode 100644 similarity index 91% rename from RecentActivity/release/rr-full/plugins/system rename to thirdparty/rr-full/plugins/system index dedd284378..2b0807cd78 --- a/RecentActivity/release/rr-full/plugins/system +++ b/thirdparty/rr-full/plugins/system @@ -1,51 +1,51 @@ -# 20120528 *ALL* Plugins that apply on SYSTEM hive, alphabetical order -appcertdlls -appcompatcache -auditfail -backuprestore -compname -crashcontrol -ddm -devclass -disablelastaccess -dllsearch -eventlog -eventlogs -fw_config -hibernate -ide -imagedev -kbdcrash -legacy -mountdev -network -nic -nic_mst2 -nic2 -nolmhash -pagefile -prefetch -#This currently gets stuck in an infinite loop -#productpolicy -producttype -rdpport -routes -safeboot -services -shares -shutdown -shutdowncount -stillimage -svc -svc2 -svc_plus -svcdll -termserv -timezone -usb -usbdevices -usbstor -usbstor2 -usbstor3 -xpedition -wpdbusenum +# 20120528 *ALL* Plugins that apply on SYSTEM hive, alphabetical order +appcertdlls +appcompatcache +auditfail +backuprestore +compname +crashcontrol +ddm +devclass +disablelastaccess +dllsearch +eventlog +eventlogs +fw_config +hibernate +ide +imagedev +kbdcrash +legacy +mountdev +network +nic +nic_mst2 +nic2 +nolmhash +pagefile +prefetch +#This currently gets stuck in an infinite loop +#productpolicy +producttype +rdpport +routes +safeboot +services +shares +shutdown +shutdowncount +stillimage +svc +svc2 +svc_plus +svcdll +termserv +timezone +usb +usbdevices +usbstor +usbstor2 +usbstor3 +xpedition +wpdbusenum diff --git a/RecentActivity/release/rr-full/plugins/systemindex.pl b/thirdparty/rr-full/plugins/systemindex.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/systemindex.pl rename to thirdparty/rr-full/plugins/systemindex.pl diff --git a/RecentActivity/release/rr-full/plugins/termcert.pl b/thirdparty/rr-full/plugins/termcert.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/termcert.pl rename to thirdparty/rr-full/plugins/termcert.pl diff --git a/RecentActivity/release/rr-full/plugins/termserv.pl b/thirdparty/rr-full/plugins/termserv.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/termserv.pl rename to thirdparty/rr-full/plugins/termserv.pl diff --git a/RecentActivity/release/rr-full/plugins/timezone.pl b/thirdparty/rr-full/plugins/timezone.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/timezone.pl rename to thirdparty/rr-full/plugins/timezone.pl diff --git a/RecentActivity/release/rr-full/plugins/tracing.pl b/thirdparty/rr-full/plugins/tracing.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/tracing.pl rename to thirdparty/rr-full/plugins/tracing.pl diff --git a/RecentActivity/release/rr-full/plugins/tracing_tln.pl b/thirdparty/rr-full/plugins/tracing_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/tracing_tln.pl rename to thirdparty/rr-full/plugins/tracing_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/trappoll.pl b/thirdparty/rr-full/plugins/trappoll.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/trappoll.pl rename to thirdparty/rr-full/plugins/trappoll.pl diff --git a/RecentActivity/release/rr-full/plugins/trustrecords.pl b/thirdparty/rr-full/plugins/trustrecords.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/trustrecords.pl rename to thirdparty/rr-full/plugins/trustrecords.pl diff --git a/RecentActivity/release/rr-full/plugins/trustrecords_tln.pl b/thirdparty/rr-full/plugins/trustrecords_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/trustrecords_tln.pl rename to thirdparty/rr-full/plugins/trustrecords_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/tsclient.pl b/thirdparty/rr-full/plugins/tsclient.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/tsclient.pl rename to thirdparty/rr-full/plugins/tsclient.pl diff --git a/RecentActivity/release/rr-full/plugins/tsclient_tln.pl b/thirdparty/rr-full/plugins/tsclient_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/tsclient_tln.pl rename to thirdparty/rr-full/plugins/tsclient_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/typedpaths.pl b/thirdparty/rr-full/plugins/typedpaths.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/typedpaths.pl rename to thirdparty/rr-full/plugins/typedpaths.pl diff --git a/RecentActivity/release/rr-full/plugins/typedpaths_tln.pl b/thirdparty/rr-full/plugins/typedpaths_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/typedpaths_tln.pl rename to thirdparty/rr-full/plugins/typedpaths_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/typedurls.pl b/thirdparty/rr-full/plugins/typedurls.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/typedurls.pl rename to thirdparty/rr-full/plugins/typedurls.pl diff --git a/RecentActivity/release/rr-full/plugins/typedurls_tln.pl b/thirdparty/rr-full/plugins/typedurls_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/typedurls_tln.pl rename to thirdparty/rr-full/plugins/typedurls_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/typedurlstime.pl b/thirdparty/rr-full/plugins/typedurlstime.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/typedurlstime.pl rename to thirdparty/rr-full/plugins/typedurlstime.pl diff --git a/RecentActivity/release/rr-full/plugins/typedurlstime_tln.pl b/thirdparty/rr-full/plugins/typedurlstime_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/typedurlstime_tln.pl rename to thirdparty/rr-full/plugins/typedurlstime_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/uac.pl b/thirdparty/rr-full/plugins/uac.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/uac.pl rename to thirdparty/rr-full/plugins/uac.pl diff --git a/RecentActivity/release/rr-full/plugins/uninstall.pl b/thirdparty/rr-full/plugins/uninstall.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/uninstall.pl rename to thirdparty/rr-full/plugins/uninstall.pl diff --git a/RecentActivity/release/rr-full/plugins/uninstall_tln.pl b/thirdparty/rr-full/plugins/uninstall_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/uninstall_tln.pl rename to thirdparty/rr-full/plugins/uninstall_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/unreadmail.pl b/thirdparty/rr-full/plugins/unreadmail.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/unreadmail.pl rename to thirdparty/rr-full/plugins/unreadmail.pl diff --git a/RecentActivity/release/rr-full/plugins/urlzone.pl b/thirdparty/rr-full/plugins/urlzone.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/urlzone.pl rename to thirdparty/rr-full/plugins/urlzone.pl diff --git a/RecentActivity/release/rr-full/plugins/urun_tln.pl b/thirdparty/rr-full/plugins/urun_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/urun_tln.pl rename to thirdparty/rr-full/plugins/urun_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/usb.pl b/thirdparty/rr-full/plugins/usb.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/usb.pl rename to thirdparty/rr-full/plugins/usb.pl diff --git a/RecentActivity/release/rr-full/plugins/usbdevices.pl b/thirdparty/rr-full/plugins/usbdevices.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/usbdevices.pl rename to thirdparty/rr-full/plugins/usbdevices.pl diff --git a/RecentActivity/release/rr-full/plugins/usbstor.pl b/thirdparty/rr-full/plugins/usbstor.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/usbstor.pl rename to thirdparty/rr-full/plugins/usbstor.pl diff --git a/RecentActivity/release/rr-full/plugins/usbstor2.pl b/thirdparty/rr-full/plugins/usbstor2.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/usbstor2.pl rename to thirdparty/rr-full/plugins/usbstor2.pl diff --git a/RecentActivity/release/rr-full/plugins/usbstor3.pl b/thirdparty/rr-full/plugins/usbstor3.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/usbstor3.pl rename to thirdparty/rr-full/plugins/usbstor3.pl diff --git a/RecentActivity/release/rr-full/plugins/user_run.pl b/thirdparty/rr-full/plugins/user_run.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/user_run.pl rename to thirdparty/rr-full/plugins/user_run.pl diff --git a/RecentActivity/release/rr-full/plugins/user_win.pl b/thirdparty/rr-full/plugins/user_win.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/user_win.pl rename to thirdparty/rr-full/plugins/user_win.pl diff --git a/RecentActivity/release/rr-full/plugins/userassist.pl b/thirdparty/rr-full/plugins/userassist.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/userassist.pl rename to thirdparty/rr-full/plugins/userassist.pl diff --git a/RecentActivity/release/rr-full/plugins/userassist_tln.pl b/thirdparty/rr-full/plugins/userassist_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/userassist_tln.pl rename to thirdparty/rr-full/plugins/userassist_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/userinfo.pl b/thirdparty/rr-full/plugins/userinfo.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/userinfo.pl rename to thirdparty/rr-full/plugins/userinfo.pl diff --git a/RecentActivity/release/rr-full/plugins/userlocsvc.pl b/thirdparty/rr-full/plugins/userlocsvc.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/userlocsvc.pl rename to thirdparty/rr-full/plugins/userlocsvc.pl diff --git a/RecentActivity/release/rr-full/plugins/usrclass b/thirdparty/rr-full/plugins/usrclass old mode 100755 new mode 100644 similarity index 88% rename from RecentActivity/release/rr-full/plugins/usrclass rename to thirdparty/rr-full/plugins/usrclass index 5d6c153909..2f854cb1ee --- a/RecentActivity/release/rr-full/plugins/usrclass +++ b/thirdparty/rr-full/plugins/usrclass @@ -1,3 +1,3 @@ -# 20120918 *ALL* Plugins that apply on USRCLASS hive, alphabetical order -muicache +# 20120918 *ALL* Plugins that apply on USRCLASS hive, alphabetical order +muicache shellbags \ No newline at end of file diff --git a/RecentActivity/release/rr-full/plugins/vawtrak.pl b/thirdparty/rr-full/plugins/vawtrak.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/vawtrak.pl rename to thirdparty/rr-full/plugins/vawtrak.pl diff --git a/RecentActivity/release/rr-full/plugins/virut.pl b/thirdparty/rr-full/plugins/virut.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/virut.pl rename to thirdparty/rr-full/plugins/virut.pl diff --git a/RecentActivity/release/rr-full/plugins/vista_bitbucket.pl b/thirdparty/rr-full/plugins/vista_bitbucket.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/vista_bitbucket.pl rename to thirdparty/rr-full/plugins/vista_bitbucket.pl diff --git a/RecentActivity/release/rr-full/plugins/vmplayer.pl b/thirdparty/rr-full/plugins/vmplayer.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/vmplayer.pl rename to thirdparty/rr-full/plugins/vmplayer.pl diff --git a/RecentActivity/release/rr-full/plugins/vmware_vsphere_client.pl b/thirdparty/rr-full/plugins/vmware_vsphere_client.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/vmware_vsphere_client.pl rename to thirdparty/rr-full/plugins/vmware_vsphere_client.pl diff --git a/RecentActivity/release/rr-full/plugins/vnchooksapplicationprefs.pl b/thirdparty/rr-full/plugins/vnchooksapplicationprefs.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/vnchooksapplicationprefs.pl rename to thirdparty/rr-full/plugins/vnchooksapplicationprefs.pl diff --git a/RecentActivity/release/rr-full/plugins/vncviewer.pl b/thirdparty/rr-full/plugins/vncviewer.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/vncviewer.pl rename to thirdparty/rr-full/plugins/vncviewer.pl diff --git a/RecentActivity/release/rr-full/plugins/volinfocache.pl b/thirdparty/rr-full/plugins/volinfocache.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/volinfocache.pl rename to thirdparty/rr-full/plugins/volinfocache.pl diff --git a/RecentActivity/release/rr-full/plugins/wallpaper.pl b/thirdparty/rr-full/plugins/wallpaper.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/wallpaper.pl rename to thirdparty/rr-full/plugins/wallpaper.pl diff --git a/RecentActivity/release/rr-full/plugins/warcraft3.pl b/thirdparty/rr-full/plugins/warcraft3.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/warcraft3.pl rename to thirdparty/rr-full/plugins/warcraft3.pl diff --git a/RecentActivity/release/rr-full/plugins/wbem.pl b/thirdparty/rr-full/plugins/wbem.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/wbem.pl rename to thirdparty/rr-full/plugins/wbem.pl diff --git a/RecentActivity/release/rr-full/plugins/win_cv.pl b/thirdparty/rr-full/plugins/win_cv.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/win_cv.pl rename to thirdparty/rr-full/plugins/win_cv.pl diff --git a/RecentActivity/release/rr-full/plugins/winbackup.pl b/thirdparty/rr-full/plugins/winbackup.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/winbackup.pl rename to thirdparty/rr-full/plugins/winbackup.pl diff --git a/RecentActivity/release/rr-full/plugins/winevt.pl b/thirdparty/rr-full/plugins/winevt.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/winevt.pl rename to thirdparty/rr-full/plugins/winevt.pl diff --git a/RecentActivity/release/rr-full/plugins/winlogon.pl b/thirdparty/rr-full/plugins/winlogon.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/winlogon.pl rename to thirdparty/rr-full/plugins/winlogon.pl diff --git a/RecentActivity/release/rr-full/plugins/winlogon_tln.pl b/thirdparty/rr-full/plugins/winlogon_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/winlogon_tln.pl rename to thirdparty/rr-full/plugins/winlogon_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/winlogon_u.pl b/thirdparty/rr-full/plugins/winlogon_u.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/winlogon_u.pl rename to thirdparty/rr-full/plugins/winlogon_u.pl diff --git a/RecentActivity/release/rr-full/plugins/winnt_cv.pl b/thirdparty/rr-full/plugins/winnt_cv.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/winnt_cv.pl rename to thirdparty/rr-full/plugins/winnt_cv.pl diff --git a/RecentActivity/release/rr-full/plugins/winrar.pl b/thirdparty/rr-full/plugins/winrar.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/winrar.pl rename to thirdparty/rr-full/plugins/winrar.pl diff --git a/RecentActivity/release/rr-full/plugins/winrar_tln.pl b/thirdparty/rr-full/plugins/winrar_tln.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/winrar_tln.pl rename to thirdparty/rr-full/plugins/winrar_tln.pl diff --git a/RecentActivity/release/rr-full/plugins/winscp.pl b/thirdparty/rr-full/plugins/winscp.pl similarity index 100% rename from RecentActivity/release/rr-full/plugins/winscp.pl rename to thirdparty/rr-full/plugins/winscp.pl diff --git a/RecentActivity/release/rr-full/plugins/winscp_sessions.pl b/thirdparty/rr-full/plugins/winscp_sessions.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/winscp_sessions.pl rename to thirdparty/rr-full/plugins/winscp_sessions.pl diff --git a/RecentActivity/release/rr-full/plugins/winver.pl b/thirdparty/rr-full/plugins/winver.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/winver.pl rename to thirdparty/rr-full/plugins/winver.pl diff --git a/RecentActivity/release/rr-full/plugins/winvnc.pl b/thirdparty/rr-full/plugins/winvnc.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/winvnc.pl rename to thirdparty/rr-full/plugins/winvnc.pl diff --git a/RecentActivity/release/rr-full/plugins/winzip.pl b/thirdparty/rr-full/plugins/winzip.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/winzip.pl rename to thirdparty/rr-full/plugins/winzip.pl diff --git a/RecentActivity/release/rr-full/plugins/wordwheelquery.pl b/thirdparty/rr-full/plugins/wordwheelquery.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/wordwheelquery.pl rename to thirdparty/rr-full/plugins/wordwheelquery.pl diff --git a/RecentActivity/release/rr-full/plugins/wpdbusenum.pl b/thirdparty/rr-full/plugins/wpdbusenum.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/wpdbusenum.pl rename to thirdparty/rr-full/plugins/wpdbusenum.pl diff --git a/RecentActivity/release/rr-full/plugins/xpedition.pl b/thirdparty/rr-full/plugins/xpedition.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/xpedition.pl rename to thirdparty/rr-full/plugins/xpedition.pl diff --git a/RecentActivity/release/rr-full/plugins/yahoo_cu.pl b/thirdparty/rr-full/plugins/yahoo_cu.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/yahoo_cu.pl rename to thirdparty/rr-full/plugins/yahoo_cu.pl diff --git a/RecentActivity/release/rr-full/plugins/yahoo_lm.pl b/thirdparty/rr-full/plugins/yahoo_lm.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/plugins/yahoo_lm.pl rename to thirdparty/rr-full/plugins/yahoo_lm.pl diff --git a/RecentActivity/release/rr-full/regripper.pdf b/thirdparty/rr-full/regripper.pdf old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/regripper.pdf rename to thirdparty/rr-full/regripper.pdf diff --git a/RecentActivity/release/rr-full/rip.exe b/thirdparty/rr-full/rip.exe old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/rip.exe rename to thirdparty/rr-full/rip.exe diff --git a/RecentActivity/release/rr-full/rip.pl b/thirdparty/rr-full/rip.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/rip.pl rename to thirdparty/rr-full/rip.pl diff --git a/RecentActivity/release/rr-full/rr.exe b/thirdparty/rr-full/rr.exe old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/rr.exe rename to thirdparty/rr-full/rr.exe diff --git a/RecentActivity/release/rr-full/rr.pl b/thirdparty/rr-full/rr.pl old mode 100755 new mode 100644 similarity index 100% rename from RecentActivity/release/rr-full/rr.pl rename to thirdparty/rr-full/rr.pl diff --git a/RecentActivity/release/rr/p2x5124.dll b/thirdparty/rr/p2x5124.dll similarity index 100% rename from RecentActivity/release/rr/p2x5124.dll rename to thirdparty/rr/p2x5124.dll diff --git a/RecentActivity/release/rr/plugins/arunmru.pl b/thirdparty/rr/plugins/arunmru.pl similarity index 100% rename from RecentActivity/release/rr/plugins/arunmru.pl rename to thirdparty/rr/plugins/arunmru.pl diff --git a/RecentActivity/release/rr/plugins/autopsycompname.pl b/thirdparty/rr/plugins/autopsycompname.pl similarity index 100% rename from RecentActivity/release/rr/plugins/autopsycompname.pl rename to thirdparty/rr/plugins/autopsycompname.pl diff --git a/RecentActivity/release/rr/plugins/autopsylogin.pl b/thirdparty/rr/plugins/autopsylogin.pl similarity index 100% rename from RecentActivity/release/rr/plugins/autopsylogin.pl rename to thirdparty/rr/plugins/autopsylogin.pl diff --git a/RecentActivity/release/rr/plugins/autopsyntuser b/thirdparty/rr/plugins/autopsyntuser similarity index 100% rename from RecentActivity/release/rr/plugins/autopsyntuser rename to thirdparty/rr/plugins/autopsyntuser diff --git a/RecentActivity/release/rr/plugins/autopsyntusernetwork.pl b/thirdparty/rr/plugins/autopsyntusernetwork.pl similarity index 100% rename from RecentActivity/release/rr/plugins/autopsyntusernetwork.pl rename to thirdparty/rr/plugins/autopsyntusernetwork.pl diff --git a/RecentActivity/release/rr/plugins/autopsyprocarchitecture.pl b/thirdparty/rr/plugins/autopsyprocarchitecture.pl similarity index 100% rename from RecentActivity/release/rr/plugins/autopsyprocarchitecture.pl rename to thirdparty/rr/plugins/autopsyprocarchitecture.pl diff --git a/RecentActivity/release/rr/plugins/autopsyprofilelist.pl b/thirdparty/rr/plugins/autopsyprofilelist.pl similarity index 100% rename from RecentActivity/release/rr/plugins/autopsyprofilelist.pl rename to thirdparty/rr/plugins/autopsyprofilelist.pl diff --git a/RecentActivity/release/rr/plugins/autopsyprofiler.pl b/thirdparty/rr/plugins/autopsyprofiler.pl similarity index 100% rename from RecentActivity/release/rr/plugins/autopsyprofiler.pl rename to thirdparty/rr/plugins/autopsyprofiler.pl diff --git a/RecentActivity/release/rr/plugins/autopsyrecentdocs.pl b/thirdparty/rr/plugins/autopsyrecentdocs.pl similarity index 100% rename from RecentActivity/release/rr/plugins/autopsyrecentdocs.pl rename to thirdparty/rr/plugins/autopsyrecentdocs.pl diff --git a/RecentActivity/release/rr/plugins/autopsyshellfolders.pl b/thirdparty/rr/plugins/autopsyshellfolders.pl similarity index 100% rename from RecentActivity/release/rr/plugins/autopsyshellfolders.pl rename to thirdparty/rr/plugins/autopsyshellfolders.pl diff --git a/RecentActivity/release/rr/plugins/autopsysoftware b/thirdparty/rr/plugins/autopsysoftware similarity index 100% rename from RecentActivity/release/rr/plugins/autopsysoftware rename to thirdparty/rr/plugins/autopsysoftware diff --git a/RecentActivity/release/rr/plugins/autopsysystem b/thirdparty/rr/plugins/autopsysystem similarity index 100% rename from RecentActivity/release/rr/plugins/autopsysystem rename to thirdparty/rr/plugins/autopsysystem diff --git a/RecentActivity/release/rr/plugins/autopsyuninstall.pl b/thirdparty/rr/plugins/autopsyuninstall.pl similarity index 100% rename from RecentActivity/release/rr/plugins/autopsyuninstall.pl rename to thirdparty/rr/plugins/autopsyuninstall.pl diff --git a/RecentActivity/release/rr/plugins/autopsyusb.pl b/thirdparty/rr/plugins/autopsyusb.pl similarity index 100% rename from RecentActivity/release/rr/plugins/autopsyusb.pl rename to thirdparty/rr/plugins/autopsyusb.pl diff --git a/RecentActivity/release/rr/plugins/autopsyusbdevices.pl b/thirdparty/rr/plugins/autopsyusbdevices.pl similarity index 100% rename from RecentActivity/release/rr/plugins/autopsyusbdevices.pl rename to thirdparty/rr/plugins/autopsyusbdevices.pl diff --git a/RecentActivity/release/rr/plugins/autopsywinver.pl b/thirdparty/rr/plugins/autopsywinver.pl similarity index 100% rename from RecentActivity/release/rr/plugins/autopsywinver.pl rename to thirdparty/rr/plugins/autopsywinver.pl diff --git a/RecentActivity/release/rr/plugins/officedocs.pl b/thirdparty/rr/plugins/officedocs.pl similarity index 100% rename from RecentActivity/release/rr/plugins/officedocs.pl rename to thirdparty/rr/plugins/officedocs.pl diff --git a/RecentActivity/release/rr/plugins/officedocs2010.pl b/thirdparty/rr/plugins/officedocs2010.pl similarity index 100% rename from RecentActivity/release/rr/plugins/officedocs2010.pl rename to thirdparty/rr/plugins/officedocs2010.pl diff --git a/RecentActivity/release/rr/rip.exe b/thirdparty/rr/rip.exe similarity index 100% rename from RecentActivity/release/rr/rip.exe rename to thirdparty/rr/rip.exe diff --git a/RecentActivity/release/rr/rip.pl b/thirdparty/rr/rip.pl similarity index 100% rename from RecentActivity/release/rr/rip.pl rename to thirdparty/rr/rip.pl diff --git a/RecentActivity/release/rr/rr.exe b/thirdparty/rr/rr.exe similarity index 100% rename from RecentActivity/release/rr/rr.exe rename to thirdparty/rr/rr.exe diff --git a/RecentActivity/release/rr/rr.pl b/thirdparty/rr/rr.pl similarity index 100% rename from RecentActivity/release/rr/rr.pl rename to thirdparty/rr/rr.pl