# netexec (nxcdb)
Netexec database helps manage creds and other info you gather in your pentest travels

## Running it
```
nxcdb
```

## Switch to a workspace (`default` by default)
```
workspace default
```

## List stored credentials
```
nxcdb (default) > proto smb
nxcdb (default)(smb) > creds

# You'll see something like this:
#+Credentials---------+-----------+---------------------+---------------+-------------------------------+
#| CredID | Admin On  | CredType  | Domain              | UserName      | Password                      |
#+--------+-----------+-----------+---------------------+---------------+-------------------------------+
#| 1      | 0 Host(s) | plaintext | domain.com         | brian.johnson | rules                         |
#+--------+-----------+-----------+---------------------+---------------+-------------------------------+
```

### Use stored cred
```
nxc smb somedomain.com -id 1
```
