forked from k1nd0ne/VolWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
331 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
investigations/templates/investigations/windows/ma_artifacts/ma_skeleton.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
investigations/templates/investigations/windows/process_artifacts/process_dlllist.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!-- Investigation process_dlllist artifacts --> | ||
<div class="mt-5 DllList plugin text-white"> | ||
<h6 class="h6">dll list</h6> | ||
<div class="d-inline"> | ||
<input class="form-control mb-3" id="searchdll" type="text" placeholder="Search.."> | ||
</div> | ||
<table class="table table-light artifacts card-font dlllist"> | ||
<thead> | ||
<tr> | ||
<th scope="col">Process</th> | ||
<th scope="col">PID</th> | ||
<th scope="col">Base</th> | ||
<th scope="col">Name</th> | ||
<th scope="col">Path</th> | ||
<th scope="col">Size</th> | ||
<th scope="col">LoadTime</th> | ||
<th scope="col">Fileoutput</th> | ||
</tr> | ||
</thead> | ||
<tbody id="dlllist"> | ||
{% for process in DllList %} | ||
<tr> | ||
<td>{{process.Process}}</td> | ||
<td>{{process.PID}}</td> | ||
<td>{{process.Base}}</td> | ||
<td>{{process.Name}}</td> | ||
<td>{{process.Path}}</td> | ||
<td>{{process.Size}}</td> | ||
<td>{{process.LoadTime}}</td> | ||
<td>{{process.Fileoutput}}</td> | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
investigations/templates/investigations/windows/process_artifacts/process_handles.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!-- Investigation process_handles artifacts --> | ||
<div class="mt-5 Handles plugin text-white"> | ||
<h6 class="h6">Process Handles</h6> | ||
<div class="d-inline"> | ||
<input class="form-control mb-3" id="searchHandles" type="text" placeholder="Search.."> | ||
</div> | ||
<table class="table table-light card-font handles artifacts"> | ||
<thead> | ||
<tr> | ||
<th scope="col">Process</th> | ||
<th scope="col">PID</th> | ||
<th scope="col">Offset</th> | ||
<th scope="col">Name</th> | ||
<th scope="col">HandleValue</th> | ||
<th scope="col">GrantedAccess</th> | ||
<th scope="col">Type</th> | ||
</tr> | ||
</thead> | ||
<tbody id="processHandles"> | ||
{% for entry in Handles %} | ||
<tr> | ||
<td>{{entry.Process}}</td> | ||
<td>{{entry.PID}}</td> | ||
<td>{{entry.Offset}}</td> | ||
<td>{{entry.Name}}</td> | ||
<td>{{entry.HandleValue}}</td> | ||
<td>{{entry.GrantedAccess}}</td> | ||
<td>{{entry.Type}}</td> | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
investigations/templates/investigations/windows/reg_artifacts/reg_hivelist.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.