Skip to content

Commit

Permalink
Add name support in ui
Browse files Browse the repository at this point in the history
  • Loading branch information
ajinabraham committed Feb 29, 2024
1 parent f62f1d0 commit f20ee08
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mobsf/templates/dynamic_analysis/ios/dynamic_analysis.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ <h4 class="modal-title">Create a Corellium iOS VM</h4>
</div>
<div class="modal-body">
<form role="form">
<div class="form-group">
<label>Name</label>
<input type="text" value="MobSF iOS" class="form-control" id="vm_name">
</div>
<div class="form-group">
<label>Device</label>
<select class="form-control" id="ios_models"></select>
Expand Down Expand Up @@ -743,6 +747,7 @@ <h4 class="modal-title">Create a Corellium iOS VM</h4>
data : {
csrfmiddlewaretoken: '{{ csrf_token }}',
project_id: '{{ project_id }}',
name: $('#vm_name').val(),
flavor: $('#ios_models').find(':selected').data('flavor'),
version: $('#ios_versions').find(':selected').val(),
},
Expand Down

0 comments on commit f20ee08

Please sign in to comment.