├── Gemfile ├── README.md ├── automato.rb ├── credentials.yaml └── helpers ├── cli.rb ├── connector.rb ├── ldap_querier.rb └── smb_querier.rb /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skahwah/automato/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skahwah/automato/HEAD/README.md -------------------------------------------------------------------------------- /automato.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skahwah/automato/HEAD/automato.rb -------------------------------------------------------------------------------- /credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skahwah/automato/HEAD/credentials.yaml -------------------------------------------------------------------------------- /helpers/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skahwah/automato/HEAD/helpers/cli.rb -------------------------------------------------------------------------------- /helpers/connector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skahwah/automato/HEAD/helpers/connector.rb -------------------------------------------------------------------------------- /helpers/ldap_querier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skahwah/automato/HEAD/helpers/ldap_querier.rb -------------------------------------------------------------------------------- /helpers/smb_querier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skahwah/automato/HEAD/helpers/smb_querier.rb --------------------------------------------------------------------------------