There was an error while loading. Please reload this page.
Install the dependencies (possibly using a virtualenv)
Instantiate the client
from credentialdigger.cli import Client c = Client(dbhost='xxx.xxx.xxx.xxx', dbport=NUM, dbname='mydbname', dbuser='myusername', dbpassword='mypassword')
[OPTIONAL] Add the repository
c.add_repo(url='https://github.com/user/repo')
Launch the scan of the wiki pages of a repository
new_discoveries = c.scan_wiki(repo_url=REPO_URL, category=CATEGORY, scanner=SCANNER, models=MODELS, exclude=NO_RULES, verbose=VERBOSE)
Wiki pages are scanned in the same way that repositories are (refer to Scan a repository).
--local