diff -c -P -r regripper-orig/auditpol.sh regripper/auditpol.sh
*** regripper-orig/auditpol.sh	1969-12-31 19:00:00.000000000 -0500
--- regripper/auditpol.sh	2010-03-30 08:53:18.738418108 -0400
***************
*** 0 ****
--- 1,10 ----
+ #!/bin/sh
+ REM Batch file to automate running of auditpol.pl plugin file
+ REM in order to enumerate the audit policy from the Security hive
+ REM file.
+ REM 
+ REM Usage: auditpol <path_to_Security_hive_file>
+ REM
+ REM copyright 2008 H. Carvey, keydet89@yahoo.com
+ 
+ rip.pl -r "$1" -p auditpol
diff -c -P -r regripper-orig/rip.pl regripper/rip.pl
*** regripper-orig/rip.pl	2008-08-31 07:53:38.000000000 -0400
--- regripper/rip.pl	2010-03-30 08:51:41.482411395 -0400
***************
*** 1,4 ****
! #! c:\perl\bin\perl.exe
  #-------------------------------------------------------------------------
  # Rip - RegRipper, CLI version
  # Use this utility to run a plugins file or a single plugin against a Reg
--- 1,4 ----
! #! /usr/bin/perl
  #-------------------------------------------------------------------------
  # Rip - RegRipper, CLI version
  # Use this utility to run a plugins file or a single plugin against a Reg
***************
*** 26,32 ****
  Getopt::Long::Configure("prefix_pattern=(-|\/)");
  GetOptions(\%config,qw(reg|r=s file|f=s csv|c guess|g plugin|p=s list|l help|?|h));
  
! my $plugindir = "plugins\\";
  my $VERSION = "20080419";
  
  if ($config{help} || !%config) {
--- 26,32 ----
  Getopt::Long::Configure("prefix_pattern=(-|\/)");
  GetOptions(\%config,qw(reg|r=s file|f=s csv|c guess|g plugin|p=s list|l help|?|h));
  
! my $plugindir = "regripper/plugins/";
  my $VERSION = "20080419";
  
  if ($config{help} || !%config) {
***************
*** 39,47 ****
  #-------------------------------------------------------------
  if ($config{list}) {
  	my @plugins;
! 	opendir(DIR,$plugindir) || die "Could not open $plugindir: $!\n";
! 	@plugins = readdir(DIR);
! 	closedir(DIR);
  
  	my $count = 1; 
  	print "Plugin,Version,Hive,Description\n" if ($config{csv});
--- 39,53 ----
  #-------------------------------------------------------------
  if ($config{list}) {
  	my @plugins;
! 	my $tdir;
! 	for $tdir (@INC) {
! 		if ( opendir(DIR,"$tdir/$plugindir") ) {
! 			@plugins = readdir(DIR);
! 			closedir(DIR);
! 			last;
! 		}
! 	}
! 	$#plugins >= 0 || die "Could not open $plugindir: $!\n";
  
  	my $count = 1; 
  	print "Plugin,Version,Hive,Description\n" if ($config{csv});
***************
*** 265,268 ****
  	};
  	$t = 0 if ($t < 0);
  	return $t;
! }
\ No newline at end of file
--- 271,274 ----
  	};
  	$t = 0 if ($t < 0);
  	return $t;
! }
diff -c -P -r regripper-orig/ua.sh regripper/ua.sh
*** regripper-orig/ua.sh	1969-12-31 19:00:00.000000000 -0500
--- regripper/ua.sh	2010-03-30 08:53:03.954585372 -0400
***************
*** 0 ****
--- 1,10 ----
+ #!/bin/sh
+ REM Batch file to automate running of userassist.pl plugin file
+ REM in order to enumerate the contents of the UserAssist key from
+ REM an NTUSER.DAT Registry hive file.
+ REM 
+ REM Usage: ua <path_to_NTUSER.DAT_hive_file>
+ REM
+ REM copyright 2008 H. Carvey, keydet89@yahoo.com
+ 
+ rip.pl -r "$1" -p userassist
