Analysing NSRL data set for fun and because… curious, Part 3

Nearly two years ago I published a quick summary of my analysis of NSRL data. I believe I was the first one to publicly evaluate this data set, and I still stand by the harsh conclusions I reached back then, today. And what makes me really happy about that 2 year old analysis is a small ripple effect that my posts caused…

I really loved this DFIR science follow-up post – not only Joshua followed my steps and delivered some nice data crunching on the NSRL core dataset to confirm/disprove my findings and hypothesis – he also did some actual benchmarking! I think the results of his experiment prove beyond any doubt that when you blindly do garbage in, there will for sure be garbage out. Also known as: you can use NSRL data better. And then Joshua published his Efficient-NSRL tool as well. So, if you use NSRL set in your investigations, you will benefit from taking a look at my older posts, Joshua’s post, and his Efficient-NSRL tool…

Two years later…

The NSRL data set has changed a lot since 2021, so it’s only natural to come back to its recent incarnation to see what has changed…

The first notable change is that the NSRL data is now distributed as a SQLite3 database only. The schema of the database is available and you can find it inside files named like this:

  • RDS_2023.03.1_modern.schema.sql
  • RDS_2023.06.1_modern_minimal.schema.sql

To create a textual equivalent of the old NSRLFile.txt file one has to follow the recipe provided inside this PDF. Which, of course doesn’t work, because the already-present FILE view (inside the RDS_2023.03.1_modern.db) does not include the crc32 column/field… but we can fix that easily. We just create a new VIEW called FILE2 that includes that missing CRC32 column/field:

CREATE VIEW FILE2 AS
    SELECT
        UPPER(md.sha256) AS sha256,
        UPPER(md.sha1) AS sha1,
        UPPER(md.md5) AS md5,
        UPPER(md.crc32) AS crc32,
        CASE md.extension
        WHEN ''
                THEN md.file_name
                ELSE md.file_name||'.'||md.extension
            END AS file_name,
        md.bytes AS file_size,
        po.package_id
    FROM
        METADATA AS md,
        PACKAGE_OBJECT AS po
    WHERE
        md.object_id = po.object_id

and then we run the export query using a FILE2 view:

DROP TABLE IF EXISTS EXPORT;
CREATE TABLE EXPORT AS SELECT sha1, md5, crc32, file_name, file_size, package_id FROM FILE2;
UPDATE EXPORT SET file_name = REPLACE(file_name, '"', '');
.mode csv
.headers off
.output output.txt
SELECT '"' || sha1 || '"', '"' || md5 || '"', '"' || crc32 || '"', '"' || file_name || '"', file_size,
package_id, '"' || 0 || '"', '"' || '"' FROM EXPORT ORDER BY sha1;

or, if we just want file names:

.output filenames.txt
SELECT file_name FROM EXPORT;

These filenames can be then sorted, counted, etc.

There is a lot more file names in the new set, that’s for sure. It went from 16512841 unique file names I observed in a 2021 set to 23676133 in Jan 2023. Still, lots of it is not that useful, because the actual benign (‘good’) source files are being pushed around, their logical chunks carved out, their sections and class files extracted, etc. – same as before, the most frequent ‘file names’ are PE file section names, MSI table names, Java files, etc… And if you missed the memo, hashes of these logical ‘chunks’ are not very useful as you will never find their binary equivalents present on any file system, except for the ‘worker’ NSRL system(s). Unless your forensic suite can apply hashes to PE file sections, MSI tables, .jar class files – all these ‘partial’ hashes are useless when it comes to ‘mark file as a good, NSRL known file’.

The stats for the top file names are now as follows (for RDS_2023.03.1_modern.db):

  • 9081226 1
  • 7850139 .text
  • 5933107 .reloc
  • 5086051 .data
  • 3634652 version.txt
  • 3101066 .rdata
  • 2923472 CERTIFICATE
  • 2784502 __LINKEDIT
  • 2784113 __TEXT__text
  • 2758779 __TEXT__cstring
  • 2735742 __DATA__data
  • 2718505 __DATA__bss
  • 2667173 __TEXT__const
  • 2629651 __DATA__const
  • 2588460 __DATA__common
  • 2437056 __DATA__mod_init_func
  • 2187040 __DATA__mod_term_func
  • 2164991 __DWARF__debug_abbrev
  • 2164534 __DWARF__debug_line
  • 2164534 __DWARF__debug_info
  • 2164532 __DWARF__debug_aranges
  • 2163269 __DWARF__debug_pubnames
  • 2163268 __DWARF__debug_pubtypes
  • 2162599 __DWARF__debug_str
  • 2162336 __DWARF__debug_frame
  • 2161990 __DWARF__debug_loc
  • 2161722 __DWARF__debug_ranges
  • 2159803 __DWARF__apple_objc
  • 2159803 __DWARF__apple_namespac
  • 2159800 __DWARF__apple_types
  • 2159800 __DWARF__apple_names
  • 2158643 __DWARF__debug_inlined
  • 2157348 __HIB__common
  • 2157348 __HIB__bss
  • 2157347 __KLD__bss
  • 2157346 __HIB__const
  • 2157345 __KLD__cstring

