Rakound-NG
latest

Installation & Configuration

  • Installation
  • Configuration
  • Get started

Usage

  • All modules
  • Module: db
  • Module: config
  • Module: admin
  • Module: user
  • Module: computer
  • Module: password
  • Module: import
  • Module: search
    • search password
      • is
      • like
      • lm
      • user_as_pass
      • empty
    • search user
      • is
      • like
    • search computer
      • is
      • like
    • search description
      • is
      • like
      • not_empty
  • Module: stats
Rakound-NG
  • Module: search
  • Edit on GitHub

Module: search

This module is used to search information in the neo4j database.

General usage:

🦝 > search <submodule> <filter> <term>

Warning

The provided search term must be a single word. You can’t use this module to search for a complete sentence containing spaces.

Results can be exported to a csv file using the keyword β€œexport” at the end of the command:

🦝 > search <submodule> <filter> <term> export

A csv file will be generated in β€œexports” directory.

search password

This module operates search on passwords.

General usage:

🦝 > search password <filter> [term]

To filter by enabled users, β€œ=enabled” must be used:

🦝 > search password=enabled <filter> [term]

is

This directive finds passwords corresponding to the searched term. It is case sensitive.

🦝 > search password is P@ssw0rd

like

This directive finds passwords containing the searched term. It is not case sensitive.

🦝 > search password like QwErTy

lm

This directive finds passwords using LM storage.

🦝 > search password lm

user_as_pass

This directive finds passwords equal to username. It is not case sensitive.

🦝 > search password user_as_pass

empty

This directive finds empty passwords.

🦝 > search password empty

Note

We recommend to use this directive with β€œpassword=enabled” to see only enabled users with empty password.

search user

This module operates search on users.

General usage:

🦝 > search user <filter> [term]

To filter by enabled users, β€œ=enabled” must be used:

🦝 > search user=enabled <filter> [term]

is

This directive finds users corresponding to the searched term. It is case sensitive.

🦝 > search user is user1

like

This directive finds users containing the searched term. It is not case sensitive.

🦝 > search user like adm

search computer

This module operates search on computers.

General usage:

🦝 > search computer <filter> <term>

is

This directive finds computers corresponding to the searched term. It is case sensitive.

🦝 > search computer is SRV01

like

This directive finds computers containing the searched term. It is not case sensitive.

🦝 > search computer like SRV

search description

This module operates search on description field.

General usage:

🦝 > search description <filter> [term]

is

This directive finds descriptions corresponding to the searched term. It is case sensitive.

🦝 > search description is testsecret

like

This directive finds descriptions containing the searched term. It is not case sensitive.

🦝 > search description like pass

not_empty

This directive finds all not empty descriptions.

🦝 > search description not_empty
Previous Next

© Copyright 2023, Tamhackti. Revision 8fbcc55d.

Built with Sphinx using a theme provided by Read the Docs.