Skip to content

Commit

Permalink
Disable browser spell check in query textareas
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarlslund committed Jan 5, 2024
1 parent 06f46b4 commit baa607a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions modules/analyze/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -331,13 +331,13 @@
</ul>
<div class="tab-content" id="query-tabs-content">
<div class="tab-pane active" id="startquery-pane">
<textarea id="querytext" class="form-control mb-1" name="query" rows=4 data-bs-toggle='tooltip' data-bs-title='Node selector query for the first nodes (targets)'></textarea>
<textarea id="querytext" class="form-control mb-1" name="query" rows=4 spellcheck="false" data-bs-toggle='tooltip' data-bs-title='Node selector query for the first nodes (targets)'></textarea>
</div>
<div class="tab-pane" id="middlequery-pane">
<textarea id="queryexclude" class="form-control mb-1" name="middlequery" rows=4 data-bs-toggle='tooltip' data-bs-title='Node selector query for following nodes in the graph, including the last ones'></textarea>
<textarea id="queryexclude" class="form-control mb-1" name="middlequery" rows=4 spellcheck="false" data-bs-toggle='tooltip' data-bs-title='Node selector query for following nodes in the graph, including the last ones'></textarea>
</div>
<div class="tab-pane" id="endquery-pane">
<textarea id="queryexcludelast" class="form-control mb-1" name="endquery" rows=4 data-bs-toggle='tooltip' data-bs-title='Node selector query for last nodes'></textarea>
<textarea id="queryexcludelast" class="form-control mb-1" name="endquery" rows=4 spellcheck="false" data-bs-toggle='tooltip' data-bs-title='Node selector query for last nodes'></textarea>
</div>
</div>
<div id="queryerror"></div>
Expand Down Expand Up @@ -390,7 +390,7 @@
depth=99 methods="default">Users where password never expire</li>
<li class="dropdown-item"
query="(&(objectClass=Person)(!(pwdLastSet=0))(pwdLastSet:since:<-5Y)(!(userAccountControl:and:=2)))"
mode="Reverse" depth=99 methods="default">Accounts that has a password older than 5 years</li>
mode="Reverse" depth=99 methods="default">Accounts that have a password older than 5 years</li>
<li class="dropdown-item"
query="(&(dataLoader=Active Directory)(objectClass=Person)(pwdLastSet=0)(|(logonCount=0)(!(logonCount=*)))(!(userAccountControl:and:=2)))"
mode="Reverse" depth=99 methods="default">New accounts with initial password</li>
Expand All @@ -401,12 +401,12 @@
<li class="dropdown-item" query="(&(type=Group)(member:count:>100))" mode="Normal"
depth=99 methods="default">Groups that have more than 100 direct members</li>
<li class="dropdown-item"
query="(&(type=Computer)(userAccountControl:1.2.840.113556.1.4.803:=8192))" mode="Normal"
depth=99>Domain Controllers</li>
query="(&(type=Machine)(out=MachineAccount,(&(type=Computer)(userAccountControl:1.2.840.113556.1.4.803:=8192))))" mode="Normal"
depth=99>Domain Controller machines</li>
<li class="dropdown-item" query="(&(type=Computer)(userAccountControl:1.2.840.113556.1.4.803:=524288)(!userAccountControl:1.2.840.113556.1.4.803:=8192))" mode="Normal"
depth=99>Computers with Unconstrained Delegation (non DCs)</li>
<li class="dropdown-item" query="(&(objectCategory=computer)(msds-allowedtodelegateto=*))" mode="Normal" depth=99>
Computers with Constrained Delegation</li>
Computers accounts with Constrained Delegation</li>
<li class="dropdown-item" query="(&(type=Person)(memberOf:count:>10))" mode="Normal" depth=1 methods="default">Users
that are direct members of more than 10 groups</li>
<li class="dropdown-item"
Expand Down

0 comments on commit baa607a

Please sign in to comment.