We must admit that it’s s hardly useful.

Having said that, you may be surprised that I still like this dataset a lot, and would still recommend using the NSRL set in your investigations, even if you use it blindly. Yes, it’s not ideal, it may cause your forensic boxes some extra CPU cycles, but it’s at least something. And it’s out there, for free. I also respect the efforts a lot, because a few years ago I made a conscious decision to create a competitive set to NSRL and now I do know now how hard it is…

The bottom line is: know and use all available data sets and tools. Just apply them wisely.

Lolbins for connoisseurs… Part 2

It may sound a bit counterintuitive, but some very known lolbins often make it to places that no one ever thought would be possible…

Continuing the topic I started a few days earlier, today I will explore a few more ‘popular’ lolbinish executables that you may find ‘legitimately’ present in the environments:

InstallUtil

  • %Program Files%\Celceo SystemAI\InstallUtil.exe
  • %Program Files%\TSS\Auto Mail Sender Birthday Edition\InstallUtil.exe
  • %Program Files%\TSS\Auto Mail Sender Standard Edition\InstallUtil.exe
  • %Program Files%\TSS\WinExt\InstallUtil.exe

RegAsm

  • %Program Files%\ApexSQL\ApexSQLDiff2012\RegAsm.exe
  • %Program Files%\AUDIOzilla\RegAsm.exe
  • %Program Files%\Common Files\Multilizer\NET\1.1\RegAsm.exe
  • %Program Files%\Common Files\Multilizer\NET\2.0\RegAsm.exe
  • %Program Files%\Common Files\Multilizer\NET\4.0\RegAsm.exe
  • %Program Files%\ExeShield\regasm.exe
  • %Program Files%\iOpus\iMacros\RegAsm.exe

ping

  • %Program Files%\Stellar Migrator for MS Exchange\Ping.exe
  • %Program Files%\Stellar Phoenix Mailbox – Exchange Desktop\Ping.exe
  • %Program Files%\Stellar Phoenix Repair for SQLite\Ping.exe
  • %Program Files%\Stellar Phoenix Windows Backup Recovery\Ping.exe

Update_Execute

  • %Program Files%\Diashow XL\Update_Execute.exe
  • %Program Files%\E-Mail-Converter\Update_Execute.exe
  • %Program Files%\FotoArchiv XL\Update_Execute.exe
  • %Program Files%\FotoWorksXL2013\Update_Execute.exe
  • %Program Files%\FreeFotoWorks2013\Update_Execute.exe
  • %Program Files%\HomepageFIX2013\Update_Execute.exe
  • %Program Files%\MailFinder\Update_Execute.exe
  • %Program Files%\MailOut\Update_Execute.exe
  • %Program Files%\MEDIA Revolution\Update_Execute.exe
  • %Program Files%\NewsletterDesigner\Update_Execute.exe
  • %Program Files%\OnlineGalerie\Update_Execute.exe
  • %Program Files%\profiSUBMIT\Update_Execute.exe
  • %Program Files%\Slideshow XL\Update_Execute.exe

the latter allows you to execute any program of your choice via proxy f.ex.:

Update_Execute.exe c:\windows\notepad.exe

runxx.exe (same as above, plus, more persistent)

  • c:\drivers\keyb\dritek2007\runxx.exe
  • c:\drivers\keyboard\dritek2000\InstPack\runxx.exe
  • c:\drivers\keyboard\drtk2001\runxx.exe
  • c:\drivers\keyboard\dtk30005\runxx.exe
  • c:\drivers\keyboard\lm2003\InstPack\runxx.exe
  • c:\drivers\keyboard\lm3002\runxx.exe
  • c:\drivers\keyboard\lm3003\runxx.exe
  • c:\drivers\keyboard\lm3004\InstPack\runxx.exe
  • c:\drivers\keyboard\lm3004\runxx.exe
  • c:\drivers\keyboard\lm3005\runxx.exe
  • c:\Drivers\Launch_Manager\runxx.exe
  • c:\drivers\launchmanager\dritek2001\InstPack\runxx.exe
  • c:\drivers\launchmanager\dt2000\InstPack\runxx.exe
  • c:\drivers\launchmanager\dt2002\runxx.exe
  • c:\drivers\LM\2002\InstPack\runxx.exe
  • c:\drivers\hotkeys\runxx.exe

