Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add Find Clusters of Password Reuse custom query
  • Loading branch information
porterhau5 committed Mar 30, 2017
1 parent 47a5965 commit 1dca29c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions customqueries.json
Expand Up @@ -21,7 +21,7 @@
}
},
{
"name": "Show wave",
"name": "Show Wave",
"requireNodeSelect": true,
"nodeSelectQuery": {
"query":"MATCH (n) WHERE exists(n.wave) WITH DISTINCT n.wave as d RETURN toString(d) ORDER BY d",
Expand All @@ -34,7 +34,7 @@
}
},
{
"name": "Show delta for wave",
"name": "Show Delta for Wave",
"requireNodeSelect": true,
"nodeSelectQuery": {
"query":"MATCH (n) WHERE exists(n.wave) WITH DISTINCT n.wave as d RETURN toString(d) ORDER BY d",
Expand All @@ -45,6 +45,13 @@
"allowCollapse": true,
"boxTitle": "Select wave to show deltas..."
}
},
{
"name": "Find Clusters of Password Reuse",
"requireNodeSelect": false,
"query": "MATCH p=(n)-[r:SharesPasswordWith]-(m) RETURN p",
"allowCollapse": true,
"props": {}
}
]
}

0 comments on commit 1dca29c

Please sign in to comment.