Skip to content

Commit 4143714

Browse files
committed
more info and update readme in release
1 parent 9c7317c commit 4143714

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

MSploit/bin/Release/net6.0/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>

readme.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,9 @@ Exploitation tool
1818
## Requirements
1919
* Nmap
2020
* Python
21-
* dotnet 6
21+
* dotnet 6
22+
23+
## Default credentials
24+
username: user
25+
26+
password: lkJSV@OiHF#OLJ@$#HJBCDVop

0 commit comments

Comments
 (0)