instmsia.exe

  • %Program Files%\Firmware Update\All_Package\instmsia.exe
  • C:\Drivers\7. Alcor CardReader Driver\instmsia.exe
  • c:\drivers\Alcor Card Reader Driver\instmsia.exe
  • c:\drivers\bluetooth\bc621500\Win32\instmsia.exe
  • c:\drivers\bluetooth\bc621500\Win64\instmsia.exe
  • c:\drivers\bluetooth\w6104600\Win32\instmsia.exe
  • c:\drivers\bluetooth\w6104600\Win64\instmsia.exe
  • c:\Drivers\Bluetooth\Win32\instmsia.exe
  • c:\Drivers\Bluetooth\Win64\instmsia.exe
  • c:\drivers\bt\6015600\Win32\instmsia.exe
  • c:\drivers\bt\6015600\Win64\instmsia.exe
  • c:\drivers\bt\6208500\Win32\instmsia.exe
  • c:\drivers\bt\6208500\Win64\instmsia.exe
  • c:\drivers\bt\bc5104500\Win32\instmsia.exe
  • c:\drivers\bt\bc5104500\Win64\instmsia.exe
  • c:\drivers\bt\bc6202600\Win32\instmsia.exe
  • c:\drivers\bt\bc6202600\Win64\instmsia.exe
  • c:\drivers\bt\bc6208800\Win32\instmsia.exe
  • c:\drivers\bt\bc6208800\Win64\instmsia.exe
  • c:\drivers\bt\bc6209600\Win32\instmsia.exe
  • c:\drivers\bt\bc6209600\Win64\instmsia.exe
  • c:\drivers\bt\bc6209700\Win32\instmsia.exe
  • c:\drivers\bt\bc6209700\Win64\instmsia.exe
  • c:\drivers\bt\bt520500\Win32\instmsia.exe
  • c:\drivers\bt\bt520500\Win64\instmsia.exe
  • c:\drivers\bt\Win32\instmsia.exe
  • c:\drivers\bt\Win64\instmsia.exe
  • c:\drivers\Card Reader Driver\instmsia.exe
  • c:\drivers\cardreader\instmsia.exe
  • c:\Drivers\Others\Bluetooth\Win32\instmsia.exe
  • c:\Drivers\Others\Bluetooth\Win64\instmsia.exe
  • C:\DRIVERS\WIN\MULTICARD\instmsia.exe
  • c:\pnp\bluetooth\instmsia.exe
  • c:\pnp\GOB\instmsia.exe
  • c:\pnp\mobo\Chipset\INSTMSIA.EXE
  • c:\pnp\mobo\INSTMSIA.EXE
  • c:\pnp\raid\INSTMSIA.EXE
  • c:\pnp\video\instmsia.exe
  • C:\SWTOOLS\BLUETOOTH\7ZBV19WW\Win32\instmsia.exe
  • C:\SWTOOLS\BLUETOOTH\7ZBV19WW\Win64\instmsia.exe
  • C:\SWTOOLS\DRIVERS\BLUETOOTH\8m05bb36g04\Win32\instmsia.exe
  • C:\SWTOOLS\DRIVERS\BLUETOOTH\8m05bb36g04\Win64\instmsia.exe
  • C:\SWTOOLS\DRIVERS\LMBC\6jwa11ww\ATTplgin\instmsia.exe
  • C:\SWTOOLS\DRIVERS\LMBC\7twa71ww\ATTplgin\instmsia.exe

