voidaccess 1.5.0__tar.gz → 1.6.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {voidaccess-1.5.0 → voidaccess-1.6.2}/PKG-INFO +46 -1
- voidaccess-1.5.0/voidaccess.egg-info/PKG-INFO → voidaccess-1.6.2/README.md +492 -493
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/routes/settings.py +57 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/config.py +21 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/extractor/llm_extract.py +68 -3
- {voidaccess-1.5.0 → voidaccess-1.6.2}/pyproject.toml +19 -2
- voidaccess-1.6.2/sources/data/__init__.py +10 -0
- voidaccess-1.6.2/sources/data/onion_seeds.json +272 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/paste_scraper.py +23 -30
- voidaccess-1.6.2/sources/proxy_client.py +690 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/rss_scraper.py +165 -20
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/seed_manager.py +106 -11
- voidaccess-1.6.2/tests/test_cli_proxy_config.py +892 -0
- voidaccess-1.6.2/tests/test_paste_scraper.py +569 -0
- voidaccess-1.6.2/tests/test_proxy_client.py +1184 -0
- voidaccess-1.6.2/tests/test_rss_scraper.py +675 -0
- voidaccess-1.5.0/README.md → voidaccess-1.6.2/voidaccess.egg-info/PKG-INFO +542 -451
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess.egg-info/SOURCES.txt +5 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/__init__.py +1 -1
- voidaccess-1.6.2/voidaccess_cli/commands/configure.py +444 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/commands/investigate.py +96 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/config.py +75 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/display.py +96 -3
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/main.py +92 -5
- voidaccess-1.5.0/tests/test_paste_scraper.py +0 -245
- voidaccess-1.5.0/tests/test_rss_scraper.py +0 -359
- voidaccess-1.5.0/voidaccess_cli/commands/configure.py +0 -182
- {voidaccess-1.5.0 → voidaccess-1.6.2}/LICENSE +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/analysis/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/analysis/opsec.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/analysis/patterns.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/analysis/temporal.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/auth.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/main.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/routes/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/routes/actors.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/routes/admin.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/routes/auth.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/routes/entities.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/routes/export.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/routes/investigations.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/routes/monitors.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/api/routes/search.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/auth/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/auth/token_blacklist.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/crawler/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/crawler/dedup.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/crawler/frontier.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/crawler/spider.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/crawler/utils.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/env.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0001_initial_schema.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0002_add_investigation_status_column.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0002_add_missing_tables.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0003_add_canonical_value_and_entity_links.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0004_add_page_posted_at.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0005_add_extraction_method.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0006_add_monitor_alerts.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0007_add_actor_style_profiles.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0008_add_users_table.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0009_add_investigation_id_to_relationships.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0010_add_composite_index_entity_relationships.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0011_add_page_extraction_cache.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0013_add_graph_status.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0015_add_progress_fields.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0016_backfill_graph_status.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0017_add_user_api_keys.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0018_add_user_id_to_investigations.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0019_add_content_safety_log.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0020_add_entity_source_tracking.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0021_add_search_engine_stats.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0022_add_actor_profiles.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/migrations/versions/0023_add_investigation_metadata.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/models.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/queries.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/search_engine_stats.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/db/session.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/export/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/export/ioc_package.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/export/misp.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/export/sigma.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/export/snort_export.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/export/stix.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/export/yara_export.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/extractor/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/extractor/ner.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/extractor/normalizer.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/extractor/pipeline.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/extractor/regex_patterns.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/fingerprint/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/fingerprint/profiler.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/fingerprint/stylometry.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/graph/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/graph/builder.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/graph/export.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/graph/model.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/graph/queries.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/graph/visualize.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/i18n/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/i18n/detect.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/i18n/query_expand.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/i18n/translate.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/monitor/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/monitor/_db.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/monitor/alerts.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/monitor/config.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/monitor/diff.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/monitor/jobs.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/monitor/scheduler.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/scraper/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/scraper/scrape.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/scraper/scrape_js.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/search/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/search/circuit_breaker.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/search/query_builder.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/search/search.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/setup.cfg +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/actor_profiles.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/blockchain.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/cache.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/cisa.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/dns_enrichment.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/domain_reputation.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/email_reputation.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/engines.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/enrichment.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/github_scraper.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/gitlab_scraper.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/hash_reputation.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/historical_intel.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/ip_reputation.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/pastes.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/seeds.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/shodan.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/telegram.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/sources/virustotal.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_analysis_opsec.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_analysis_stylometry.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_analysis_temporal.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_api.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_api_monitors.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_blockchain.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_config.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_crawler.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_db.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_dns_enrichment.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_domain_reputation.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_email_reputation.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_filter_e2e_manual.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_filter_parser_manual.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_fingerprint.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_github_scraper.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_gitlab_scraper.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_graph.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_hash_reputation.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_i18n.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_ip_reputation.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_llm.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_llm_utils.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_model_singleton.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_monitor.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_pagination.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_regex_patterns.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_scrape_js.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_settings.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_snort_export.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_sources.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_sources_enrichment_new.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_vector.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/tests/test_yara_export.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/utils/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/utils/async_utils.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/utils/content_safety.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/utils/defang.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/utils/encryption.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/utils/enrichment_cache.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/utils/ioc_freshness.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/utils/user_keys.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/vector/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/vector/embedder.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/vector/model_singleton.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/vector/search.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/vector/store.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess/config.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess/llm.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess/llm_utils.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess.egg-info/dependency_links.txt +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess.egg-info/entry_points.txt +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess.egg-info/requires.txt +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess.egg-info/top_level.txt +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/adapters/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/adapters/sqlite.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/browser.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/commands/__init__.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/commands/actors.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/commands/enrich.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/commands/export.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/commands/show.py +0 -0
- {voidaccess-1.5.0 → voidaccess-1.6.2}/voidaccess_cli/tor_detect.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: voidaccess
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6.2
|
|
4
4
|
Summary: Dark web OSINT CLI — automated threat intelligence from query to report
|
|
5
5
|
Author: VoidAccess
|
|
6
6
|
License-Expression: MIT
|
|
@@ -65,6 +65,17 @@ Commercial threat intelligence platforms often charge prohibitive annual fees fo
|
|
|
65
65
|
|
|
66
66
|
---
|
|
67
67
|
|
|
68
|
+
## What's New in v1.6.0
|
|
69
|
+
|
|
70
|
+
- **Optional clearnet ScrapingAnt integration** — paste sites and RSS feeds can now be routed through ScrapingAnt. Affects clearnet scraping only; Tor, `.onion`, GitHub, and GitLab traffic are never affected.
|
|
71
|
+
- **Three independent products** — Web Scraping API, Residential Proxy transport, and Datacenter Proxy transport are documented separately so the API key is not conflated with the proxy credentials.
|
|
72
|
+
- **One-shot CLI flags** — `voidaccess investigate --use-scraping-api` and `voidaccess investigate --use-proxies` select the REST API or proxy transport for a single run.
|
|
73
|
+
- **`SCRAPINGANT_PROXY_TYPE`** — `residential` (default) or `datacenter`; this controls the proxy pool used by the proxy transports and is not a separate hostname.
|
|
74
|
+
- **New CLI surfaces** — `voidaccess configure proxy` now prompts for the ScrapingAnt keys and transport toggles in a clearly separated flow, plus `--enable-proxy / --disable-proxy` for non-interactive proxy transport toggling and `--show` for masked state inspection.
|
|
75
|
+
- **55 → 74 proxy-config tests** — covers both transports, the `apply_env()` independent-toggle guarantee, the transport-selection logic, and the masked `--show` output.
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
68
79
|
## What's New in v1.5.0
|
|
69
80
|
|
|
70
81
|
- 37 new entity types across crypto, credentials, messaging, and network/forensic indicators.
|
|
@@ -128,6 +139,7 @@ The Docker stack includes PostgreSQL, Tor, FastAPI, and Next.js.
|
|
|
128
139
|
| `voidaccess actor <handle> --note "text"` | Append an analyst note to an actor profile |
|
|
129
140
|
| `voidaccess timeline <handle>` | Shortcut for `voidaccess actor <handle> --timeline` |
|
|
130
141
|
| `voidaccess configure` | Setup wizard |
|
|
142
|
+
| `voidaccess configure proxy` | ScrapingAnt key, username, type, and routing toggles. Flags: `--enable / --disable` (API gate), `--enable-proxy / --disable-proxy` (proxy gate), `--show` (masked state) |
|
|
131
143
|
|
|
132
144
|
Export examples:
|
|
133
145
|
|
|
@@ -299,6 +311,35 @@ All enrichment sources that require a key degrade gracefully when the key is abs
|
|
|
299
311
|
| `GITLAB_TOKEN` | Raises GitLab scraping from 15 to 60 req/min | Free | [gitlab.com/profile/personal_access_tokens](https://gitlab.com/-/profile/personal_access_tokens) |
|
|
300
312
|
| `BLOCKCYPHER_TOKEN` | BTC/ETH wallet balance and transaction graph | Yes | [blockcypher.com](https://www.blockcypher.com) |
|
|
301
313
|
| `ETHERSCAN_API_KEY` | ETH wallet lookups | Yes | [etherscan.io/apis](https://etherscan.io/apis) |
|
|
314
|
+
| `SCRAPINGANT_API_KEY` + `VOIDACCESS_USE_PROXIES=true` | Optional clearnet proxy for paste sites + RSS feeds (see below) | Yes (free tier) | [scrapingant.com](https://scrapingant.com/?ref=mzliyzh) |
|
|
315
|
+
|
|
316
|
+
### Optional: Clearnet Scraping Proxy (ScrapingAnt)
|
|
317
|
+
|
|
318
|
+
When a third-party clearnet site rate-limits or blocks VoidAccess's outbound IP, paste-site and RSS-feed fetches can be routed through ScrapingAnt. This integration is optional and affects only clearnet scraping.
|
|
319
|
+
|
|
320
|
+
| Product | What it is | Credentials | Persistent config | One-shot CLI flag | Notes |
|
|
321
|
+
|---|---|---|---|---|---|
|
|
322
|
+
| Web Scraping API | REST transport for paste sites and RSS feeds | `SCRAPINGANT_API_KEY` | `VOIDACCESS_USE_PROXIES=true` | `--use-scraping-api` | POSTs the target URL to `https://api.scrapingant.com/v2/general` and is billed in request credits. |
|
|
323
|
+
| Residential Proxy transport | HTTP CONNECT proxy for paste sites and RSS feeds | `SCRAPINGANT_PROXY_USERNAME` + `SCRAPINGANT_PROXY_PASSWORD` | `VOIDACCESS_USE_PROXY=true` | `--use-proxies` | Uses `residential.scrapingant.com:8080` for HTTP proxying or `:443` for HTTPS tunneling and is billed by traffic volume. |
|
|
324
|
+
| Datacenter Proxy transport | Same proxy flow as Residential, but a different proxy pool | `SCRAPINGANT_PROXY_USERNAME` + `SCRAPINGANT_PROXY_PASSWORD` | `SCRAPINGANT_PROXY_TYPE=datacenter` plus `VOIDACCESS_USE_PROXY=true` | `--use-proxies` | Configuration exists, but live verification is still open; do not assume access is provisioned on every account. |
|
|
325
|
+
|
|
326
|
+
The proxy transports use `SCRAPINGANT_PROXY_TYPE=residential` or `SCRAPINGANT_PROXY_TYPE=datacenter` to choose the pool. The REST API transport does not use the proxy username/password pair.
|
|
327
|
+
|
|
328
|
+
The integration is strictly scoped:
|
|
329
|
+
|
|
330
|
+
- Tor and `.onion` traffic are completely unaffected in every configuration.
|
|
331
|
+
- GitHub and GitLab scraping are permanently excluded because their requests carry `GITHUB_TOKEN` and `GITLAB_TOKEN`.
|
|
332
|
+
- If both the REST API and proxy transport are enabled, the proxy transport wins for that request and VoidAccess logs the choice once.
|
|
333
|
+
- There is no chained mode. Each request uses exactly one transport, and failures fall back to direct fetches.
|
|
334
|
+
|
|
335
|
+
How to turn it on:
|
|
336
|
+
|
|
337
|
+
- `voidaccess configure proxy` for the persistent config path.
|
|
338
|
+
- `voidaccess investigate "query" --use-scraping-api` for a one-shot REST API run.
|
|
339
|
+
- `voidaccess investigate "query" --use-proxies` for a one-shot proxy run.
|
|
340
|
+
- `setup.sh` and the Docker / web settings path provide the same persistent storage surfaces as the rest of the project.
|
|
341
|
+
|
|
342
|
+
Referral signup: [https://scrapingant.com/?ref=mzliyzh](https://scrapingant.com/?ref=mzliyzh)
|
|
302
343
|
|
|
303
344
|
---
|
|
304
345
|
|
|
@@ -495,3 +536,7 @@ To report a security vulnerability, see [docs/SECURITY.md](docs/SECURITY.md).
|
|
|
495
536
|
## License
|
|
496
537
|
|
|
497
538
|
MIT License. See [LICENSE](LICENSE) for details.
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
|