Skip to content

Commit 1dca29c

Browse files
committed
add Find Clusters of Password Reuse custom query
1 parent 47a5965 commit 1dca29c

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

Diff for: customqueries.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222
},
2323
{
24-
"name": "Show wave",
24+
"name": "Show Wave",
2525
"requireNodeSelect": true,
2626
"nodeSelectQuery": {
2727
"query":"MATCH (n) WHERE exists(n.wave) WITH DISTINCT n.wave as d RETURN toString(d) ORDER BY d",
@@ -34,7 +34,7 @@
3434
}
3535
},
3636
{
37-
"name": "Show delta for wave",
37+
"name": "Show Delta for Wave",
3838
"requireNodeSelect": true,
3939
"nodeSelectQuery": {
4040
"query":"MATCH (n) WHERE exists(n.wave) WITH DISTINCT n.wave as d RETURN toString(d) ORDER BY d",
@@ -45,6 +45,13 @@
4545
"allowCollapse": true,
4646
"boxTitle": "Select wave to show deltas..."
4747
}
48+
},
49+
{
50+
"name": "Find Clusters of Password Reuse",
51+
"requireNodeSelect": false,
52+
"query": "MATCH p=(n)-[r:SharesPasswordWith]-(m) RETURN p",
53+
"allowCollapse": true,
54+
"props": {}
4855
}
4956
]
5057
}

0 commit comments

Comments
 (0)