Nenhuma Descrição

modal_add_module.html 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <div class="modal-header">
  2. <h4>Add Module</h4>
  3. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
  4. aria-hidden="true">&times;</span></button>
  5. </div>
  6. <div class="modal-body">
  7. <div class="container col-md-12">
  8. <form method="post" action="" id="form_new_module">
  9. <div class="col-md-12 col-lg-12 col-sm-12">
  10. {{ form.hidden_tag() }}
  11. <div class="form-group">
  12. <h3>Module extensions</h3>
  13. <p>Iris can be extended with compatible modules. Modules are pip packages providing a specific interface which allows
  14. Iris and the module to communicate. Enter below a pip package name already installed.</p>
  15. <p>Ex: iris_evtx</p>
  16. <i class="">Tips: you can develop your own module by following <a target=”_blank” href="https://docs.dfir-iris.org/development/modules/" >this link</a></i>
  17. <div class="mt-4">
  18. <strong class="text-danger">Note :</strong> Modules are running as the same trust level as Iris. They can thus access all the information
  19. stored on Iris as well as run code on the server. Please be cautious and review modules before installing them.
  20. </div>
  21. <label for="module_name" class="mr-4 mt-3">Module name</label>
  22. {{ form.module_name(class='form-control', autocomplete="off") }}
  23. <div class="alert-std alert-warning" style="display:none;" role="alert" id="alert_mod_add">
  24. </div>
  25. <div class="alert-std alert-warning" style="display:none;" role="alert" id="alert_mod_details">
  26. <b>Logs</b>
  27. <ul id="details_list">
  28. </ul>
  29. </div>
  30. </div>
  31. <button type="button" class="btn btn-outline-success ml-4 mt-5 float-right"
  32. id="submit_new_module">Validate module</button>
  33. </form>
  34. </div>
  35. </div>