Skip to content

Commit 6459444

Browse files
committed
it's another release
1 parent c83f5c6 commit 6459444

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

MSploit/WebPage/index.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,14 @@ <h5 class="modal-title">Shell</h5>
287287
<input style="width: 90%;display: inline-block;margin-top: 15px" type="text" class="form-control bg-dark text-white" name="" id="commandHolder" placeholder="">
288288
</div>
289289
<button type="button" class="btn btn-primary" style="position: absolute;right: 15px;bottom: 15px" onclick="$.get('/server/clients/'+clientId+'/run/'+document.getElementById('commandHolder').value); document.getElementById('commandHolder').value = ''">Run command</button>
290+
<script>
291+
$("#commandHolder").keydown(function(event) {
292+
if (event.which === 13) {
293+
$.get('/server/clients/'+clientId+'/run/'+document.getElementById('commandHolder').value)
294+
document.getElementById('commandHolder').value = ''
295+
}
296+
});
297+
</script>
290298
</div>
291299

292300
</div>
-139 KB
Binary file not shown.

MSploit/obj/staticwebassets.pack.sentinel

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,3 +152,5 @@
152152
2.0
153153
2.0
154154
2.0
155+
2.0
156+
2.0

0 commit comments

Comments
 (0)