File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
MSploit/bin/Release/net6.0/WebPage Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments