Skip to content

Commit a342b99

Browse files
authored
syntax fixes (kevoreilly#2892)
1 parent 51c7a2f commit a342b99

1 file changed

Lines changed: 20 additions & 20 deletions

File tree

web/templates/submission/index.html

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ <h5 class="mb-0 text-white"><i class="fas fa-cogs me-2 text-primary"></i>Advance
290290
<div id="optionwindowshelp" class="collapse mt-2">
291291
<div class="card card-body bg-dark p-2 border-secondary">
292292
<div class="mb-3">
293-
<input type="text" class="form-control bg-dark text-white border-secondary" id="optionsSearch" placeholder="Search options..." onkeyup="filterOptions()">
293+
<input type="text" class="form-control bg-dark text-white border-secondary" id="optionsSearch" placeholder="Search options..." onkeyup="filterOptions()" />
294294
<small class="text-white-50">Syntax: option1=val1,option2=val2</small>
295295
</div>
296296
<ul class="nav nav-tabs border-secondary mb-3" id="optionsHelpTabs" role="tablist">
@@ -524,15 +524,15 @@ <h5 class="mb-0 text-white"><i class="fas fa-cogs me-2 text-primary"></i>Advance
524524
<div class="mb-3 mt-3">
525525
<label class="text-white-50">Pre-Execution Script</label>
526526
<input type="file" class="form-control border-secondary"
527-
id="preScript" name="pre_script">
527+
id="preScript" name="pre_script" />
528528
</div>
529529
{% endif %}
530530

531531
{% if config.during_script %}
532532
<div class="mb-3">
533533
<label class="text-white-50">During-Execution Script</label>
534534
<input type="file" class="form-control border-secondary"
535-
id="duringScript" name="during_script">
535+
id="duringScript" name="during_script" />
536536
</div>
537537
{% endif %}
538538
<div class="mb-3">
@@ -552,54 +552,54 @@ <h5 class="mb-0 text-white"><i class="fas fa-cogs me-2 text-primary"></i>Advance
552552
<div class="col-md-6">
553553
<div class="form-check mb-2">
554554
<input type="checkbox" class="form-check-input" id="process_dump"
555-
name="process_dump">
555+
name="process_dump" />
556556
<label class="form-check-label" for="process_dump">Disable process
557557
dumps</label>
558558
</div>
559559
{% if config.procmemory %}
560560
<div class="form-check mb-2">
561561
<input type="checkbox" class="form-check-input" id="process_memory"
562-
name="process_memory">
562+
name="process_memory" />
563563
<label class="form-check-label" for="process_memory">Full process
564564
memory dumps</label>
565565
</div>
566566
{% endif %}
567567
{% if config.amsidump %}
568568
<div class="form-check mb-2">
569569
<input type="checkbox" class="form-check-input" id="amsidump"
570-
name="amsidump">
570+
name="amsidump" />
571571
<label class="form-check-label" for="amsidump">AMSI dumps <small
572572
class="text-white-50">(Win10+)</small></label>
573573
</div>
574574
{% endif %}
575575
<div class="form-check mb-2">
576576
<input type="checkbox" class="form-check-input"
577-
id="import_reconstruction" name="import_reconstruction">
577+
id="import_reconstruction" name="import_reconstruction" />
578578
<label class="form-check-label" for="import_reconstruction">Import
579579
reconstruction</label>
580580
</div>
581581
{% if config.memory %}
582582
<div class="form-check mb-2">
583583
<input type="checkbox" class="form-check-input" id="memory"
584-
name="memory">
584+
name="memory" />
585585
<label class="form-check-label" for="memory">Full Memory Dump <small
586586
class="text-white-50">(Volatility)</small></label>
587587
</div>
588588
{% endif %}
589589
<div class="form-check mb-2">
590590
<input type="checkbox" class="form-check-input" id="enforce_timeout"
591-
name="enforce_timeout">
591+
name="enforce_timeout" />
592592
<label class="form-check-label" for="enforce_timeout">Enforce
593593
Timeout</label>
594594
</div>
595595
<div class="form-check mb-2">
596596
<input type="checkbox" class="form-check-input" id="free"
597-
name="free">
597+
name="free" />
598598
<label class="form-check-label" for="free">No monitoring</label>
599599
</div>
600600
<div class="form-check mb-2">
601601
<input type="checkbox" class="form-check-input" id="unpacker"
602-
name="unpacker">
602+
name="unpacker" />
603603
<label class="form-check-label" for="unpacker">Active
604604
Unpacking</label>
605605
</div>
@@ -608,58 +608,58 @@ <h5 class="mb-0 text-white"><i class="fas fa-cogs me-2 text-primary"></i>Advance
608608
<div class="col-md-6">
609609
<div class="form-check mb-2">
610610
<input type="checkbox" class="form-check-input" id="syscall"
611-
name="syscall" checked>
611+
name="syscall" checked />
612612
<label class="form-check-label" for="syscall">Syscall hooks <small
613613
class="text-white-50">(Win10+)</small></label>
614614
</div>
615615
<div class="form-check mb-2">
616616
<input type="checkbox" class="form-check-input" id="norefer"
617-
name="norefer">
617+
name="norefer" />
618618
<label class="form-check-label" for="norefer">No Fake
619619
Referrer</label>
620620
</div>
621621
<div class="form-check mb-2">
622622
<input type="checkbox" class="form-check-input" id="nohuman"
623-
name="nohuman">
623+
name="nohuman" />
624624
<label class="form-check-label" for="nohuman">Disable
625625
interaction</label>
626626
</div>
627627
{% if config.interactive_desktop %}
628628
<div class="form-check mb-2">
629629
<input type="checkbox" class="form-check-input" id="interactive"
630-
name="interactive">
630+
name="interactive" />
631631
<label class="form-check-label" for="interactive">Interactive
632632
Desktop</label>
633633
</div>
634634
<div class="form-check mb-2">
635635
<input type="checkbox" class="form-check-input" id="manual"
636-
name="manual" disabled>
636+
name="manual" disabled />
637637
<label class="form-check-label" for="manual">Manual
638638
Detonation</label>
639639
</div>
640640
{% endif %}
641641
{% if config.kernel %}
642642
<div class="form-check mb-2">
643643
<input type="checkbox" class="form-check-input" id="kernel_analysis"
644-
name="kernel_analysis">
644+
name="kernel_analysis" />
645645
<label class="form-check-label" for="kernel_analysis">Kernel
646646
Analysis (zer0m0n)</label>
647647
</div>
648648
{% endif %}
649649
<div class="form-check mb-2">
650650
<input type="checkbox" class="form-check-input" id="static_config"
651-
name="static">
651+
name="static" />
652652
<label class="form-check-label" for="static_config">Try to extract config without VM <small class="text-white-50">(Submit to VM if not extracted)</small></label>
653653
</div>
654654
<div class="form-check mb-2">
655655
<input type="checkbox" class="form-check-input" id="oldloader"
656-
name="oldloader">
656+
name="oldloader" />
657657
<label class="form-check-label" for="oldloader">Thread-based
658658
monitor</label>
659659
</div>
660660
<div class="form-check mb-2">
661661
<input type="checkbox" class="form-check-input" id="screenshots_qr"
662-
name="screenshots_qr">
662+
name="screenshots_qr" />
663663
<label class="form-check-label" for="screenshots_qr">QR URL extraction <small class="text-white-50">(Extract and open URLs from QR codes in screenshots)</small></label>
664664
</div>
665665
</div>

0 commit comments

Comments
 (0)