instmsiw.exe

  • %Program Files%\Droppix\Droppix Recorder 2.x\Droppix Recorder\InstMsiW.Exe
  • %Program Files%\Firmware Update\All_Package\instmsiw.exe
  • c:\drivers\11. TV Tuner (Geniatech,Yuan,AverMedia) for 32-bit Windows\Yuan\MC163\Win832\instmsiw.exe
  • c:\drivers\11. TV Tuner (Geniatech,Yuan,AverMedia) for 32-bit Windows\Yuan\MC907\Win832\instmsiw.exe
  • c:\drivers\15. TV Tuner (Geniatech, Yuan, AverMedia)\Yuan\1.0.6.8051\Win832\instmsiw.exe
  • c:\drivers\15. TV Tuner (Geniatech, Yuan, AverMedia)\Yuan\1.0.6.8051\Win864\instmsiw.exe
  • C:\Drivers\7. Alcor CardReader Driver\instmsiw.exe
  • c:\drivers\Alcor Card Reader Driver\instmsiw.exe
  • c:\drivers\bluetooth\bc621500\Win32\instmsiw.exe
  • c:\drivers\bluetooth\bc621500\Win64\instmsiw.exe
  • c:\drivers\bluetooth\w6104600\Win32\instmsiw.exe
  • c:\drivers\bluetooth\w6104600\Win64\instmsiw.exe
  • c:\Drivers\Bluetooth\Win32\instmsiw.exe
  • c:\Drivers\Bluetooth\Win64\instmsiw.exe
  • c:\drivers\bt\6015600\Win32\instmsiw.exe
  • c:\drivers\bt\6015600\Win64\instmsiw.exe
  • c:\drivers\bt\6208500\Win32\instmsiw.exe
  • c:\drivers\bt\6208500\Win64\instmsiw.exe
  • c:\drivers\bt\bc5104500\Win32\instmsiw.exe
  • c:\drivers\bt\bc5104500\Win64\instmsiw.exe
  • c:\drivers\bt\bc6202600\Win32\instmsiw.exe
  • c:\drivers\bt\bc6202600\Win64\instmsiw.exe
  • c:\drivers\bt\bc6208800\Win32\instmsiw.exe
  • c:\drivers\bt\bc6208800\Win64\instmsiw.exe
  • c:\drivers\bt\bc6209600\Win32\instmsiw.exe
  • c:\drivers\bt\bc6209600\Win64\instmsiw.exe
  • c:\drivers\bt\bc6209700\Win32\instmsiw.exe
  • c:\drivers\bt\bc6209700\Win64\instmsiw.exe
  • c:\drivers\bt\bt520500\Win32\instmsiw.exe
  • c:\drivers\bt\bt520500\Win64\instmsiw.exe
  • c:\drivers\bt\Win32\instmsiw.exe
  • c:\drivers\bt\Win64\instmsiw.exe
  • c:\drivers\Card Reader Driver\instmsiw.exe
  • c:\drivers\cardreader\instmsiw.exe
  • c:\Drivers\Others\Bluetooth\Win32\instmsiw.exe
  • c:\Drivers\Others\Bluetooth\Win64\instmsiw.exe
  • c:\drivers\TV Tuner (Geniatech, Yuan, AverMedia)\Yuan\MC163\Win832\instmsiw.exe
  • c:\drivers\TV Tuner (Geniatech, Yuan, AverMedia)\Yuan\MC907\Win832\instmsiw.exe
  • C:\DRIVERS\WIN\LANASIX\instmsiw.exe
  • C:\DRIVERS\WIN\MULTICARD\instmsiw.exe
  • c:\pnp\bluetooth\instmsiw.exe
  • c:\pnp\Cardreader\instmsiw.exe
  • c:\pnp\GOB\instmsiw.exe
  • c:\pnp\mobo\Chipset\INSTMSIW.EXE
  • c:\pnp\mobo\INSTMSIW.EXE
  • c:\pnp\raid\INSTMSIW.EXE
  • c:\pnp\video\instmsiw.exe
  • C:\SWTOOLS\BLUETOOTH\7ZBV19WW\Win32\instmsiw.exe
  • C:\SWTOOLS\BLUETOOTH\7ZBV19WW\Win64\instmsiw.exe
  • C:\SWTOOLS\DRIVERS\BLUETOOTH\8m05bb36g04\Win32\instmsiw.exe
  • C:\SWTOOLS\DRIVERS\BLUETOOTH\8m05bb36g04\Win64\instmsiw.exe
  • C:\SWTOOLS\DRIVERS\FPR\LZ4GO2A2_64\instmsiw.exe
  • C:\SWTOOLS\DRIVERS\LMBC\6jwa11ww\ATTplgin\instmsiw.exe
  • C:\SWTOOLS\DRIVERS\LMBC\7twa71ww\ATTplgin\instmsiw.exe

