mirror of
https://github.com/nettitude/PoshC2
synced 2026-06-08 16:22:47 +00:00
15 lines
394 B
HTML
15 lines
394 B
HTML
<ul class="commands-list">
|
|
{% for cmd in commands%}
|
|
<li onClick="selectAutocomplete('{{cmd}}')"><a href="#">{{cmd}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<script>
|
|
function selectAutocomplete(val) {
|
|
active_implant = $("#active_implant").val();
|
|
$("#implant_command_" + active_implant).val(val);
|
|
$("#command").val(val);
|
|
$("#suggesstion_box_" + active_implant).hide();
|
|
}
|
|
</script>
|