forked from ArsenalRecon/Arsenal-Image-Mounter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory_structure.txt
136 lines (89 loc) · 4.4 KB
/
Directory_structure.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
Description of directory structure for Arsenal Image Mounter repository.
libewf.dll and zlib.dll binaries (to facilitate EnCase/EWF image mounting) are
included under their respective licenses - see lgpl-3.0.txt and
zlib license.txt.
----------------------
Graphical applications
----------------------
This directory contains ArsenalImageMounter.exe.
One-piece (with the exception of libewf.dll) powerful tool for mounting
disk image files as virtual drives. Supports raw disk images and various
virtual machine image formats through integrated DiscUtils library. Also
supports certain forensics image formats if libewf.dll is also installed.
Automatically installs necessary driver components if not already installed.
ArsenalImageMounter.exe requires .NET Framework 4.x, which is included by
default in Windows 8 or later. Can be installed separately on Windows XP,
Vista or 7.
Tested on Windows 7, 8.1 and 10, but should also work on Windows XP or Vista.
-------------------------
Command line applications
-------------------------
aim_cli.exe:
Command line tool for mounting various disk image formats as virtual drives in
a way similar to the graphical ArsenalImageMounter.exe.
Does not include driver setup files. Driver could be set up separately using
either command line tool aim_ll.exe or graphical ArsenalImageMounter.exe, or
the separate packages in the DriverSetup directory.
aim_cli.exe requires .NET Framework 4.x, which is included by
default in Windows 8 or later. Can be installed separately on Windows XP,
Vista or 7.
Tested on Windows 7, 8.1 and 10, but should also work on Windows XP or Vista.
aim_ll.zip:
Command line tools that provide access to most features of virtual SCSI
miniport driver that is used with Arsenal Image Mounter. Command line syntax
is very similar to that of ImDisk Virtual Disk Driver, so most commands and
scripting work in a similar way. There are also command line switches for
installing or uninstalling the virtual SCSI miniport driver.
None of the files in this zip archive require any .NET Framework components.
Tested on Windows 7, 8.1 and 10, but should also work on any Windows version
from Windows 2000 and up.
-----------
DriverSetup
-----------
Setup tools and signed driver packages that can be used to install the driver
components alone.
ArsenalImageMounterGUISetup.exe:
One-piece simple driver setup GUI application that includes everything to
automatically install the correct driver for current version of Windows.
ArsenalImageMounterCLISetup.exe:
Command line version of ArsenalImageMounterGUISetup.exe, with same
functionality and requirements.
Both ArsenalImageMounterGUISetup.exe and ArsenalImageMounterCLISetup.exe
require .NET Framework 4.x or later, which is included by default in Windows
8 or later. Can be installed separately on Windows XP, Vista or 7.
DriverSetup.7z:
Both driver setup files and command line tool aim_ll.exe as a 7-zip archive.
Useful for automated driver setup, for example for use from a script.
Application files in this archive do not require any .NET components.
DriverSetup.zip:
Driver setup files only (sys, cat and inf files). For use when integrating
driver setup with, for example, other driver setup packages.
---
API
---
Arsenal.ImageMounter.zip:
DLL files that can be referenced from .NET applications to use the public API.
API reference is available online:
http://ltr-data.se/library/ArsenalImageMounter
Requires .NET Framework 4.x or later, which is included by default in Windows
8 or later. Can be installed separately on Windows XP, Vista or 7.
aimapi.zip:
DLL files that can be used form other applications to use most features of
virtual SCSI miniport driver. Files in this archive do not require any .NET
Framework components and should work on any Windows version from 2000 and up.
There are .lib and .h files included which can be imported into C/C++ projects
to use the API.
--------------
Managed Source
--------------
Visual Studio 2010-2015 solution with source projects for .NET API libraries,
command line tools and some proof-on-concept graphical applications.
----------------
Unmanaged Source
----------------
Visual Studio 2013-2015 solution with source projects for native (non-.NET)
driver, API library and command line tool. Driver project requires WDK 8.1 or
later.
The driver project directory also contains files for building with WDK 7
build.exe environment, to support targeting older Windows versions than
Windows 7.