forked from kevthehermit/VolUtility
-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
fe905ab
commit 487d2de
Showing
4 changed files
with
98 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
{% load template_dict %} | ||
<div class="modal fade" id="yaraModal" tabindex="-1" role="dialog" aria-labelledby="yaraModal" aria-hidden="true"> | ||
<div class="modal-dialog"> | ||
<div class="modal-content"> | ||
|
||
|
||
<div class="modal-header"> | ||
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button> | ||
<h4 class="modal-title">Add Session</h4> | ||
</div> | ||
|
||
<div class="modal-body"> | ||
|
||
|
||
<ul class="nav nav-pills"> | ||
<li class="active"><a data-toggle="pill" href="#yarastrings">Manual Rule</a></li> | ||
<li><a data-toggle="pill" href="#rulefile">Rule File</a></li> | ||
</ul> | ||
|
||
<div class="tab-content"> | ||
<div id="yarastrings" class="tab-pane fade in active"> | ||
<h4>Yara Strings</h4> | ||
<form class="form"> | ||
<div class="form-group"> | ||
<input type="text" class="form-control" id="yara-string" placeholder="Search String"> | ||
</div> | ||
<div class="form-group"> | ||
<input type="text" class="form-control" id="yara-hex" placeholder="Size of hexdump preview (256b)"> | ||
</div> | ||
<div class="form-group"> | ||
<input type="text" class="form-control" id="yara-reverse" placeholder="Reverse this many bytes"> | ||
</div> | ||
|
||
<div class="checkbox"> | ||
<label> | ||
<input type="checkbox" id="yara-case"> Case Insensative | ||
</label> | ||
</div> | ||
|
||
<div class="checkbox"> | ||
<label> | ||
<input type="checkbox" id="yara-kernal"> Scan Kernel Modules | ||
</label> | ||
</div> | ||
|
||
<div class="checkbox"> | ||
<label> | ||
<input type="checkbox" id="yara-wide"> Match Unicode Strings (Wide) | ||
</label> | ||
</div> | ||
|
||
|
||
|
||
<a href="#" onclick="ajaxHandler('memhex', {'session_id':'{{session_details|get:"_id"}}', 'target_div':'hex-out'}, false )" class="btn" role="button btn-info">Scan for Strings</a> | ||
</form> | ||
</div> | ||
|
||
|
||
<div id="rulefile" class="tab-pane fade"> | ||
<h4>VirusTotal</h4> | ||
</div> | ||
</div> | ||
|
||
|
||
<div id="yara-out"></div> | ||
|
||
|
||
</div> | ||
|
||
<div class="modal-footer"> | ||
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button> | ||
</div> | ||
</div> | ||
</div> | ||
</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