regsvr32

  • %Program Files%\3D Active Button Magic\REGSVR32.EXE
  • %Program Files%\3D Button API\REGSVR32.EXE
  • %Program Files%\Active DJ Studio\REGSVR32.EXE
  • %Program Files%\Active MIDI DJ Console\REGSVR32.EXE
  • %Program Files%\Active Sound Editor\REGSVR32.EXE
  • %Program Files%\Active Sound Recorder\REGSVR32.EXE
  • %Program Files%\Active Sound Studio\Active Sound Editor\REGSVR32.EXE
  • %Program Files%\Active Sound Studio\Active Sound Recorder\REGSVR32.EXE
  • %Program Files%\Active Waveform Analyzer\REGSVR32.EXE
  • %Program Files%\Blue Squirrel\Spam Sleuth Lite\regsvr32.exe
  • %Program Files%\Firmware Update\All_Package\program files\HP\Button Manager\Hestia\regsvr32.exe
  • %Program Files%\Firmware Update\All_Package\program files\HP\Button Manager\regsvr32.exe
  • %Program Files%\VoIP SIP Client SDK\files_for_redistribution\ActiveX\regsvr32.exe

ffmpeg

Not a hacking utility, but may come handy:

  • %Program Files%\AnvSoft\Any Video Converter Professional\gnu\ffmpeg.exe
  • %Program Files%\AnvSoft\Any Video Converter\ffmpeg.exe
  • %Program Files%\AnvSoft\Any Video Converter\gnu\ffmpeg.exe
  • %Program Files%\Any Video Recorder\ffmpeg.exe
  • %Program Files%\Aura4You\Aura Video Converter Professional\gnu\ffmpeg.exe
  • %Program Files%\BlazeVideo\BlazeDVD 6.1\ffmpeg.exe
  • %Program Files%\ClipGrab\ffmpeg.exe
  • %Program Files%\CodedColor\ffmpeg.exe
  • %Program Files%\Convertilla\ffmpeg.exe
  • %Program Files%\Diashow XL\LibAV\ffmpeg.exe
  • %Program Files%\DVD Photo Slideshow Professional\gnu\ffmpeg.exe
  • %Program Files%\DVD Shrink\ffmpeg.exe
  • %Program Files%\DVD to iPad Converter\ffmpeg.exe
  • %Program Files%\DVDVideoSoft\Free Audio Editor\ffmpeg.exe
  • %Program Files%\DVDVideoSoft\Free YouTube Download\ffmpeg.exe
  • %Program Files%\DVDVideoSoft\Free YouTube To MP3 Converter\ffmpeg.exe
  • %Program Files%\FotoArchiv XL\LibAV\ffmpeg.exe
  • %Program Files%\Freemake\COM\1.1\ffmpeg.exe
  • %Program Files%\Icecream Slideshow Maker\ffmpeg.exe
  • %Program Files%\Kastor Free Video Converter\ffmpeg.exe
  • %Program Files%\KooRaRoo Media Free\ffmpeg.exe
  • %Program Files%\MediaHuman\Audio Converter\ffmpeg.exe
  • %Program Files%\Nuclear Coffee\ConvertVid\ffmpeg.exe
  • %Program Files%\Nuclear Coffee\VideoGet\ffmpeg.exe
  • %Program Files%\pazera-software\FLV_to_AVI_Converter\tools\FFmpeg\ffmpeg.exe
  • %Program Files%\pazera-software\MKV_to_AVI_Converter_32\tools\FFmpeg\ffmpeg.exe
  • %Program Files%\pazera-software\MOV_to_AVI_Converter\tools\FFmpeg\ffmpeg.exe
  • %Program Files%\pazera-software\MP4_to_AVI_Converter\tools\FFmpeg\ffmpeg.exe
  • %Program Files%\pazera-software\MP4_to_MP3_32bit\tools\FFmpeg\ffmpeg.exe
  • %Program Files%\RadioBOSS\Plugins\ffmpeg.exe
  • %Program Files%\Slideshow XL\LibAV\ffmpeg.exe
  • %Program Files%\SmartDVDCreatorPro\ffmpeg.exe
  • %Program Files%\SmartDVDCreator\ffmpeg.exe
  • %Program Files%\Socusoft\Socusoft 3GP Photo Slideshow\gnu\ffmpeg.exe
  • %Program Files%\Socusoft\Socusoft iPod Photo Slideshow\gnu\ffmpeg.exe
  • %Program Files%\Sothink HD Movie Maker\Encoder\ffmpeg.exe
  • %Program Files%\Sothink Movie DVD Maker\Encoder\ffmpeg.exe
  • %Program Files%\Sothink Video Converter\Encoder\ffmpeg.exe
  • %Program Files%\Sothink Video Encoder for Adobe Flash\Encoder\ffmpeg.exe
  • %Program Files%\SourceTec\Sothink Movie DVD Maker\Encoder\ffmpeg.exe
  • %Program Files%\Stellar Phoenix Video Repair\ffmpeg.exe
  • %Program Files%\YouTube Song Downloader\ffmpeg.exe

