├── .dockerignore ├── .github ├── dependabot.yml ├── funding.yml └── workflows │ ├── node.js.yml │ └── rolling-release.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── agents.md ├── app ├── css │ ├── cousine.css │ ├── style.css │ └── tables.css ├── data │ ├── .gitkeep │ ├── ai-test-model │ │ └── model.json │ ├── history.json │ └── profiles │ │ └── default │ │ └── history.json ├── fonts │ ├── cousine-bold-italic │ │ ├── cyrillic-ext.woff2 │ │ ├── cyrillic.woff2 │ │ ├── greek-ext.woff2 │ │ ├── greek.woff2 │ │ ├── hebrew.woff2 │ │ ├── latin-ext.woff2 │ │ ├── latin.woff2 │ │ └── vietnamese.woff2 │ ├── cousine-bold │ │ ├── cyrillic-ext.woff2 │ │ ├── cyrillic.woff2 │ │ ├── greek-ext.woff2 │ │ ├── greek.woff2 │ │ ├── hebrew.woff2 │ │ ├── latin-ext.woff2 │ │ ├── latin.woff2 │ │ └── vietnamese.woff2 │ ├── cousine-italic │ │ ├── cyrillic-ext.woff2 │ │ ├── cyrillic.woff2 │ │ ├── greek-ext.woff2 │ │ ├── greek.woff2 │ │ ├── hebrew.woff2 │ │ ├── latin-ext.woff2 │ │ ├── latin.woff2 │ │ └── vietnamese.woff2 │ └── cousine-regular │ │ ├── cyrillic-ext.woff2 │ │ ├── cyrillic.woff2 │ │ ├── greek-ext.woff2 │ │ ├── greek.woff2 │ │ ├── hebrew.woff2 │ │ ├── latin-ext.woff2 │ │ ├── latin.woff2 │ │ └── vietnamese.woff2 ├── html │ ├── startup.js │ └── templates │ │ ├── bulkwhoisEntry.hbs │ │ ├── bulkwhoisExport.hbs │ │ ├── bulkwhoisExportLoading.hbs │ │ ├── bulkwhoisFileInputConfirm.hbs │ │ ├── bulkwhoisFileInputLoading.hbs │ │ ├── bulkwhoisProcessing.hbs │ │ ├── bulkwhoisWordlistConfirm.hbs │ │ ├── bulkwhoisWordlistInput.hbs │ │ ├── bulkwhoisWordlistLoading.hbs │ │ ├── bwaAnalyser.hbs │ │ ├── bwaEntry.hbs │ │ ├── bwaFileInputLoading.hbs │ │ ├── bwaFileinputconfirm.hbs │ │ ├── bwaProcess.hbs │ │ ├── he.hbs │ │ ├── historyEntry.hbs │ │ ├── mainPanel.hbs │ │ ├── modals.hbs │ │ ├── monitorEntry.hbs │ │ ├── navBottom.hbs │ │ ├── navTop.hbs │ │ ├── settingsEntry.hbs │ │ ├── singlewhois.hbs │ │ └── toEntry.hbs ├── icons │ ├── app.icns │ ├── app.ico │ ├── app.png │ ├── icons.ai │ └── icons_sec.ai ├── locales │ ├── en.json │ └── es.json ├── ts │ ├── ai │ │ ├── availabilityModel.ts │ │ ├── modelDownloader.ts │ │ ├── openaiSuggest.ts │ │ └── trainModel.ts │ ├── appsettings.ts │ ├── cli.ts │ ├── cli │ │ ├── export.ts │ │ └── progress.ts │ ├── common │ │ ├── availability.ts │ │ ├── conversions.ts │ │ ├── dnsLookup.ts │ │ ├── errors.ts │ │ ├── fileStats.ts │ │ ├── fontawesome.ts │ │ ├── history.ts │ │ ├── index.ts │ │ ├── ipcChannels.ts │ │ ├── ipcContracts.test.ts │ │ ├── ipcContracts.ts │ │ ├── lineHelper.ts │ │ ├── logger.ts │ │ ├── lookup.ts │ │ ├── parser.ts │ │ ├── proxy.ts │ │ ├── rdapLookup.ts │ │ ├── requestCache.ts │ │ ├── requestCacheSingleton.ts │ │ ├── resetObject.ts │ │ ├── settings-base.ts │ │ ├── settings.ts │ │ ├── status.ts │ │ ├── stringformat.ts │ │ ├── tools.ts │ │ ├── whoiswrapper │ │ │ ├── patternData.ts │ │ │ └── patterns.ts │ │ └── wordlist.ts │ ├── main.ts │ ├── main │ │ ├── ai.ts │ │ ├── bulkwhois.ts │ │ ├── bulkwhois │ │ │ ├── auxiliary.ts │ │ │ ├── export-helpers.ts │ │ │ ├── export.ts │ │ │ ├── fileinput.ts │ │ │ ├── helpers.ts │ │ │ ├── manager.ts │ │ │ ├── process.defaults.ts │ │ │ ├── process.ts │ │ │ ├── queue.ts │ │ │ ├── resultHandler.ts │ │ │ ├── scheduler.ts │ │ │ ├── types.ts │ │ │ ├── wordlistinput.ts │ │ │ ├── workerPool.ts │ │ │ └── workers │ │ │ │ └── domainWorker.ts │ │ ├── bwa.ts │ │ ├── bwa │ │ │ ├── analyser.ts │ │ │ └── fileinput.ts │ │ ├── cache.ts │ │ ├── db.ts │ │ ├── fsIpc.ts │ │ ├── history.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── ipc.ts │ │ ├── monitor.ts │ │ ├── pathIpc.ts │ │ ├── profiles.ts │ │ ├── settings-main.ts │ │ ├── settings.ts │ │ ├── singlewhois.ts │ │ ├── to.ts │ │ ├── utils.ts │ │ └── workers │ │ │ └── statsWorker.ts │ ├── mainPanel.ts │ ├── preload.cts │ ├── renderer.ts │ ├── renderer │ │ ├── bulkwhois.ts │ │ ├── bulkwhois │ │ │ ├── auxiliary.ts │ │ │ ├── estimate.ts │ │ │ ├── event-bindings.ts │ │ │ ├── export.defaults.ts │ │ │ ├── export.ts │ │ │ ├── fileinput.ts │ │ │ ├── process.ts │ │ │ ├── state.ts │ │ │ ├── status-handler.ts │ │ │ └── wordlistinput.ts │ │ ├── bwa.ts │ │ ├── bwa │ │ │ ├── analyser.ts │ │ │ ├── fileinput.ts │ │ │ └── monitor.ts │ │ ├── darkmode.ts │ │ ├── history.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── jqueryGlobal.ts │ │ ├── logger.ts │ │ ├── navigation.ts │ │ ├── registerPartials.ts │ │ ├── settings-renderer.ts │ │ ├── settings.ts │ │ ├── singlewhois.ts │ │ ├── templateLoader.ts │ │ └── to.ts │ ├── server │ │ └── index.ts │ └── utils │ │ ├── dirnameCompat.ts │ │ ├── dom.ts │ │ ├── fetchCompat.ts │ │ ├── fileWatcher.ts │ │ ├── random.ts │ │ └── regex.ts └── vendor │ ├── debug.d.ts │ ├── debug.js │ └── jquery.js ├── babel.config.mjs ├── changelog.md ├── contributing.md ├── coverage-final.json ├── docker ├── Dockerfile └── docker-compose.yml ├── docs ├── ai.md └── ai_training.md ├── eslint.config.js ├── jest.config.cjs ├── license.md ├── package.json ├── postcss.config.js ├── readme.md ├── readmenot.md ├── sample_lists ├── 3letter_alpha.list ├── longhash_hex.list ├── majorweb_alpha.list ├── md5hash_hex.list ├── random_alpha.list └── small_hex.list ├── scripts ├── copyRecursive.js ├── create-esm-links.js ├── dirnameCompat.js ├── logger.js ├── postbuild.js ├── prebuild.js ├── precompileTemplates.js ├── regenerateVendor.js ├── regenerateVendor.mjs ├── run-e2e.js ├── train-ai.ts └── watch-assets.js ├── test ├── auxiliary.test.ts ├── availabilityModel.test.ts ├── bulkManager.test.ts ├── bulkScheduling.test.ts ├── bulkwhoisEventBindings.test.ts ├── bulkwhoisFileinputMain.test.ts ├── bulkwhoisManager.test.ts ├── bulkwhoisRenderer.test.ts ├── bulkwhoisStatusHandler.test.ts ├── bulkwhoisWordlistMain.test.ts ├── bwaAnalyser.test.ts ├── bwaAnalyserRenderer.test.ts ├── bwaFileinput.test.ts ├── cacheCommand.test.ts ├── cacheOverride.test.ts ├── cli.test.ts ├── conversions.test.ts ├── convertDomain.test.ts ├── counter.test.ts ├── darkmode.test.ts ├── dirnameCompat.test.ts ├── dnsLookup.test.ts ├── domOnCleanup.test.ts ├── domainMonitor.test.ts ├── e2e │ └── wdio │ │ └── startup.spec.ts ├── electronMainMock.ts ├── electronMock.ts ├── escapeRegex.test.ts ├── estimate.test.ts ├── exportError.test.ts ├── exportHelpers.test.ts ├── exportOptions.test.ts ├── exportRenderer.test.ts ├── fetchCompat.test.ts ├── fileWatcher.test.ts ├── fileWatcherManager.test.ts ├── fsIpc.test.ts ├── fsIpcFileUrl.test.ts ├── generateFilename.test.ts ├── getDomainParameters.test.ts ├── getDomainSetup.test.ts ├── history.test.ts ├── historyMain.test.ts ├── historyRenderer.test.ts ├── i18n.test.ts ├── isDomainAvailable.test.ts ├── isDomainAvailableAi.test.ts ├── jest.setup.cjs ├── jqueryAvailability.test.ts ├── lineHelper.test.ts ├── logger.test.ts ├── mainUtils.test.ts ├── mocks │ └── electron.ts ├── modelDownloader.test.ts ├── navigation.test.ts ├── nodeIntegrationForced.test.ts ├── openUrl.test.ts ├── openaiSuggest.test.ts ├── optionsHelpers.test.ts ├── optionsIpc.test.ts ├── parseRawData.test.ts ├── pathIpc.test.ts ├── patterns.test.ts ├── preload.test.ts ├── processDomain.test.ts ├── processHelpers.test.ts ├── proxy.test.ts ├── random.test.ts ├── rdapLookup.test.ts ├── regenerateVendor.test.ts ├── registerPartials.test.ts ├── rendererImports.test.ts ├── rendererOptions.test.ts ├── requestCache.test.ts ├── resetObject.test.ts ├── resetUiCounters.test.ts ├── resultHandler.test.ts ├── server.test.ts ├── serverRoutes.test.ts ├── settings.test.ts ├── settingsPartial.test.ts ├── settingsPath.test.ts ├── settingsReadError.test.ts ├── settingsReload.test.ts ├── settingsValidation.test.ts ├── singlewhoisLookup.test.ts ├── statsWorker.test.ts ├── stringformat.test.ts ├── templateLoader.test.ts ├── toMain.test.ts ├── toRenderer.test.ts ├── tools.test.ts ├── trainAi.test.ts ├── watch-assets.test.ts ├── whoiswrapper.test.ts ├── wordlist.test.ts └── wordlistTools.test.ts ├── tsconfig.base.json ├── tsconfig.json ├── types ├── compiled-templates.d.ts ├── custom.d.ts ├── fontawesome-free.d.ts ├── fontawesome.d.ts ├── fs-options.d.ts ├── handlebars-runtime.d.ts ├── jest.d.ts ├── node │ └── index.d.ts ├── renderer-electron-api.d.ts ├── renderer-electron-api.js └── vendor.d.ts └── wdio.conf.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: supermarsx 2 | -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/rolling-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/.github/workflows/rolling-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/.prettierrc -------------------------------------------------------------------------------- /agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/agents.md -------------------------------------------------------------------------------- /app/css/cousine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/css/cousine.css -------------------------------------------------------------------------------- /app/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/css/style.css -------------------------------------------------------------------------------- /app/css/tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/css/tables.css -------------------------------------------------------------------------------- /app/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/data/ai-test-model/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/data/ai-test-model/model.json -------------------------------------------------------------------------------- /app/data/history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/data/history.json -------------------------------------------------------------------------------- /app/data/profiles/default/history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/data/profiles/default/history.json -------------------------------------------------------------------------------- /app/fonts/cousine-bold-italic/cyrillic-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold-italic/cyrillic-ext.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold-italic/cyrillic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold-italic/cyrillic.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold-italic/greek-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold-italic/greek-ext.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold-italic/greek.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold-italic/greek.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold-italic/hebrew.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold-italic/hebrew.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold-italic/latin-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold-italic/latin-ext.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold-italic/latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold-italic/latin.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold-italic/vietnamese.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold-italic/vietnamese.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold/cyrillic-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold/cyrillic-ext.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold/cyrillic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold/cyrillic.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold/greek-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold/greek-ext.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold/greek.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold/greek.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold/hebrew.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold/hebrew.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold/latin-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold/latin-ext.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold/latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold/latin.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-bold/vietnamese.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-bold/vietnamese.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-italic/cyrillic-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-italic/cyrillic-ext.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-italic/cyrillic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-italic/cyrillic.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-italic/greek-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-italic/greek-ext.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-italic/greek.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-italic/greek.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-italic/hebrew.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-italic/hebrew.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-italic/latin-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-italic/latin-ext.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-italic/latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-italic/latin.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-italic/vietnamese.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-italic/vietnamese.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-regular/cyrillic-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-regular/cyrillic-ext.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-regular/cyrillic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-regular/cyrillic.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-regular/greek-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-regular/greek-ext.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-regular/greek.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-regular/greek.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-regular/hebrew.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-regular/hebrew.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-regular/latin-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-regular/latin-ext.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-regular/latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-regular/latin.woff2 -------------------------------------------------------------------------------- /app/fonts/cousine-regular/vietnamese.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/fonts/cousine-regular/vietnamese.woff2 -------------------------------------------------------------------------------- /app/html/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/startup.js -------------------------------------------------------------------------------- /app/html/templates/bulkwhoisEntry.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bulkwhoisEntry.hbs -------------------------------------------------------------------------------- /app/html/templates/bulkwhoisExport.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bulkwhoisExport.hbs -------------------------------------------------------------------------------- /app/html/templates/bulkwhoisExportLoading.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bulkwhoisExportLoading.hbs -------------------------------------------------------------------------------- /app/html/templates/bulkwhoisFileInputConfirm.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bulkwhoisFileInputConfirm.hbs -------------------------------------------------------------------------------- /app/html/templates/bulkwhoisFileInputLoading.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bulkwhoisFileInputLoading.hbs -------------------------------------------------------------------------------- /app/html/templates/bulkwhoisProcessing.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bulkwhoisProcessing.hbs -------------------------------------------------------------------------------- /app/html/templates/bulkwhoisWordlistConfirm.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bulkwhoisWordlistConfirm.hbs -------------------------------------------------------------------------------- /app/html/templates/bulkwhoisWordlistInput.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bulkwhoisWordlistInput.hbs -------------------------------------------------------------------------------- /app/html/templates/bulkwhoisWordlistLoading.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bulkwhoisWordlistLoading.hbs -------------------------------------------------------------------------------- /app/html/templates/bwaAnalyser.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bwaAnalyser.hbs -------------------------------------------------------------------------------- /app/html/templates/bwaEntry.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bwaEntry.hbs -------------------------------------------------------------------------------- /app/html/templates/bwaFileInputLoading.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bwaFileInputLoading.hbs -------------------------------------------------------------------------------- /app/html/templates/bwaFileinputconfirm.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bwaFileinputconfirm.hbs -------------------------------------------------------------------------------- /app/html/templates/bwaProcess.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/bwaProcess.hbs -------------------------------------------------------------------------------- /app/html/templates/he.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/he.hbs -------------------------------------------------------------------------------- /app/html/templates/historyEntry.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/historyEntry.hbs -------------------------------------------------------------------------------- /app/html/templates/mainPanel.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/mainPanel.hbs -------------------------------------------------------------------------------- /app/html/templates/modals.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/modals.hbs -------------------------------------------------------------------------------- /app/html/templates/monitorEntry.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/monitorEntry.hbs -------------------------------------------------------------------------------- /app/html/templates/navBottom.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/navBottom.hbs -------------------------------------------------------------------------------- /app/html/templates/navTop.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/navTop.hbs -------------------------------------------------------------------------------- /app/html/templates/settingsEntry.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/settingsEntry.hbs -------------------------------------------------------------------------------- /app/html/templates/singlewhois.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/singlewhois.hbs -------------------------------------------------------------------------------- /app/html/templates/toEntry.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/html/templates/toEntry.hbs -------------------------------------------------------------------------------- /app/icons/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/icons/app.icns -------------------------------------------------------------------------------- /app/icons/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/icons/app.ico -------------------------------------------------------------------------------- /app/icons/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/icons/app.png -------------------------------------------------------------------------------- /app/icons/icons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/icons/icons.ai -------------------------------------------------------------------------------- /app/icons/icons_sec.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/icons/icons_sec.ai -------------------------------------------------------------------------------- /app/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/locales/en.json -------------------------------------------------------------------------------- /app/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/locales/es.json -------------------------------------------------------------------------------- /app/ts/ai/availabilityModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/ai/availabilityModel.ts -------------------------------------------------------------------------------- /app/ts/ai/modelDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/ai/modelDownloader.ts -------------------------------------------------------------------------------- /app/ts/ai/openaiSuggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/ai/openaiSuggest.ts -------------------------------------------------------------------------------- /app/ts/ai/trainModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/ai/trainModel.ts -------------------------------------------------------------------------------- /app/ts/appsettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/appsettings.ts -------------------------------------------------------------------------------- /app/ts/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/cli.ts -------------------------------------------------------------------------------- /app/ts/cli/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/cli/export.ts -------------------------------------------------------------------------------- /app/ts/cli/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/cli/progress.ts -------------------------------------------------------------------------------- /app/ts/common/availability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/availability.ts -------------------------------------------------------------------------------- /app/ts/common/conversions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/conversions.ts -------------------------------------------------------------------------------- /app/ts/common/dnsLookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/dnsLookup.ts -------------------------------------------------------------------------------- /app/ts/common/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/errors.ts -------------------------------------------------------------------------------- /app/ts/common/fileStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/fileStats.ts -------------------------------------------------------------------------------- /app/ts/common/fontawesome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/fontawesome.ts -------------------------------------------------------------------------------- /app/ts/common/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/history.ts -------------------------------------------------------------------------------- /app/ts/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/index.ts -------------------------------------------------------------------------------- /app/ts/common/ipcChannels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/ipcChannels.ts -------------------------------------------------------------------------------- /app/ts/common/ipcContracts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/ipcContracts.test.ts -------------------------------------------------------------------------------- /app/ts/common/ipcContracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/ipcContracts.ts -------------------------------------------------------------------------------- /app/ts/common/lineHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/lineHelper.ts -------------------------------------------------------------------------------- /app/ts/common/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/logger.ts -------------------------------------------------------------------------------- /app/ts/common/lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/lookup.ts -------------------------------------------------------------------------------- /app/ts/common/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/parser.ts -------------------------------------------------------------------------------- /app/ts/common/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/proxy.ts -------------------------------------------------------------------------------- /app/ts/common/rdapLookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/rdapLookup.ts -------------------------------------------------------------------------------- /app/ts/common/requestCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/requestCache.ts -------------------------------------------------------------------------------- /app/ts/common/requestCacheSingleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/requestCacheSingleton.ts -------------------------------------------------------------------------------- /app/ts/common/resetObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/resetObject.ts -------------------------------------------------------------------------------- /app/ts/common/settings-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/settings-base.ts -------------------------------------------------------------------------------- /app/ts/common/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/settings.ts -------------------------------------------------------------------------------- /app/ts/common/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/status.ts -------------------------------------------------------------------------------- /app/ts/common/stringformat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/stringformat.ts -------------------------------------------------------------------------------- /app/ts/common/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/tools.ts -------------------------------------------------------------------------------- /app/ts/common/whoiswrapper/patternData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/whoiswrapper/patternData.ts -------------------------------------------------------------------------------- /app/ts/common/whoiswrapper/patterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/whoiswrapper/patterns.ts -------------------------------------------------------------------------------- /app/ts/common/wordlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/common/wordlist.ts -------------------------------------------------------------------------------- /app/ts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main.ts -------------------------------------------------------------------------------- /app/ts/main/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/ai.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/auxiliary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/auxiliary.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/export-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/export-helpers.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/export.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/fileinput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/fileinput.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/helpers.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/manager.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/process.defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/process.defaults.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/process.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/queue.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/resultHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/resultHandler.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/scheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/scheduler.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/types.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/wordlistinput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/wordlistinput.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/workerPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/workerPool.ts -------------------------------------------------------------------------------- /app/ts/main/bulkwhois/workers/domainWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bulkwhois/workers/domainWorker.ts -------------------------------------------------------------------------------- /app/ts/main/bwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bwa.ts -------------------------------------------------------------------------------- /app/ts/main/bwa/analyser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bwa/analyser.ts -------------------------------------------------------------------------------- /app/ts/main/bwa/fileinput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/bwa/fileinput.ts -------------------------------------------------------------------------------- /app/ts/main/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/cache.ts -------------------------------------------------------------------------------- /app/ts/main/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/db.ts -------------------------------------------------------------------------------- /app/ts/main/fsIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/fsIpc.ts -------------------------------------------------------------------------------- /app/ts/main/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/history.ts -------------------------------------------------------------------------------- /app/ts/main/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/i18n.ts -------------------------------------------------------------------------------- /app/ts/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/index.ts -------------------------------------------------------------------------------- /app/ts/main/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/ipc.ts -------------------------------------------------------------------------------- /app/ts/main/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/monitor.ts -------------------------------------------------------------------------------- /app/ts/main/pathIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/pathIpc.ts -------------------------------------------------------------------------------- /app/ts/main/profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/profiles.ts -------------------------------------------------------------------------------- /app/ts/main/settings-main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/settings-main.ts -------------------------------------------------------------------------------- /app/ts/main/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/settings.ts -------------------------------------------------------------------------------- /app/ts/main/singlewhois.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/singlewhois.ts -------------------------------------------------------------------------------- /app/ts/main/to.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/to.ts -------------------------------------------------------------------------------- /app/ts/main/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/utils.ts -------------------------------------------------------------------------------- /app/ts/main/workers/statsWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/main/workers/statsWorker.ts -------------------------------------------------------------------------------- /app/ts/mainPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/mainPanel.ts -------------------------------------------------------------------------------- /app/ts/preload.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/preload.cts -------------------------------------------------------------------------------- /app/ts/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer.ts -------------------------------------------------------------------------------- /app/ts/renderer/bulkwhois.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bulkwhois.ts -------------------------------------------------------------------------------- /app/ts/renderer/bulkwhois/auxiliary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bulkwhois/auxiliary.ts -------------------------------------------------------------------------------- /app/ts/renderer/bulkwhois/estimate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bulkwhois/estimate.ts -------------------------------------------------------------------------------- /app/ts/renderer/bulkwhois/event-bindings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bulkwhois/event-bindings.ts -------------------------------------------------------------------------------- /app/ts/renderer/bulkwhois/export.defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bulkwhois/export.defaults.ts -------------------------------------------------------------------------------- /app/ts/renderer/bulkwhois/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bulkwhois/export.ts -------------------------------------------------------------------------------- /app/ts/renderer/bulkwhois/fileinput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bulkwhois/fileinput.ts -------------------------------------------------------------------------------- /app/ts/renderer/bulkwhois/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bulkwhois/process.ts -------------------------------------------------------------------------------- /app/ts/renderer/bulkwhois/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bulkwhois/state.ts -------------------------------------------------------------------------------- /app/ts/renderer/bulkwhois/status-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bulkwhois/status-handler.ts -------------------------------------------------------------------------------- /app/ts/renderer/bulkwhois/wordlistinput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bulkwhois/wordlistinput.ts -------------------------------------------------------------------------------- /app/ts/renderer/bwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bwa.ts -------------------------------------------------------------------------------- /app/ts/renderer/bwa/analyser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bwa/analyser.ts -------------------------------------------------------------------------------- /app/ts/renderer/bwa/fileinput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bwa/fileinput.ts -------------------------------------------------------------------------------- /app/ts/renderer/bwa/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/bwa/monitor.ts -------------------------------------------------------------------------------- /app/ts/renderer/darkmode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/darkmode.ts -------------------------------------------------------------------------------- /app/ts/renderer/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/history.ts -------------------------------------------------------------------------------- /app/ts/renderer/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/i18n.ts -------------------------------------------------------------------------------- /app/ts/renderer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/index.ts -------------------------------------------------------------------------------- /app/ts/renderer/jqueryGlobal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/jqueryGlobal.ts -------------------------------------------------------------------------------- /app/ts/renderer/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/logger.ts -------------------------------------------------------------------------------- /app/ts/renderer/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/navigation.ts -------------------------------------------------------------------------------- /app/ts/renderer/registerPartials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/registerPartials.ts -------------------------------------------------------------------------------- /app/ts/renderer/settings-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/settings-renderer.ts -------------------------------------------------------------------------------- /app/ts/renderer/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/settings.ts -------------------------------------------------------------------------------- /app/ts/renderer/singlewhois.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/singlewhois.ts -------------------------------------------------------------------------------- /app/ts/renderer/templateLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/templateLoader.ts -------------------------------------------------------------------------------- /app/ts/renderer/to.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/renderer/to.ts -------------------------------------------------------------------------------- /app/ts/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/server/index.ts -------------------------------------------------------------------------------- /app/ts/utils/dirnameCompat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/utils/dirnameCompat.ts -------------------------------------------------------------------------------- /app/ts/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/utils/dom.ts -------------------------------------------------------------------------------- /app/ts/utils/fetchCompat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/utils/fetchCompat.ts -------------------------------------------------------------------------------- /app/ts/utils/fileWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/utils/fileWatcher.ts -------------------------------------------------------------------------------- /app/ts/utils/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/utils/random.ts -------------------------------------------------------------------------------- /app/ts/utils/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/ts/utils/regex.ts -------------------------------------------------------------------------------- /app/vendor/debug.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/vendor/debug.d.ts -------------------------------------------------------------------------------- /app/vendor/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/vendor/debug.js -------------------------------------------------------------------------------- /app/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/app/vendor/jquery.js -------------------------------------------------------------------------------- /babel.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/babel.config.mjs -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/changelog.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/contributing.md -------------------------------------------------------------------------------- /coverage-final.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docs/ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/docs/ai.md -------------------------------------------------------------------------------- /docs/ai_training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/docs/ai_training.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/eslint.config.js -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/jest.config.cjs -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/postcss.config.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/readme.md -------------------------------------------------------------------------------- /readmenot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/readmenot.md -------------------------------------------------------------------------------- /sample_lists/3letter_alpha.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/sample_lists/3letter_alpha.list -------------------------------------------------------------------------------- /sample_lists/longhash_hex.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/sample_lists/longhash_hex.list -------------------------------------------------------------------------------- /sample_lists/majorweb_alpha.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/sample_lists/majorweb_alpha.list -------------------------------------------------------------------------------- /sample_lists/md5hash_hex.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/sample_lists/md5hash_hex.list -------------------------------------------------------------------------------- /sample_lists/random_alpha.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/sample_lists/random_alpha.list -------------------------------------------------------------------------------- /sample_lists/small_hex.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/sample_lists/small_hex.list -------------------------------------------------------------------------------- /scripts/copyRecursive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/scripts/copyRecursive.js -------------------------------------------------------------------------------- /scripts/create-esm-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/scripts/create-esm-links.js -------------------------------------------------------------------------------- /scripts/dirnameCompat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/scripts/dirnameCompat.js -------------------------------------------------------------------------------- /scripts/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/scripts/logger.js -------------------------------------------------------------------------------- /scripts/postbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/scripts/postbuild.js -------------------------------------------------------------------------------- /scripts/prebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/scripts/prebuild.js -------------------------------------------------------------------------------- /scripts/precompileTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/scripts/precompileTemplates.js -------------------------------------------------------------------------------- /scripts/regenerateVendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/scripts/regenerateVendor.js -------------------------------------------------------------------------------- /scripts/regenerateVendor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/scripts/regenerateVendor.mjs -------------------------------------------------------------------------------- /scripts/run-e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/scripts/run-e2e.js -------------------------------------------------------------------------------- /scripts/train-ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/scripts/train-ai.ts -------------------------------------------------------------------------------- /scripts/watch-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/scripts/watch-assets.js -------------------------------------------------------------------------------- /test/auxiliary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/auxiliary.test.ts -------------------------------------------------------------------------------- /test/availabilityModel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/availabilityModel.test.ts -------------------------------------------------------------------------------- /test/bulkManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/bulkManager.test.ts -------------------------------------------------------------------------------- /test/bulkScheduling.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/bulkScheduling.test.ts -------------------------------------------------------------------------------- /test/bulkwhoisEventBindings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/bulkwhoisEventBindings.test.ts -------------------------------------------------------------------------------- /test/bulkwhoisFileinputMain.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/bulkwhoisFileinputMain.test.ts -------------------------------------------------------------------------------- /test/bulkwhoisManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/bulkwhoisManager.test.ts -------------------------------------------------------------------------------- /test/bulkwhoisRenderer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/bulkwhoisRenderer.test.ts -------------------------------------------------------------------------------- /test/bulkwhoisStatusHandler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/bulkwhoisStatusHandler.test.ts -------------------------------------------------------------------------------- /test/bulkwhoisWordlistMain.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/bulkwhoisWordlistMain.test.ts -------------------------------------------------------------------------------- /test/bwaAnalyser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/bwaAnalyser.test.ts -------------------------------------------------------------------------------- /test/bwaAnalyserRenderer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/bwaAnalyserRenderer.test.ts -------------------------------------------------------------------------------- /test/bwaFileinput.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/bwaFileinput.test.ts -------------------------------------------------------------------------------- /test/cacheCommand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/cacheCommand.test.ts -------------------------------------------------------------------------------- /test/cacheOverride.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/cacheOverride.test.ts -------------------------------------------------------------------------------- /test/cli.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/cli.test.ts -------------------------------------------------------------------------------- /test/conversions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/conversions.test.ts -------------------------------------------------------------------------------- /test/convertDomain.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/convertDomain.test.ts -------------------------------------------------------------------------------- /test/counter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/counter.test.ts -------------------------------------------------------------------------------- /test/darkmode.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/darkmode.test.ts -------------------------------------------------------------------------------- /test/dirnameCompat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/dirnameCompat.test.ts -------------------------------------------------------------------------------- /test/dnsLookup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/dnsLookup.test.ts -------------------------------------------------------------------------------- /test/domOnCleanup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/domOnCleanup.test.ts -------------------------------------------------------------------------------- /test/domainMonitor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/domainMonitor.test.ts -------------------------------------------------------------------------------- /test/e2e/wdio/startup.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/e2e/wdio/startup.spec.ts -------------------------------------------------------------------------------- /test/electronMainMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/electronMainMock.ts -------------------------------------------------------------------------------- /test/electronMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/electronMock.ts -------------------------------------------------------------------------------- /test/escapeRegex.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/escapeRegex.test.ts -------------------------------------------------------------------------------- /test/estimate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/estimate.test.ts -------------------------------------------------------------------------------- /test/exportError.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/exportError.test.ts -------------------------------------------------------------------------------- /test/exportHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/exportHelpers.test.ts -------------------------------------------------------------------------------- /test/exportOptions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/exportOptions.test.ts -------------------------------------------------------------------------------- /test/exportRenderer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/exportRenderer.test.ts -------------------------------------------------------------------------------- /test/fetchCompat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/fetchCompat.test.ts -------------------------------------------------------------------------------- /test/fileWatcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/fileWatcher.test.ts -------------------------------------------------------------------------------- /test/fileWatcherManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/fileWatcherManager.test.ts -------------------------------------------------------------------------------- /test/fsIpc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/fsIpc.test.ts -------------------------------------------------------------------------------- /test/fsIpcFileUrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/fsIpcFileUrl.test.ts -------------------------------------------------------------------------------- /test/generateFilename.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/generateFilename.test.ts -------------------------------------------------------------------------------- /test/getDomainParameters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/getDomainParameters.test.ts -------------------------------------------------------------------------------- /test/getDomainSetup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/getDomainSetup.test.ts -------------------------------------------------------------------------------- /test/history.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/history.test.ts -------------------------------------------------------------------------------- /test/historyMain.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/historyMain.test.ts -------------------------------------------------------------------------------- /test/historyRenderer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/historyRenderer.test.ts -------------------------------------------------------------------------------- /test/i18n.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/i18n.test.ts -------------------------------------------------------------------------------- /test/isDomainAvailable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/isDomainAvailable.test.ts -------------------------------------------------------------------------------- /test/isDomainAvailableAi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/isDomainAvailableAi.test.ts -------------------------------------------------------------------------------- /test/jest.setup.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/jest.setup.cjs -------------------------------------------------------------------------------- /test/jqueryAvailability.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/jqueryAvailability.test.ts -------------------------------------------------------------------------------- /test/lineHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/lineHelper.test.ts -------------------------------------------------------------------------------- /test/logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/logger.test.ts -------------------------------------------------------------------------------- /test/mainUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/mainUtils.test.ts -------------------------------------------------------------------------------- /test/mocks/electron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/mocks/electron.ts -------------------------------------------------------------------------------- /test/modelDownloader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/modelDownloader.test.ts -------------------------------------------------------------------------------- /test/navigation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/navigation.test.ts -------------------------------------------------------------------------------- /test/nodeIntegrationForced.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/nodeIntegrationForced.test.ts -------------------------------------------------------------------------------- /test/openUrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/openUrl.test.ts -------------------------------------------------------------------------------- /test/openaiSuggest.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/openaiSuggest.test.ts -------------------------------------------------------------------------------- /test/optionsHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/optionsHelpers.test.ts -------------------------------------------------------------------------------- /test/optionsIpc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/optionsIpc.test.ts -------------------------------------------------------------------------------- /test/parseRawData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/parseRawData.test.ts -------------------------------------------------------------------------------- /test/pathIpc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/pathIpc.test.ts -------------------------------------------------------------------------------- /test/patterns.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/patterns.test.ts -------------------------------------------------------------------------------- /test/preload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/preload.test.ts -------------------------------------------------------------------------------- /test/processDomain.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/processDomain.test.ts -------------------------------------------------------------------------------- /test/processHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/processHelpers.test.ts -------------------------------------------------------------------------------- /test/proxy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/proxy.test.ts -------------------------------------------------------------------------------- /test/random.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/random.test.ts -------------------------------------------------------------------------------- /test/rdapLookup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/rdapLookup.test.ts -------------------------------------------------------------------------------- /test/regenerateVendor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/regenerateVendor.test.ts -------------------------------------------------------------------------------- /test/registerPartials.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/registerPartials.test.ts -------------------------------------------------------------------------------- /test/rendererImports.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/rendererImports.test.ts -------------------------------------------------------------------------------- /test/rendererOptions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/rendererOptions.test.ts -------------------------------------------------------------------------------- /test/requestCache.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/requestCache.test.ts -------------------------------------------------------------------------------- /test/resetObject.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/resetObject.test.ts -------------------------------------------------------------------------------- /test/resetUiCounters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/resetUiCounters.test.ts -------------------------------------------------------------------------------- /test/resultHandler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/resultHandler.test.ts -------------------------------------------------------------------------------- /test/server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/server.test.ts -------------------------------------------------------------------------------- /test/serverRoutes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/serverRoutes.test.ts -------------------------------------------------------------------------------- /test/settings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/settings.test.ts -------------------------------------------------------------------------------- /test/settingsPartial.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/settingsPartial.test.ts -------------------------------------------------------------------------------- /test/settingsPath.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/settingsPath.test.ts -------------------------------------------------------------------------------- /test/settingsReadError.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/settingsReadError.test.ts -------------------------------------------------------------------------------- /test/settingsReload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/settingsReload.test.ts -------------------------------------------------------------------------------- /test/settingsValidation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/settingsValidation.test.ts -------------------------------------------------------------------------------- /test/singlewhoisLookup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/singlewhoisLookup.test.ts -------------------------------------------------------------------------------- /test/statsWorker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/statsWorker.test.ts -------------------------------------------------------------------------------- /test/stringformat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/stringformat.test.ts -------------------------------------------------------------------------------- /test/templateLoader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/templateLoader.test.ts -------------------------------------------------------------------------------- /test/toMain.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/toMain.test.ts -------------------------------------------------------------------------------- /test/toRenderer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/toRenderer.test.ts -------------------------------------------------------------------------------- /test/tools.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/tools.test.ts -------------------------------------------------------------------------------- /test/trainAi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/trainAi.test.ts -------------------------------------------------------------------------------- /test/watch-assets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/watch-assets.test.ts -------------------------------------------------------------------------------- /test/whoiswrapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/whoiswrapper.test.ts -------------------------------------------------------------------------------- /test/wordlist.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/wordlist.test.ts -------------------------------------------------------------------------------- /test/wordlistTools.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/test/wordlistTools.test.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/compiled-templates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/types/compiled-templates.d.ts -------------------------------------------------------------------------------- /types/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/types/custom.d.ts -------------------------------------------------------------------------------- /types/fontawesome-free.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/types/fontawesome-free.d.ts -------------------------------------------------------------------------------- /types/fontawesome.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/types/fontawesome.d.ts -------------------------------------------------------------------------------- /types/fs-options.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/types/fs-options.d.ts -------------------------------------------------------------------------------- /types/handlebars-runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/types/handlebars-runtime.d.ts -------------------------------------------------------------------------------- /types/jest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/types/jest.d.ts -------------------------------------------------------------------------------- /types/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/types/node/index.d.ts -------------------------------------------------------------------------------- /types/renderer-electron-api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/types/renderer-electron-api.d.ts -------------------------------------------------------------------------------- /types/renderer-electron-api.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /types/vendor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/types/vendor.d.ts -------------------------------------------------------------------------------- /wdio.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarsx/whoisdigger/HEAD/wdio.conf.js --------------------------------------------------------------------------------