and there is more VNC as well:

vncviewer

  • %Program Files%\CrossLoop\vncviewer.exe
  • %Program Files%\Hammer Software\MetaLAN Administrator 2\VNC\TightVNC3\vncviewer.exe
  • %Program Files%\RealVNC\VNC4\vncviewer.exe
  • %localappdata%\CrossLoop\vncviewer.exe

winscp

  • %Program Files%\Lauyan\TOWeb V6\tools\winscp\WinSCP.exe

downloader (note, all of these may require additional analysis):

  • %Program Files%\Auslogics\Driver Updater\Downloader.exe
  • %Program Files%\BSC Designer\update\Downloader.exe
  • %Program Files%\Defender Pro Driver Control\Downloader.exe
  • %Program Files%\Download Master\downloader.exe
  • %Program Files%\Fake Voice 7.0\7.0.0.0\downloader.exe
  • %Program Files%\Fake Webcam 7.4\7.4.0.0\downloader.exe
  • %Program Files%\IDA\downloader.exe
  • %Program Files%\MurGeeMon\Downloader.exe
  • %Program Files%\Virtual Webcam 8.0\8.0.0.0\downloader.exe
  • %Program Files%\Webcam Screen Recorder 7.0\7.0.0.0\downloader.exe
  • %localappdata%\downloader.exe
  • %localappdata%\Temp\hstemp\downloader.exe

javaw

  • %Program Files%\CamShot\jre\bin\javaw.exe
  • %Program Files%\ChequePrinting.net\jre\bin\javaw.exe
  • %Program Files%\ChequeSystem\jre\bin\javaw.exe
  • %Program Files%\EasyBilling\jre\bin\javaw.exe
  • %Program Files%\EditRocket\jre\bin\javaw.exe
  • %Program Files%\Formatic\jre\bin\javaw.exe
  • %Program Files%\OMS\OPhone Desktop Suite\jre\bin\javaw.exe
  • %Program Files%\Ovis\jre7\bin\javaw.exe
  • %Program Files%\PhotoPDF\jre\bin\javaw.exe
  • %Program Files%\PhotoX\jre\bin\javaw.exe
  • %Program Files%\RoboMail\jre\bin\javaw.exe
  • %Program Files%\SmartCalendar\jre\bin\javaw.exe
  • %Program Files%\Sweet Home 3D\jre6\bin\javaw.exe

java

  • %Program Files%\CamShot\jre\bin\java.exe
  • %Program Files%\ChequePrinting.net\jre\bin\java.exe
  • %Program Files%\ChequeSystem\jre\bin\java.exe
  • %Program Files%\EasyBilling\jre\bin\java.exe
  • %Program Files%\EditRocket\jre\bin\java.exe
  • %Program Files%\Formatic\jre\bin\java.exe
  • %Program Files%\OMS\OPhone Desktop Suite\jre\bin\java.exe
  • %Program Files%\Ovis\jre7\bin\java.exe
  • %Program Files%\PhotoPDF\jre\bin\java.exe
  • %Program Files%\PhotoX\jre\bin\java.exe
  • %Program Files%\RoboMail\jre\bin\java.exe
  • %Program Files%\SmartCalendar\jre\bin\java.exe

tar

  • %commonappdata%\CleanMail\tar.exe
  • %Program Files%\Git\usr\bin\tar.exe
  • %Program Files%\Kingo ROOT\tools\tar.exe
  • c:\Program Files (x86)\Common Files\DVDVideoSoft\bin\tar.exe

undelete

  • %Program Files%\Advanced System Optimizer 3\Undelete.exe
  • %Program Files%\CleanGenius 3\UnDelete.exe
  • %Program Files%\Glary Undelete\undelete.exe
  • %Program Files%\Glary Utilities\undelete.exe
  • %Program Files%\LSoft Technologies\Active\@ UNDELETE\Undelete.exe